diff options
author | Kim F. Storm <storm@cua.dk> | 2004-05-16 21:43:57 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-05-16 21:43:57 +0000 |
commit | 8cb7feb8b17c8f5cda151d9754c392d707c6d70b (patch) | |
tree | 2fa4e38e00d1fe31053c1e863d2a122c9a4ae47b /lisp/emacs-lisp | |
parent | 57116789282b741c865a6da97494de219cadd129 (diff) | |
download | emacs-8cb7feb8b17c8f5cda151d9754c392d707c6d70b.tar.gz emacs-8cb7feb8b17c8f5cda151d9754c392d707c6d70b.tar.bz2 emacs-8cb7feb8b17c8f5cda151d9754c392d707c6d70b.zip |
(timer-event-handler): Fix last change.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/timer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/timer.el b/lisp/emacs-lisp/timer.el index 395d1e70484..336a1ff82d0 100644 --- a/lisp/emacs-lisp/timer.el +++ b/lisp/emacs-lisp/timer.el @@ -296,7 +296,7 @@ This function is called, by name, directly by the C code." (apply (aref timer 5) (aref timer 6)) (error nil)) (if retrigger - (aset timer 7 nil))) + (aset timer 0 nil))) (error "Bogus timer event")))) ;; This function is incompatible with the one in levents.el. |