Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
94dff98f
Commit
94dff98f
authored
Aug 11, 2010
by
Jan D
Browse files
* xfns.c (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
parent
3a46642b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
src/ChangeLog
src/ChangeLog
+1
-0
src/xfns.c
src/xfns.c
+1
-1
No files found.
src/ChangeLog
View file @
94dff98f
...
...
@@ -2,6 +2,7 @@
* xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
first.
(Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
* gtkutil.h (xg_check_special_colors): Declare.
...
...
src/xfns.c
View file @
94dff98f
...
...
@@ -5237,7 +5237,7 @@ Value is t if tooltip was open, nil otherwise. */)
/* When using system tooltip, tip_frame is the Emacs frame on which
the tip is shown. */
f
=
XFRAME
(
frame
);
if
(
xg_hide_tooltip
(
f
))
if
(
FRAME_LIVE_P
(
f
)
&&
xg_hide_tooltip
(
f
))
frame
=
Qnil
;
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment