# HG changeset patch # User Kenichi Handa # Date 984139695 0 # Node ID 144162f5b2e3bdc849fc93d5bf4688f503c962c5 # Parent c933aef9b06b33af49f21a29a11b1493b4b5c9d3 (struct composition): Change types of members; glyph_len to unsigned, width to unsigned short. diff -r c933aef9b06b -r 144162f5b2e3 src/composite.h --- 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;