diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-17 17:06:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-17 17:06:33 +0100 |
commit | eda1da0c9a8db1400649629117e7d248c07735f7 (patch) | |
tree | b5357f17e49a2bc1cd71a44895b6d0621124605a /src/normal.c | |
parent | 077b9dd3541339a23ade0cc6a23e804ee39312c5 (diff) | |
download | vim-git-eda1da0c9a8db1400649629117e7d248c07735f7.tar.gz |
patch 8.1.2313: debugging where a delay comes from is not easyv8.1.2313
Problem: Debugging where a delay comes from is not easy.
Solution: Use different values when calling ui_delay().
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/normal.c b/src/normal.c index 76b1fa064..363f539c7 100644 --- a/src/normal.c +++ b/src/normal.c @@ -1169,8 +1169,8 @@ getcount: cursor_on(); out_flush(); if (msg_scroll || emsg_on_display) - ui_delay(1000L, TRUE); /* wait at least one second */ - ui_delay(3000L, FALSE); /* wait up to three seconds */ + ui_delay(1003L, TRUE); /* wait at least one second */ + ui_delay(3003L, FALSE); /* wait up to three seconds */ State = save_State; msg_scroll = FALSE; |