diff options
| author | Romain Francoise | 2008-09-17 19:16:09 +0000 |
|---|---|---|
| committer | Romain Francoise | 2008-09-17 19:16:09 +0000 |
| commit | 939c679e0a597d7fcb0704e37cfa59c4dbb5d913 (patch) | |
| tree | 2af214029c356a512ab403afc9ecce41459823e1 /src/composite.c | |
| parent | b2a9ce7e482b11aeab161d4b810b7feaa4fe442a (diff) | |
| download | emacs-939c679e0a597d7fcb0704e37cfa59c4dbb5d913.tar.gz emacs-939c679e0a597d7fcb0704e37cfa59c4dbb5d913.zip | |
(composition_adjust_point): Fix int/EMACS_INT mixup.
Diffstat (limited to 'src/composite.c')
| -rw-r--r-- | src/composite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c index 576e0c8a402..95f700c7116 100644 --- a/src/composite.c +++ b/src/composite.c | |||
| @@ -1429,7 +1429,7 @@ composition_adjust_point (last_pt) | |||
| 1429 | return PT; | 1429 | return PT; |
| 1430 | 1430 | ||
| 1431 | /* Next check the automatic composition. */ | 1431 | /* Next check the automatic composition. */ |
| 1432 | if (! find_automatic_composition (PT, -1, &beg, &end, &val, Qnil) | 1432 | if (! find_automatic_composition (PT, (EMACS_INT) -1, &beg, &end, &val, Qnil) |
| 1433 | || beg == PT) | 1433 | || beg == PT) |
| 1434 | return PT; | 1434 | return PT; |
| 1435 | for (i = 0; i < LGSTRING_GLYPH_LEN (val); i++) | 1435 | for (i = 0; i < LGSTRING_GLYPH_LEN (val); i++) |