summaryrefslogtreecommitdiff
path: root/src/ui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-15 19:51:56 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-15 19:51:56 +0200
commitb340baed9f7fc1c19a0742e2214d54982190c15e (patch)
treefdddb599beb4c7b83df200516e63c98703004457 /src/ui.c
parent47a519a933e8bcaf703a5feaac5c01491a658ee3 (diff)
downloadvim-git-b340baed9f7fc1c19a0742e2214d54982190c15e.tar.gz
patch 8.2.0982: insufficient testing for reading/writing filesv8.2.0982
Problem: Insufficient testing for reading/writing files. Solution: Add more tests. (Yegappan Lakshmanan, closes #6257) Add "ui_delay" to test_override() and use it for the CTRL-O test.
Diffstat (limited to 'src/ui.c')
-rw-r--r--src/ui.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ui.c b/src/ui.c
index 19d9e2152..e473f8525 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -523,8 +523,14 @@ ui_char_avail(void)
* cancel the delay if a key is hit.
*/
void
-ui_delay(long msec, int ignoreinput)
+ui_delay(long msec_arg, int ignoreinput)
{
+ long msec = msec_arg;
+
+#ifdef FEAT_EVAL
+ if (ui_delay_for_testing > 0)
+ msec = ui_delay_for_testing;
+#endif
#ifdef FEAT_JOB_CHANNEL
ch_log(NULL, "ui_delay(%ld)", msec);
#endif