Fix minor problems found by static checking.
commit49faeaaf89c820082ba816d089fab5711c9d2b06
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 29 Nov 2013 05:25:25 +0000 (28 21:25 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 29 Nov 2013 05:25:25 +0000 (28 21:25 -0800)
treed317ea923409fc6948fdc1fd2a7eaaf4d6c08078
parentc8f0efc2e89d9cfc7befa7f20f584f3f0b12f487
Fix minor problems found by static checking.

* buffer.h (struct buffer_text, struct buffer):
* frame.h (struct frame):
* window.h (struct window):
Avoid 'bool foo : 1;', as it's not portable to pre-C99 compilers,
as described in ../lib/stdbool.in.h.  Use 'unsigned foo : 1;' instead.
* menu.c (syms_of_menu): Define x-popup-dialog, removing a
no-longer-valid use of HAVE_MENUS.
* xdisp.c (propagate_buffer_redisplay): Now static.
src/ChangeLog
src/buffer.h
src/frame.h
src/menu.c
src/window.h
src/xdisp.c