diff --git a/src/channel.c b/src/channel.c index da13f962c4..6ede9160df 100644 --- a/src/channel.c +++ b/src/channel.c @@ -1046,8 +1046,11 @@ invoke_callback(channel_T *channel, char_u *callback, typval_T *argv) 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 } diff --git a/src/version.c b/src/version.c index 437e5f6cfd..fa036f6141 100644 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1496, /**/ 1495, /**/