diff options
| author | Kenichi Handa | 2004-03-08 07:47:17 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-03-08 07:47:17 +0000 |
| commit | 01a362fff041b5ac0128b3177221f61340c3135b (patch) | |
| tree | 860aaaa883a00fa67f6b519a94c5b628944f9ab4 | |
| parent | 7b9931aacde18a3a240f84ba019628a842089509 (diff) | |
| download | emacs-01a362fff041b5ac0128b3177221f61340c3135b.tar.gz emacs-01a362fff041b5ac0128b3177221f61340c3135b.zip | |
(reseat_1): Call bidi_init_it with a previous position.
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 3fe9f8d5300..2f162108f1b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -4649,7 +4649,7 @@ reseat_1 (it, pos, set_stop_p) | |||
| 4649 | 4649 | ||
| 4650 | if (it->bidi_p) | 4650 | if (it->bidi_p) |
| 4651 | { | 4651 | { |
| 4652 | bidi_init_it (pos.charpos, L2R, &it->bidi_it); | 4652 | bidi_init_it (pos.charpos - 1, L2R, &it->bidi_it); |
| 4653 | bidi_get_next_char_visually (&it->bidi_it); | 4653 | bidi_get_next_char_visually (&it->bidi_it); |
| 4654 | 4654 | ||
| 4655 | pos.charpos = it->bidi_it.charpos; | 4655 | pos.charpos = it->bidi_it.charpos; |