diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-16 08:39:35 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-16 08:39:35 -0700 |
commit | 8ffc96f57165b07ae661ac4b71e18431d792d6cd (patch) | |
tree | e4d299a476f5a051a2ad78a09f263a6255d9ab24 /src/xfns.c | |
parent | eef9bc799ad1f9c0df0cc23669496d9fbcc326ca (diff) | |
download | emacs-8ffc96f57165b07ae661ac4b71e18431d792d6cd.tar.gz |
* xfns.c (x_real_positions): Mark locals as initialized.
Diffstat (limited to 'src/xfns.c')
-rw-r--r-- | src/xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c index aa373f3a82f..846ba16d1ba 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -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; |