-2011-03-07 Paul Eggert <eggert@cs.ucla.edu>
+2011-03-08 Paul Eggert <eggert@cs.ucla.edu>
+
+2011-03-08 Paul Eggert <eggert@cs.ucla.edu>
* xmenu.c (menu_highlight_callback): Now static.
(set_frame_menubar): Remove unused local.
(run_window_configuration_change_hook, enlarge_window): Likewise.
* window.c (display_buffer): Now static.
+ (size_window): Mark variables that gcc -Wuninitialized
+ does not deduce are never used uninitialized.
* window.h (check_all_windows): New decl, to forestall
gcc -Wmissing-prototypes diagnostic.
}
else if (!NILP (*forward))
{
- int fixed_size, each, extra, n;
+ int fixed_size, each IF_LINT (= 0), extra IF_LINT (= 0), n;
int resize_fixed_p, nfixed;
int last_pos, first_pos, nchildren, total;
int *new_sizes = NULL;
struct buffer *obuf = current_buffer;
int center_p = 0;
EMACS_INT charpos, bytepos;
- int iarg;
+ int iarg IF_LINT (= 0);
int this_scroll_margin;
/* If redisplay is suppressed due to an error, try again. */