aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ponce2023-08-08 12:47:13 +0200
committerEli Zaretskii2023-08-08 15:33:45 +0300
commit22ebef12e9099b7bd6ebaf7424f3e11b2ba10a82 (patch)
treee661523dcc4bd61030592cea0a96a18ef2bf1320
parent2b67609c34051ceb0359675342f54e3ac9719840 (diff)
downloademacs-22ebef12e9099b7bd6ebaf7424f3e11b2ba10a82.tar.gz
emacs-22ebef12e9099b7bd6ebaf7424f3e11b2ba10a82.zip
* lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix missing argument.
This resurrects tooltips, see bug#65147.
-rw-r--r--lisp/tooltip.el2
1 files changed, 1 insertions, 1 deletions
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."
200(defun tooltip-start-delayed-tip () 200(defun tooltip-start-delayed-tip ()
201 "Add a one-shot timeout to call function `tooltip-timeout'." 201 "Add a one-shot timeout to call function `tooltip-timeout'."
202 (setq tooltip-timeout-id 202 (setq tooltip-timeout-id
203 (run-with-timer (tooltip-delay) 'tooltip-timeout nil))) 203 (run-with-timer (tooltip-delay) nil 'tooltip-timeout nil)))
204 204
205(defun tooltip-timeout (_object) 205(defun tooltip-timeout (_object)
206 "Function called when timer with id `tooltip-timeout-id' fires." 206 "Function called when timer with id `tooltip-timeout-id' fires."