diff options
Diffstat (limited to 'src/indent.c')
| -rw-r--r-- | src/indent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c index 18855768d37..e0d35f87652 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -599,7 +599,7 @@ scan_for_column (ptrdiff_t *endpos, EMACS_INT *goalcol, ptrdiff_t *prevcol) | |||
| 599 | if (cmp_it.id >= 0 | 599 | if (cmp_it.id >= 0 |
| 600 | || (scan == cmp_it.stop_pos | 600 | || (scan == cmp_it.stop_pos |
| 601 | && composition_reseat_it (&cmp_it, scan, scan_byte, end, | 601 | && composition_reseat_it (&cmp_it, scan, scan_byte, end, |
| 602 | w, NULL, Qnil))) | 602 | w, NEUTRAL_DIR, NULL, Qnil))) |
| 603 | composition_update_it (&cmp_it, scan, scan_byte, Qnil); | 603 | composition_update_it (&cmp_it, scan, scan_byte, Qnil); |
| 604 | if (cmp_it.id >= 0) | 604 | if (cmp_it.id >= 0) |
| 605 | { | 605 | { |
| @@ -1506,7 +1506,7 @@ compute_motion (ptrdiff_t from, ptrdiff_t frombyte, EMACS_INT fromvpos, | |||
| 1506 | if (cmp_it.id >= 0 | 1506 | if (cmp_it.id >= 0 |
| 1507 | || (pos == cmp_it.stop_pos | 1507 | || (pos == cmp_it.stop_pos |
| 1508 | && composition_reseat_it (&cmp_it, pos, pos_byte, to, win, | 1508 | && composition_reseat_it (&cmp_it, pos, pos_byte, to, win, |
| 1509 | NULL, Qnil))) | 1509 | NEUTRAL_DIR, NULL, Qnil))) |
| 1510 | composition_update_it (&cmp_it, pos, pos_byte, Qnil); | 1510 | composition_update_it (&cmp_it, pos, pos_byte, Qnil); |
| 1511 | if (cmp_it.id >= 0) | 1511 | if (cmp_it.id >= 0) |
| 1512 | { | 1512 | { |