diff options
| author | Kenichi Handa | 2000-12-06 00:28:48 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-12-06 00:28:48 +0000 |
| commit | 4f116dd4f70ea0acb25abbbd2446f56fb501b251 (patch) | |
| tree | 5eeee969466c50aebd3b8c761a5052fa6fde34e0 /src | |
| parent | 03d7a16767c7ba694098f4c6bdacdb51eec9ab07 (diff) | |
| download | emacs-4f116dd4f70ea0acb25abbbd2446f56fb501b251.tar.gz emacs-4f116dd4f70ea0acb25abbbd2446f56fb501b251.zip | |
(update_compositions): Fix typo (use the correct variable).
Diffstat (limited to 'src')
| -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 3379d594d28..2ffc33d651e 100644 --- a/src/composite.c +++ b/src/composite.c | |||
| @@ -498,7 +498,7 @@ update_compositions (from, to, check_mask) | |||
| 498 | run_composition_function (start, end, prop); | 498 | run_composition_function (start, end, prop); |
| 499 | from = end; | 499 | from = end; |
| 500 | } | 500 | } |
| 501 | else if (from < end | 501 | else if (from < to |
| 502 | && find_composition (from, -1, &start, &from, &prop, Qnil)) | 502 | && find_composition (from, -1, &start, &from, &prop, Qnil)) |
| 503 | run_composition_function (start, from, prop); | 503 | run_composition_function (start, from, prop); |
| 504 | } | 504 | } |