changeset 15506:8b508af36a80 v8.1.0761

patch 8.1.0761: default value for brief_wait is wrong commit https://github.com/vim/vim/commit/e299bbdf6e7edd633501b7a0e11c349c703c361b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 14:12:02 2019 +0100 patch 8.1.0761: default value for brief_wait is wrong Problem: Default value for brief_wait is wrong. Solution: Make the default FALSE. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/3812, closes https://github.com/vim/vim/issues/3799)
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 14:15:05 +0100
parents 181490db95f9
children d0016f2cc28f
files src/ui.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ui.c
+++ b/src/ui.c
@@ -222,7 +222,7 @@ ui_wait_for_chars_or_timer(
     long    remaining = wtime;
     int	    tb_change_cnt = typebuf.tb_change_cnt;
 # ifdef FEAT_JOB_CHANNEL
-    int	    brief_wait = TRUE;
+    int	    brief_wait = FALSE;
 # endif
 
     // When waiting very briefly don't trigger timers.
--- a/src/version.c
+++ b/src/version.c
@@ -796,6 +796,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    761,
+/**/
     760,
 /**/
     759,