1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 06:50:46 -08:00

* composite.h (struct composition.width): Now int

instead of unsigned short, as we prefer signed integers.
This commit is contained in:
Paul Eggert 2014-12-20 15:49:04 -08:00
parent 4cc2f6918d
commit 67bb1c1944
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2014-12-20 Paul Eggert <eggert@cs.ucla.edu>
* composite.h (struct composition.width): Now int
instead of unsigned short, as we prefer signed integers.
Let charset tick grow past USHRT_MAX
* charset.c, charset.h (charset_ordered_list_tick):
Now EMACS_UINT, not unsigned short.

View file

@ -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;