# HG changeset patch # User Paul Eggert # Date 1295249305 28800 # Node ID 61e41fbed768cacd96d91124184adc2645b166cf # Parent 8ed3ecdb4fd4bb40e296c2a4b50e6302afe9e931# Parent 568ea4e08e9089ddfa49b03637508bd9a396dbf8 * xterm.h (struct x_display_info): Remove stray semicolon. diff -r 8ed3ecdb4fd4 -r 61e41fbed768 src/ChangeLog --- a/src/ChangeLog Sun Jan 16 23:17:23 2011 -0800 +++ b/src/ChangeLog Sun Jan 16 23:28:25 2011 -0800 @@ -1,5 +1,9 @@ 2011-01-17 Paul Eggert + * xterm.h (struct x_display_info): Remove stray semicolon. + The extra semicolon didn't conform to the C standard. + Problem reported by Sun cc. + * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics. These changes make compilation easier to follow with Sun cc. (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to diff -r 8ed3ecdb4fd4 -r 61e41fbed768 src/xterm.h --- a/src/xterm.h Sun Jan 16 23:17:23 2011 -0800 +++ b/src/xterm.h Sun Jan 16 23:28:25 2011 -0800 @@ -270,8 +270,8 @@ Atom Xatom_Scrollbar; /* Atom used in XEmbed client messages. */ - Atom Xatom_XEMBED, Xatom_XEMBED_INFO;; - + Atom Xatom_XEMBED, Xatom_XEMBED_INFO; + /* The frame (if any) which has the X window that has keyboard focus. Zero if none. This is examined by Ffocus_frame in xfns.c. Note that a mere EnterNotify event can set this; if you need to know the @@ -1112,4 +1112,3 @@ (nr).y = (ry), \ (nr).width = (rwidth), \ (nr).height = (rheight)) -