changeset 8410:05ec48deb353 v7.4.1496

commit https://github.com/vim/vim/commit/a96909cfaf21dbbf033e904ccdcda9905799f0fc Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 5 22:19:41 2016 +0100 patch 7.4.1496 Problem: Crash when built with GUI but it's not active. (Dominique Pelle) Solution: Check gui.in_use.
author Christian Brabandt <cb@256bit.org>
date Sat, 05 Mar 2016 22:30:04 +0100
parents 43c5db8e1c49
children fcc4277a29c2
files src/channel.c src/version.c
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/channel.c
+++ b/src/channel.c
@@ -1046,8 +1046,11 @@ invoke_callback(channel_T *channel, char
     cursor_on();
     out_flush();
 #ifdef FEAT_GUI
-    gui_update_cursor(TRUE, FALSE);
-    gui_mch_flush();
+    if (gui.in_use)
+    {
+	gui_update_cursor(TRUE, FALSE);
+	gui_mch_flush();
+    }
 #endif
 }
 
--- a/src/version.c
+++ b/src/version.c
@@ -744,6 +744,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1496,
+/**/
     1495,
 /**/
     1494,