From: Kenichi Handa Date: Mon, 26 Mar 2012 05:43:05 +0000 (+0900) Subject: dispextern.h (struct glyph): Fix previous change. Change the bit length of glyphless... X-Git-Tag: emacs-pretest-24.0.05~50 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=679910f18b72f30c7b9ac4322974bd859219384a;p=emacs.git dispextern.h (struct glyph): Fix previous change. Change the bit length of glyphless.ch to 25 (Bug#11082). --- diff --git a/src/ChangeLog b/src/ChangeLog index 490d4279080..81448982563 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-03-26 Kenichi Handa + + * dispextern.h (struct glyph): Fix previous change. Change the + bit length of glyphless.ch to 25 (Bug#11082). + 2012-03-26 Chong Yidong * keyboard.c (Vselection_inhibit_update_commands): New variable. diff --git a/src/dispextern.h b/src/dispextern.h index 6024b67ad28..4804a9e61c6 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -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. */