# HG changeset patch # User Bram Moolenaar # Date 1547730905 -3600 # Node ID 8b508af36a8064a92a973b73d8e03312d1ce8a17 # Parent 181490db95f9c990529b23af369718576061e544 patch 8.1.0761: default value for brief_wait is wrong commit https://github.com/vim/vim/commit/e299bbdf6e7edd633501b7a0e11c349c703c361b Author: Bram Moolenaar 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) diff --git a/src/ui.c b/src/ui.c --- 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. diff --git a/src/version.c b/src/version.c --- 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,