1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(run-at-time): Allow floating REPEAT values.

This commit is contained in:
Richard M. Stallman 1996-04-04 16:35:55 +00:00
parent 9e32719fbc
commit 4b5406e4cb

View file

@ -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)))