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
8ffc96f5
Commit
8ffc96f5
authored
Apr 16, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* xfns.c (x_real_positions): Mark locals as initialized.
parent
eef9bc79
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/xfns.c
src/xfns.c
+1
-1
No files found.
src/ChangeLog
View file @
8ffc96f5
2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
* xfns.c (x_real_positions): Mark locals as initialized.
* xmenu.c (xmenu_show): Don't use uninitialized vars.
* xterm.c: Fix problems found by static analysis with other toolkits.
...
...
src/xfns.c
View file @
8ffc96f5
...
...
@@ -427,7 +427,7 @@ x_top_window_to_frame (struct x_display_info *dpyinfo, int wdesc)
void
x_real_positions (FRAME_PTR f, int *xptr, int *yptr)
{
int
win_x
,
win_y
,
outer_x
,
outer_y
;
int win_x, win_y, outer_x
IF_LINT (= 0), outer_y IF_LINT (= 0)
;
int real_x = 0, real_y = 0;
int had_errors = 0;
Window win = f->output_data.x->parent_desc;
...
...
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