diff options
Diffstat (limited to 'lisp/timer.el')
-rw-r--r-- | lisp/timer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/timer.el b/lisp/timer.el index ebf52a85790..1761ecc8759 100644 --- a/lisp/timer.el +++ b/lisp/timer.el @@ -286,7 +286,7 @@ This function returns a timer object which you can use in `cancel-timer'." (error "Invalid time format")) (or (null repeat) - (natnump repeat) + (numberp repeat) (error "Invalid repetition interval")) (let ((timer (timer-create))) |