From: Bram Moolenaar Date: Sun, 15 May 2016 16:00:19 +0000 (+0200) Subject: patch 7.4.1831 X-Git-Tag: v7.4.1831 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e40d75f6ef73095286b66e546c70ff6f045e009d;p=vim patch 7.4.1831 Problem: When timer_stop() is called with a string there is no proper error message. Solution: Require getting a number. (Bjorn Linse) --- diff --git a/src/eval.c b/src/eval.c index 83bac7243..005485dd9 100644 --- a/src/eval.c +++ b/src/eval.c @@ -20733,8 +20733,14 @@ f_timer_start(typval_T *argvars, typval_T *rettv) static void f_timer_stop(typval_T *argvars, typval_T *rettv UNUSED) { - timer_T *timer = find_timer(get_tv_number(&argvars[0])); + timer_T *timer; + if (argvars[0].v_type != VAR_NUMBER) + { + EMSG(_(e_number_exp)); + return; + } + timer = find_timer(get_tv_number(&argvars[0])); if (timer != NULL) stop_timer(timer); } diff --git a/src/version.c b/src/version.c index caf1e46ff..e1297c819 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1831, /**/ 1830, /**/