diff options
| author | Eli Zaretskii | 2010-05-11 20:52:18 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-05-11 20:52:18 +0300 |
| commit | fd5b9fa30285a37965192c1a5104e5bdd80fb50b (patch) | |
| tree | 64bf8c855ed651aea69e3c02d7f22e01ec02f5f2 /src | |
| parent | 8a67c70efbc12bf01237046b7d18c436a5cc82ac (diff) | |
| download | emacs-fd5b9fa30285a37965192c1a5104e5bdd80fb50b.tar.gz emacs-fd5b9fa30285a37965192c1a5104e5bdd80fb50b.zip | |
xdisp.c (init_iterator): Fix comment from last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 92478b8e1f9..cd8ad7bec82 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -2699,8 +2699,8 @@ init_iterator (it, w, charpos, bytepos, row, base_face_id) | |||
| 2699 | it->multibyte_p = !NILP (current_buffer->enable_multibyte_characters); | 2699 | it->multibyte_p = !NILP (current_buffer->enable_multibyte_characters); |
| 2700 | 2700 | ||
| 2701 | /* Do we need to reorder bidirectional text? Not if this is a | 2701 | /* Do we need to reorder bidirectional text? Not if this is a |
| 2702 | unibyte buffer: all single-byte characters are by definition | 2702 | unibyte buffer: by definition, none of the single-byte characters |
| 2703 | strong L2R, so no reordering is needed. And bidi.c doesn't | 2703 | are strong R2L, so no reordering is needed. And bidi.c doesn't |
| 2704 | support unibyte buffers anyway. */ | 2704 | support unibyte buffers anyway. */ |
| 2705 | it->bidi_p | 2705 | it->bidi_p |
| 2706 | = !NILP (current_buffer->bidi_display_reordering) && it->multibyte_p; | 2706 | = !NILP (current_buffer->bidi_display_reordering) && it->multibyte_p; |