# HG changeset patch # User crestani # Date 1110397661 0 # Node ID 368e26e0b1e3d80956ee79b14ae9c9ea924c9f69 # Parent f7e2b977e15c8ce4af6faa4576a93c5821b1a9d9 [xemacs-hg @ 2005-03-09 19:47:40 by crestani] Subject: Fix bug in KKCC marking of unions. 2005-03-02 Marcus Crestani * redisplay.h (struct rune): make type field an int, to fix KKCC marking of unions. diff -r f7e2b977e15c -r 368e26e0b1e3 src/ChangeLog --- a/src/ChangeLog Wed Mar 09 05:58:54 2005 +0000 +++ b/src/ChangeLog Wed Mar 09 19:47:41 2005 +0000 @@ -1,3 +1,8 @@ +2005-03-02 Marcus Crestani + + * redisplay.h (struct rune): make type field an int, to fix + KKCC marking of unions. + 2005-01-13 Stephen J. Turnbull * regex.c (re_match_2_internal): diff -r f7e2b977e15c -r 368e26e0b1e3 src/redisplay.h --- a/src/redisplay.h Wed Mar 09 05:58:54 2005 +0000 +++ b/src/redisplay.h Wed Mar 09 19:47:41 2005 +0000 @@ -144,7 +144,7 @@ unsigned char cursor_type; /* is this rune covered by the cursor? */ - unsigned char type; /* type of rune object */ + unsigned int type; /* type of rune object */ /* We used to do bitfields here, but if I (JV) count correctly that doesn't matter for the size of the structure. All the bit