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
afca0e75
Commit
afca0e75
authored
Jun 01, 2014
by
Paul Eggert
Browse files
* frame.c (x_set_frame_parameters): Don't read uninitialized storage.
parent
a3d0b7d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/frame.c
src/frame.c
+1
-1
No files found.
src/ChangeLog
View file @
afca0e75
2014-06-01 Paul Eggert <eggert@cs.ucla.edu>
* frame.c (x_set_frame_parameters): Don't read uninitialized storage.
2014-06-01 Jan Djärv <jan.h.d@swipnet.se>
* xterm.c (xg_scroll_callback): Remove position, for jump set portion
...
...
src/frame.c
View file @
afca0e75
...
...
@@ -2794,7 +2794,7 @@ x_set_frame_parameters (struct frame *f, Lisp_Object alist)
/* If both of these parameters are present, it's more efficient to
set them both at once. So we wait until we've looked at the
entire list before we set them. */
int width, height;
int width
= 0
, height
= 0
;
bool width_change = 0, height_change = 0;
/* Same here. */
...
...
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