Mercurial > emacs
comparison src/xdisp.c @ 108487:57fe80b13f7a
xdisp.c (init_iterator): Fix comment from last change.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 11 May 2010 20:52:18 +0300 |
parents | 3219af501dc0 |
children | 23f4cd23ea89 |
comparison
equal
deleted
inserted
replaced
108486:7b8ec1ad0223 | 108487:57fe80b13f7a |
---|---|
2697 | 2697 |
2698 /* Are multibyte characters enabled in current_buffer? */ | 2698 /* Are multibyte characters enabled in current_buffer? */ |
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; |
2707 | 2707 |
2708 /* Non-zero if we should highlight the region. */ | 2708 /* Non-zero if we should highlight the region. */ |