From 679910f18b72f30c7b9ac4322974bd859219384a Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 26 Mar 2012 14:43:05 +0900 Subject: [PATCH] dispextern.h (struct glyph): Fix previous change. Change the bit length of glyphless.ch to 25 (Bug#11082). --- src/ChangeLog | 5 +++++ src/dispextern.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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. */ -- 2.39.2