emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/src ChangeLog dispextern.h


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs/src ChangeLog dispextern.h
Date: Mon, 29 Dec 2008 04:53:12 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   08/12/29 04:53:12

Modified files:
        src            : ChangeLog dispextern.h 

Log message:
        (struct face): Move lface and hash from the middle
        of bitfields.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7231&r2=1.7232
http://cvs.savannah.gnu.org/viewcvs/emacs/src/dispextern.h?cvsroot=emacs&r1=1.262&r2=1.263

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7231
retrieving revision 1.7232
diff -u -b -r1.7231 -r1.7232
--- ChangeLog   29 Dec 2008 04:01:06 -0000      1.7231
+++ ChangeLog   29 Dec 2008 04:53:10 -0000      1.7232
@@ -1,5 +1,8 @@
 2008-12-29  Dan Nicolaescu  <address@hidden>
 
+       * dispextern.h (struct face): Move lface and hash from the middle
+       of bitfields.
+
        * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
 
 2008-12-29  Dan Nicolaescu  <address@hidden>

Index: dispextern.h
===================================================================
RCS file: /cvsroot/emacs/emacs/src/dispextern.h,v
retrieving revision 1.262
retrieving revision 1.263
diff -u -b -r1.262 -r1.263
--- dispextern.h        12 Nov 2008 15:59:06 -0000      1.262
+++ dispextern.h        29 Dec 2008 04:53:11 -0000      1.263
@@ -1524,13 +1524,6 @@
      drawing shadows.  */
   unsigned use_box_color_for_shadows_p : 1;
 
-  /* The Lisp face attributes this face realizes.  All attributes
-     in this vector are non-nil.  */
-  Lisp_Object lface[LFACE_VECTOR_SIZE];
-
-  /* The hash value of this face.  */
-  unsigned hash;
-
   /* Non-zero if text in this face should be underlined, overlined,
      strike-through or have a box drawn around it.  */
   unsigned underline_p : 1;
@@ -1580,6 +1573,13 @@
   unsigned synth_ital : 1;
 #endif
 
+  /* The Lisp face attributes this face realizes.  All attributes
+     in this vector are non-nil.  */
+  Lisp_Object lface[LFACE_VECTOR_SIZE];
+
+  /* The hash value of this face.  */
+  unsigned hash;
+
   /* Next and previous face in hash collision list of face cache.  */
   struct face *next, *prev;
 




reply via email to

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