aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/dframe.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/dframe.el')
-rw-r--r--lisp/dframe.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/dframe.el b/lisp/dframe.el
index 66967075e34..3ef30d055b6 100644
--- a/lisp/dframe.el
+++ b/lisp/dframe.el
@@ -758,9 +758,8 @@ who requested the timer. NULL-ON-ERROR is ignored."
758Evaluates all cached timer functions in sequence." 758Evaluates all cached timer functions in sequence."
759 (let ((l dframe-client-functions)) 759 (let ((l dframe-client-functions))
760 (while (and l (sit-for 0)) 760 (while (and l (sit-for 0))
761 (condition-case er 761 (with-demoted-errors "DFRAME TIMER ERROR: %S"
762 (funcall (car l)) 762 (funcall (car l)))
763 (error (message "DFRAME TIMER ERROR: %S" er)))
764 (setq l (cdr l))))) 763 (setq l (cdr l)))))
765 764
766;;; Menu hacking for mouse-3 765;;; Menu hacking for mouse-3