From 22ebef12e9099b7bd6ebaf7424f3e11b2ba10a82 Mon Sep 17 00:00:00 2001 From: David Ponce Date: Tue, 8 Aug 2023 12:47:13 +0200 Subject: [PATCH] * 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." -- 2.39.5