aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2014-12-20 15:49:04 -0800
committerPaul Eggert2014-12-20 15:50:46 -0800
commit67bb1c1944ef69710e9d36420bc01e2183941358 (patch)
treec5b0a170041727e937fabc81e9370882ed44d0f0 /src
parent4cc2f6918ddd44bf1f10a1d689b7bd769fcf6b8e (diff)
downloademacs-67bb1c1944ef69710e9d36420bc01e2183941358.tar.gz
emacs-67bb1c1944ef69710e9d36420bc01e2183941358.zip
* composite.h (struct composition.width): Now int
instead of unsigned short, as we prefer signed integers.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/composite.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4c2f2ec59d6..51ab3396ef3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12014-12-20 Paul Eggert <eggert@cs.ucla.edu> 12014-12-20 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * composite.h (struct composition.width): Now int
4 instead of unsigned short, as we prefer signed integers.
5
3 Let charset tick grow past USHRT_MAX 6 Let charset tick grow past USHRT_MAX
4 * charset.c, charset.h (charset_ordered_list_tick): 7 * charset.c, charset.h (charset_ordered_list_tick):
5 Now EMACS_UINT, not unsigned short. 8 Now EMACS_UINT, not unsigned short.
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 {
156 /* How many columns the overall glyphs occupy on the screen. This 156 /* How many columns the overall glyphs occupy on the screen. This
157 gives an approximate value for column calculation in 157 gives an approximate value for column calculation in
158 Fcurrent_column, and etc. */ 158 Fcurrent_column, and etc. */
159 unsigned short width; 159 int width;
160 160
161 /* Method of the composition. */ 161 /* Method of the composition. */
162 enum composition_method method; 162 enum composition_method method;