1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-06 05:52:32 -08:00

(struct composition): Change types of members; glyph_len to unsigned,

width to unsigned short.
This commit is contained in:
Kenichi Handa 2001-03-09 12:08:49 +00:00
parent 898a399dea
commit 28cd4910e8
2 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
2001-03-09 Kenichi Handa <handa@etl.go.jp>
* composite.h: Change types of members; glyph_len to unsigned,
width to unsigned short.
* composite.h (struct composition): Change types of members;
glyph_len to unsigned, width to unsigned short.
2001-03-08 Andrew Innes <andrewi@gnu.org>

View file

@ -149,17 +149,17 @@ extern Lisp_Object composition_temp;
ID, and thus share the same instance of this structure. */
struct composition {
/* 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;
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 short width;
/* Method of the composition. */
enum composition_method method;