summaryrefslogtreecommitdiff
path: root/src/composite.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2014-12-20 15:49:04 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2014-12-20 15:50:46 -0800
commit67bb1c1944ef69710e9d36420bc01e2183941358 (patch)
treec5b0a170041727e937fabc81e9370882ed44d0f0 /src/composite.h
parent4cc2f6918ddd44bf1f10a1d689b7bd769fcf6b8e (diff)
downloademacs-67bb1c1944ef69710e9d36420bc01e2183941358.tar.gz
* composite.h (struct composition.width): Now int
instead of unsigned short, as we prefer signed integers.
Diffstat (limited to 'src/composite.h')
-rw-r--r--src/composite.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/composite.h b/src/composite.h
index f01ae323c0d..1080eb0960c 100644
--- a/src/composite.h
+++ b/src/composite.h
@@ -156,7 +156,7 @@ 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 short width;
+ int width;
/* Method of the composition. */
enum composition_method method;