comparison 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
comparison
equal deleted inserted replaced
8409:43c5db8e1c49 8410:05ec48deb353
1044 update_screen(0); 1044 update_screen(0);
1045 setcursor(); 1045 setcursor();
1046 cursor_on(); 1046 cursor_on();
1047 out_flush(); 1047 out_flush();
1048 #ifdef FEAT_GUI 1048 #ifdef FEAT_GUI
1049 gui_update_cursor(TRUE, FALSE); 1049 if (gui.in_use)
1050 gui_mch_flush(); 1050 {
1051 gui_update_cursor(TRUE, FALSE);
1052 gui_mch_flush();
1053 }
1051 #endif 1054 #endif
1052 } 1055 }
1053 1056
1054 /* 1057 /*
1055 * Return the first buffer from channel "channel"/"part" and remove it. 1058 * Return the first buffer from channel "channel"/"part" and remove it.