Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d6f80ae9
Commit
d6f80ae9
authored
Apr 09, 1996
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(x_set_frame_parameters): Do call Fset_frame_size
if size is specified and there is a pending size change already.
parent
ccddf474
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 @
d6f80ae9
...
...
@@ -851,7 +851,8 @@ x_set_frame_parameters (f, alist)
XSETFRAME
(
frame
,
f
);
if
((
NUMBERP
(
width
)
&&
XINT
(
width
)
!=
FRAME_WIDTH
(
f
))
||
(
NUMBERP
(
height
)
&&
XINT
(
height
)
!=
FRAME_HEIGHT
(
f
)))
||
(
NUMBERP
(
height
)
&&
XINT
(
height
)
!=
FRAME_HEIGHT
(
f
))
||
FRAME_NEW_HEIGHT
(
f
)
||
FRAME_NEW_WIDTH
(
f
))
Fset_frame_size
(
frame
,
width
,
height
);
if
((
!
NILP
(
left
)
||
!
NILP
(
top
))
...
...
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