]> granicus.if.org Git - vim/commitdiff
patch 8.1.0761: default value for brief_wait is wrong v8.1.0761
authorBram Moolenaar <Bram@vim.org>
Thu, 17 Jan 2019 13:12:02 +0000 (14:12 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 17 Jan 2019 13:12:02 +0000 (14:12 +0100)
Problem:    Default value for brief_wait is wrong.
Solution:   Make the default FALSE. (Ozaki Kiichi, closes #3812, closes #3799)

src/ui.c
src/version.c

index ecd5c4401703aefa5d67065dd3cddde6c123cc3e..9c0845351857924b0982d4e2d6c3ec85223c29ab 100644 (file)
--- 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.
index 40e4bf3002ffee68be38443c7af6026e978a7657..473d74af1abecdf7f16a89e22f94696ff0aba538 100644 (file)
@@ -795,6 +795,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    761,
 /**/
     760,
 /**/