From: Eli Zaretskii Date: Tue, 11 May 2010 17:52:18 +0000 (+0300) Subject: xdisp.c (init_iterator): Fix comment from last change. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~211^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fd5b9fa30285a37965192c1a5104e5bdd80fb50b;p=emacs.git xdisp.c (init_iterator): Fix comment from last change. --- 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) it->multibyte_p = !NILP (current_buffer->enable_multibyte_characters); /* Do we need to reorder bidirectional text? Not if this is a - unibyte buffer: all single-byte characters are by definition - strong L2R, so no reordering is needed. And bidi.c doesn't + unibyte buffer: by definition, none of the single-byte characters + are strong R2L, so no reordering is needed. And bidi.c doesn't support unibyte buffers anyway. */ it->bidi_p = !NILP (current_buffer->bidi_display_reordering) && it->multibyte_p;