summaryrefslogtreecommitdiff
path: root/lisp/=timer.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-05-29 20:43:41 +0000
committerRichard M. Stallman <rms@gnu.org>1993-05-29 20:43:41 +0000
commitb3770a60dcf4ad3c2f28c5bd503c4f741dce54b9 (patch)
tree5db8aa4f9699653ace7b2035e123f150b9d1a69c /lisp/=timer.el
parenta0153ea53a2e08de7c940eaa8f47c759e6a419ff (diff)
downloademacs-b3770a60dcf4ad3c2f28c5bd503c4f741dce54b9.tar.gz
(cancel-function-timers): Renamed from spurious duplicate
definition of cancel-timer.
Diffstat (limited to 'lisp/=timer.el')
-rw-r--r--lisp/=timer.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/=timer.el b/lisp/=timer.el
index e63f77defa0..1bfc5ec323a 100644
--- a/lisp/=timer.el
+++ b/lisp/=timer.el
@@ -128,9 +128,9 @@ will happen at the specified time."
;; Used to set timer-scratch to "", but nothing uses that var.
(setq timer-process nil timer-alist nil))))
-(defun cancel-timer (function)
+(defun cancel-function-timers (function)
"Cancel all events scheduled by `run-at-time' which would run FUNCTION."
- (interactive "aCancel function: ")
+ (interactive "aCancel timers of function: ")
(let ((alist timer-alist))
(while alist
(if (eq (nth 2 (car alist)) function)