Fix minor problems found by static checking.
commita42df7be2c13998dc937e9284b3f3a5a03d5d0c6
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)
treef1c454386c1991a4323cb50273b3a9e420ca3290
parent63e85fea8c8f12bf1287f00eff45ea22b890e6e8
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