User: crestani
Date: 05/03/09 20:47:43
Modified: xemacs/src ChangeLog redisplay.h
Log:
Subject: Fix bug in KKCC marking of unions.
2005-03-02 Marcus Crestani <crestani(a)informatik.uni-tuebingen.de>
* redisplay.h (struct rune): make type field an int, to fix
KKCC marking of unions.
Revision Changes Path
1.803 +5 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.802
retrieving revision 1.803
diff -u -r1.802 -r1.803
--- ChangeLog 2005/03/09 04:59:25 1.802
+++ ChangeLog 2005/03/09 19:47:40 1.803
@@ -1,3 +1,8 @@
+2005-03-02 Marcus Crestani <crestani(a)informatik.uni-tuebingen.de>
+
+ * redisplay.h (struct rune): make type field an int, to fix
+ KKCC marking of unions.
+
2005-01-13 Stephen J. Turnbull <stephen(a)xemacs.org>
* regex.c (re_match_2_internal):
1.23 +1 -1 XEmacs/xemacs/src/redisplay.h
Index: redisplay.h
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/redisplay.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- redisplay.h 2005/01/26 10:33:42 1.22
+++ redisplay.h 2005/03/09 19:47:41 1.23
@@ -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