diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim index 58003414ef..a3a53e6b0f 100644 --- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim @@ -1678,6 +1678,14 @@ def Test_term_start() bwipe! enddef +def Test_timer_paused() + let id = timer_start(50, {-> 0}) + timer_pause(id, true) + let info = timer_info(id) + assert_equal(1, info[0]['paused']) + timer_stop(id) +enddef + def Test_win_splitmove() split win_splitmove(1, 2, #{vertical: true, rightbelow: true}) diff --git a/src/time.c b/src/time.c index 89ff08bdf4..cc29d0d398 100644 --- a/src/time.c +++ b/src/time.c @@ -742,7 +742,7 @@ f_timer_info(typval_T *argvars, typval_T *rettv) f_timer_pause(typval_T *argvars, typval_T *rettv UNUSED) { timer_T *timer = NULL; - int paused = (int)tv_get_number(&argvars[1]); + int paused = (int)tv_get_bool(&argvars[1]); if (argvars[0].v_type != VAR_NUMBER) emsg(_(e_number_exp)); diff --git a/src/version.c b/src/version.c index b4d5769519..4d25ecc0c5 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1628, /**/ 1627, /**/