diff options
| author | Kim F. Storm | 2004-05-16 21:43:57 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-05-16 21:43:57 +0000 |
| commit | 8cb7feb8b17c8f5cda151d9754c392d707c6d70b (patch) | |
| tree | 2fa4e38e00d1fe31053c1e863d2a122c9a4ae47b | |
| parent | 57116789282b741c865a6da97494de219cadd129 (diff) | |
| download | emacs-8cb7feb8b17c8f5cda151d9754c392d707c6d70b.tar.gz emacs-8cb7feb8b17c8f5cda151d9754c392d707c6d70b.zip | |
(timer-event-handler): Fix last change.
| -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." | |||
| 296 | (apply (aref timer 5) (aref timer 6)) | 296 | (apply (aref timer 5) (aref timer 6)) |
| 297 | (error nil)) | 297 | (error nil)) |
| 298 | (if retrigger | 298 | (if retrigger |
| 299 | (aset timer 7 nil))) | 299 | (aset timer 0 nil))) |
| 300 | (error "Bogus timer event")))) | 300 | (error "Bogus timer event")))) |
| 301 | 301 | ||
| 302 | ;; This function is incompatible with the one in levents.el. | 302 | ;; This function is incompatible with the one in levents.el. |