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
3b18571d
Commit
3b18571d
authored
Dec 13, 2008
by
Chong Yidong
Browse files
(Fx_wm_set_size_hint): Check if the frame is an X frame.
parent
8d5b4964
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/xfns.c
src/xfns.c
+2
-1
No files found.
src/xfns.c
View file @
3b18571d
...
...
@@ -3112,7 +3112,8 @@ If FRAME is nil, use the selected frame. */)
frame
=
selected_frame
;
f
=
XFRAME
(
frame
);
BLOCK_INPUT
;
x_wm_set_size_hint
(
f
,
0
,
0
);
if
(
FRAME_X_P
(
f
))
x_wm_set_size_hint
(
f
,
0
,
0
);
UNBLOCK_INPUT
;
return
Qnil
;
}
...
...
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