changeset 36691:144162f5b2e3

(struct composition): Change types of members; glyph_len to unsigned, width to unsigned short.
author Kenichi Handa <handa@m17n.org>
date Fri, 09 Mar 2001 12:08:15 +0000
parents c933aef9b06b
children 502751b9d14a
files src/composite.h
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/composite.h	Fri Mar 09 12:07:40 2001 +0000
+++ b/src/composite.h	Fri Mar 09 12:08:15 2001 +0000
@@ -149,16 +149,16 @@
    ID, and thus share the same instance of this structure.  */
 
 struct composition {
+  /* Number of glyphs of the composition components.  */
+  unsigned glyph_len;
+
+  /* Width, ascent, and descent pixels of the composition.  */
+  short pixel_width, ascent, descent;
+
   /* How many columns the overall glyphs occupy on the screen.  This
      gives an approximate value for column calculation in
      Fcurrent_column, and etc.  */
-  unsigned char width;
-
-  /* Number of glyphs of the composition components.  */
-  unsigned char glyph_len;
-
-  /* Width, ascent, and descent pixels of the composition.  */
-  short pixel_width, ascent, descent;
+  unsigned short width;
 
   /* Method of the composition.  */
   enum composition_method method;