]> git.eshelyaron.com Git - emacs.git/commitdiff
* dispextern.h (struct face): Move enum face_underline_type
authorDan Nicolaescu <dann@ics.uci.edu>
Sun, 28 Apr 2013 13:11:16 +0000 (09:11 -0400)
committerDan Nicolaescu <dann@ics.uci.edu>
Sun, 28 Apr 2013 13:11:16 +0000 (09:11 -0400)
earlier so that bitfields can be in the same word.

src/ChangeLog
src/dispextern.h

index 84aa50f7047ccf7e9671e6f888ac61d1bc506592..5fa2404a243f788245f4d9b38ef69d59c7359f78 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-28  Dan Nicolaescu  <dann@gnu.org>
+
+       * dispextern.h (struct face): Move enum face_underline_type
+       earlier so that bitfields can be in the same word.
+
 2013-04-28  Jan Djärv  <jan.h.d@swipnet.se>
 
        * nsfns.m (handlePanelKeys): New function.
index 9dc3a57c284227b6bb73aec7f0bc9c6f4b19dfab..5ce7b19f17382d00f726101fa0688a048fe4b206 100644 (file)
@@ -1591,13 +1591,13 @@ struct face
      shadow colors derived from the background color of the face.  */
   enum face_box_type box;
 
+  /* Style of underlining. */
+  enum face_underline_type underline_type;
+
   /* If `box' above specifies a 3D type, 1 means use box_color for
      drawing shadows.  */
   unsigned use_box_color_for_shadows_p : 1;
 
-  /* Style of underlining. */
-  enum face_underline_type underline_type;
-
   /* Non-zero if text in this face should be underlined, overlined,
      strike-through or have a box drawn around it.  */
   unsigned underline_p : 1;