emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 22ebef12e90: * lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix


From: Eli Zaretskii
Subject: master 22ebef12e90: * lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix missing argument.
Date: Tue, 8 Aug 2023 08:34:55 -0400 (EDT)

branch: master
commit 22ebef12e9099b7bd6ebaf7424f3e11b2ba10a82
Author: David Ponce <da_vid@orange.fr>
Commit: Eli Zaretskii <eliz@gnu.org>

    * lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix missing argument.
    
    This resurrects tooltips, see bug#65147.
---
 lisp/tooltip.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]