summaryrefslogtreecommitdiff
path: root/src/composite.h
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2001-03-09 12:08:49 +0000
committerKenichi Handa <handa@m17n.org>2001-03-09 12:08:49 +0000
commit28cd4910e87726f19c87b3f35f62742b60aff019 (patch)
tree3b93769f9bd49d57428cec7692d272e1d362ab8f /src/composite.h
parent898a399deab2137d1402a376e8783165f2e4e8bb (diff)
downloademacs-28cd4910e87726f19c87b3f35f62742b60aff019.tar.gz
(struct composition): Change types of members; glyph_len to unsigned,
width to unsigned short.
Diffstat (limited to 'src/composite.h')
-rw-r--r--src/composite.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/composite.h b/src/composite.h
index 7c7236e439a..75a336d6643 100644
--- a/src/composite.h
+++ b/src/composite.h
@@ -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;