dispextern.h (struct glyph): Fix previous change. Change the bit length of glyphless...
authorKenichi Handa <handa@m17n.org>
Mon, 26 Mar 2012 05:43:05 +0000 (14:43 +0900)
committerKenichi Handa <handa@m17n.org>
Mon, 26 Mar 2012 05:43:05 +0000 (14:43 +0900)
src/ChangeLog
src/dispextern.h

index 490d427..8144898 100644 (file)
@@ -1,3 +1,8 @@
+2012-03-26  Kenichi Handa  <handa@m17n.org>
+
+       * dispextern.h (struct glyph): Fix previous change.  Change the
+       bit length of glyphless.ch to 25 (Bug#11082).
+
 2012-03-26  Chong Yidong  <cyd@gnu.org>
 
        * keyboard.c (Vselection_inhibit_update_commands): New variable.
index 6024b67..4804a9e 100644 (file)
@@ -454,7 +454,7 @@ struct glyph
       /* Length of acronym or hexadecimal code string (at most 8).  */
       unsigned len : 4;
       /* Character to display.  Actually we need only 22 bits.  */
-      unsigned ch : 22;
+      unsigned ch : 25;
     } glyphless;
 
     /* Used to compare all bit-fields above in one step.  */