diff src/channel.c @ 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 8894d595b786
children 5d2c84be23b5
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
 }