projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b67609
)
* lisp/tooltip.el (tooltip-cancel-delayed-tip): Fix missing argument.
author
David Ponce
<da_vid@orange.fr>
Tue, 8 Aug 2023 10:47:13 +0000
(12:47 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Tue, 8 Aug 2023 12:33:45 +0000
(15:33 +0300)
This resurrects tooltips, see bug#65147.
lisp/tooltip.el
patch
|
blob
|
history
diff --git
a/lisp/tooltip.el
b/lisp/tooltip.el
index 0881a7c7bf9d4ecd3eed47794fee8118ed6a9d6e..6f8a489e60cae416afb237a30b40707cb6fd564e 100644
(file)
--- 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."