dispextern.h (struct glyph): Fix previous change. Change the bit length of glyphless.ch to 25 (Bug#11082).

This commit is contained in:
Kenichi Handa 2012-03-26 14:43:05 +09:00
parent 90d49b7fb2
commit 679910f18b
2 changed files with 6 additions and 1 deletions

View 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.

View 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. */