commit | e299bbdf6e7edd633501b7a0e11c349c703c361b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Jan 17 14:12:02 2019 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Jan 17 14:12:02 2019 +0100 |
tree | 1245b81d916a6a7a0eba4883b026aa385df02988 | |
parent | 617d7ef0462e86ec946d8932e4d157e65bbc9aa8 [diff] [blame] |
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 #3812, closes #3799)
diff --git a/src/ui.c b/src/ui.c index ecd5c44..9c08453 100644 --- a/src/ui.c +++ b/src/ui.c
@@ -222,7 +222,7 @@ 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.