aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-04-04 16:35:55 +0000
committerRichard M. Stallman1996-04-04 16:35:55 +0000
commit4b5406e4cbcd86ce732bb3277b3e29fd6fe13851 (patch)
tree995d3ab153521c341e4c49ea3bd6c94e5c380604
parent9e32719fbc8cb781b87d6a6603dfe40bd1aa06d7 (diff)
downloademacs-4b5406e4cbcd86ce732bb3277b3e29fd6fe13851.tar.gz
emacs-4b5406e4cbcd86ce732bb3277b3e29fd6fe13851.zip
(run-at-time): Allow floating REPEAT values.
-rw-r--r--lisp/timer.el2
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'."
286 (error "Invalid time format")) 286 (error "Invalid time format"))
287 287
288 (or (null repeat) 288 (or (null repeat)
289 (natnump repeat) 289 (numberp repeat)
290 (error "Invalid repetition interval")) 290 (error "Invalid repetition interval"))
291 291
292 (let ((timer (timer-create))) 292 (let ((timer (timer-create)))