projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52e6352
)
Fix Vx_show_tooltip_timeout in ns build, too
author
Lars Ingebrigtsen
<larsi@gnus.org>
Sat, 30 Apr 2022 16:21:51 +0000
(18:21 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Sat, 30 Apr 2022 16:21:51 +0000
(18:21 +0200)
* src/nsfns.m (Fx_show_tip): Respect Vx_show_tooltip_timeout here,
too.
src/nsfns.m
patch
|
blob
|
history
diff --git
a/src/nsfns.m
b/src/nsfns.m
index cff31f7fe0e2a95a81b7b8441739a381ad456eba..00d4a7d2bd276a2f81536489c295b7ed48b3664b 100644
(file)
--- a/
src/nsfns.m
+++ b/
src/nsfns.m
@@
-2862,9
+2862,8
@@
DEFUN ("x-show-tip", Fx_show_tip, Sx_show_tip, 1, 6, 0,
str = SSDATA (string);
f = decode_window_system_frame (frame);
if (NILP (timeout))
- timeout = make_fixnum (5);
- else
- CHECK_FIXNAT (timeout);
+ timeout = Vx_show_tooltip_timeout;
+ CHECK_FIXNAT (timeout);
if (NILP (dx))
dx = make_fixnum (5);