Patch 9.0.0559
Problem: Timer test may get stuck at hit-enter prompt.
Solution: Feed some more characters.
Files: src/testdir/test_timers.vim
*** ../vim-9.0.0558/src/testdir/test_timers.vim 2022-09-02 15:15:11.063569185
+0100
--- src/testdir/test_timers.vim 2022-09-23 18:19:59.297523091 +0100
***************
*** 379,389 ****
let a = {'foo', 'bar'}
endfunc
func FeedChar(id)
! call feedkeys('x', 't')
endfunc
call timer_start(300, 'FeedChar')
call timer_start(100, 'CauseAnError')
! let x = getchar()
set ut&
call test_override('no_wait_return', 1)
--- 379,391 ----
let a = {'foo', 'bar'}
endfunc
func FeedChar(id)
! call feedkeys(":\<CR>", 't')
endfunc
call timer_start(300, 'FeedChar')
call timer_start(100, 'CauseAnError')
! let x = getchar() " wait for error in timer
! let x = getchar(0) " read any remaining chars
! let x = getchar(0)
set ut&
call test_override('no_wait_return', 1)
*** ../vim-9.0.0558/src/version.c 2022-09-23 16:37:15.372190942 +0100
--- src/version.c 2022-09-23 18:21:16.229390696 +0100
***************
*** 701,702 ****
--- 701,704 ----
{ /* Add new patch number below this line */
+ /**/
+ 559,
/**/
--
hundred-and-one symptoms of being an internet addict:
144. You eagerly await the update of the "Cool Site of the Day."
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220923172300.94E631C0674%40moolenaar.net.