forked from aniani/vim
patch 8.2.0982: insufficient testing for reading/writing files
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.
This commit is contained in:
8
src/ui.c
8
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
|
||||
|
Reference in New Issue
Block a user