]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix missing argument.
authorDavid Ponce <da_vid@orange.fr>
Tue, 8 Aug 2023 10:47:13 +0000 (12:47 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 8 Aug 2023 12:33:45 +0000 (15:33 +0300)
This resurrects tooltips, see bug#65147.

lisp/tooltip.el

index 0881a7c7bf9d4ecd3eed47794fee8118ed6a9d6e..6f8a489e60cae416afb237a30b40707cb6fd564e 100644 (file)
@@ -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."