emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112418: * dispextern.h (struct face)


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112418: * dispextern.h (struct face): Move enum face_underline_type
Date: Sun, 28 Apr 2013 09:11:16 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112418
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Sun 2013-04-28 09:11:16 -0400
message:
  * dispextern.h (struct face): Move enum face_underline_type
  earlier so that bitfields can be in the same word.
modified:
  src/ChangeLog
  src/dispextern.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-04-28 09:55:20 +0000
+++ b/src/ChangeLog     2013-04-28 13:11:16 +0000
@@ -1,3 +1,8 @@
+2013-04-28  Dan Nicolaescu  <address@hidden>
+
+       * 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  <address@hidden>
 
        * nsfns.m (handlePanelKeys): New function.

=== modified file 'src/dispextern.h'
--- a/src/dispextern.h  2013-04-15 07:27:56 +0000
+++ b/src/dispextern.h  2013-04-28 13:11:16 +0000
@@ -1591,13 +1591,13 @@
      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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]