emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r107675: dispextern.h (struct glyph):


From: Kenichi Handa
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107675: dispextern.h (struct glyph): Change the bit length of glyphless.ch to 22 to make the member glyphless fit in 32 bits.
Date: Mon, 26 Mar 2012 00:36:28 +0900
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107675 [merge]
committer: Kenichi Handa <address@hidden>
branch nick: trunk
timestamp: Mon 2012-03-26 00:36:28 +0900
message:
  dispextern.h (struct glyph): Change the bit length of glyphless.ch to 22 to 
make the member glyphless fit in 32 bits.
modified:
  src/ChangeLog
  src/dispextern.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-03-24 13:43:21 +0000
+++ b/src/ChangeLog     2012-03-25 15:35:23 +0000
@@ -1,3 +1,8 @@
+2012-03-25  Kenichi Handa  <address@hidden>
+
+       * dispextern.h (struct glyph): Change the bit length of
+       glyphless.ch to 22 to make the member glyphless fit in 32 bits.
+
 2012-03-24  Eli Zaretskii  <address@hidden>
 
        * s/ms-w32.h (tzname): Include time.h before redirecting to

=== modified file 'src/dispextern.h'
--- a/src/dispextern.h  2012-03-22 07:08:17 +0000
+++ b/src/dispextern.h  2012-03-25 15:35:23 +0000
@@ -454,7 +454,7 @@
       /* Length of acronym or hexadecimal code string (at most 8).  */
       unsigned len : 4;
       /* Character to display.  Actually we need only 22 bits.  */
-      unsigned ch : 26;
+      unsigned ch : 22;
     } glyphless;
 
     /* Used to compare all bit-fields above in one step.  */


reply via email to

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