diff options
| author | Dave Love | 2003-09-17 13:51:40 +0000 |
|---|---|---|
| committer | Dave Love | 2003-09-17 13:51:40 +0000 |
| commit | f4bc0685e1a77c4af67854bcecd82fd9f22028b9 (patch) | |
| tree | c411f9959ab04cc07b614671b8dfd3dbbfd12fd9 /src | |
| parent | 6ff5635622255413319e59175e530c1b599c35fa (diff) | |
| download | emacs-f4bc0685e1a77c4af67854bcecd82fd9f22028b9.tar.gz emacs-f4bc0685e1a77c4af67854bcecd82fd9f22028b9.zip | |
(lisp_string_width): Make ignore and end EMACS_INT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/character.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/character.c b/src/character.c index b25aff8083c..e4b7e362add 100644 --- a/src/character.c +++ b/src/character.c | |||
| @@ -429,7 +429,7 @@ lisp_string_width (string, precision, nchars, nbytes) | |||
| 429 | int chars, bytes, thiswidth; | 429 | int chars, bytes, thiswidth; |
| 430 | Lisp_Object val; | 430 | Lisp_Object val; |
| 431 | int cmp_id; | 431 | int cmp_id; |
| 432 | int ignore, end; | 432 | EMACS_INT ignore, end; |
| 433 | 433 | ||
| 434 | if (find_composition (i, -1, &ignore, &end, &val, string) | 434 | if (find_composition (i, -1, &ignore, &end, &val, string) |
| 435 | && ((cmp_id = get_composition_id (i, i_byte, end - i, val, string)) | 435 | && ((cmp_id = get_composition_id (i, i_byte, end - i, val, string)) |