From: David Ponce Date: Tue, 8 Aug 2023 10:47:13 +0000 (+0200) Subject: * lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix missing argument. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=22ebef12e9099b7bd6ebaf7424f3e11b2ba10a82;p=emacs.git * lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix missing argument. This resurrects tooltips, see bug#65147. --- diff --git a/lisp/tooltip.el b/lisp/tooltip.el index 0881a7c7bf9..6f8a489e60c 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el @@ -200,7 +200,7 @@ This might return nil if the event did not occur over a buffer." (defun tooltip-start-delayed-tip () "Add a one-shot timeout to call function `tooltip-timeout'." (setq tooltip-timeout-id - (run-with-timer (tooltip-delay) 'tooltip-timeout nil))) + (run-with-timer (tooltip-delay) nil 'tooltip-timeout nil))) (defun tooltip-timeout (_object) "Function called when timer with id `tooltip-timeout-id' fires."