diff src/ui.c @ 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 55ccc2d353bd
children 41fbbcea0f1b
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.