diff options
| author | Eli Zaretskii | 2011-05-14 16:41:52 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2011-05-14 16:41:52 +0300 |
| commit | 7b60010279ef966ed79de968c918e3e9f4b42e3b (patch) | |
| tree | 7879bd0da97c5afd9556a448e24134f756dfafe6 /src/ChangeLog | |
| parent | 102ebb00791ec617cfff4b1e351bc32bf8d71a9f (diff) | |
| download | emacs-7b60010279ef966ed79de968c918e3e9f4b42e3b.tar.gz emacs-7b60010279ef966ed79de968c918e3e9f4b42e3b.zip | |
Text covered by `display' overlays is correctly reordered.
Cursor positioning is not yet right near the overlay.
src/xdisp.c (compute_display_string_pos): Non-trivial implementation.
(compute_display_string_end): New function.
src/dispextern.h (compute_display_string_end): Declare prototype.
src/bidi.c (bidi_resolve_explicit_1): Use ZV for disp_pos.
(bidi_fetch_char): Implement support for runs of characters
covered by display strings.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index decde924b09..b122f0612b2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,7 +1,17 @@ | |||
| 1 | 2011-05-14 Eli Zaretskii <eliz@gnu.org> | 1 | 2011-05-14 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * xdisp.c (compute_display_string_pos): Non-trivial implementation. | ||
| 4 | (compute_display_string_end): New function. | ||
| 5 | |||
| 6 | * dispextern.h (compute_display_string_end): Declare prototype. | ||
| 7 | |||
| 8 | * bidi.c (bidi_resolve_explicit_1): Use ZV for disp_pos. | ||
| 9 | (bidi_fetch_char): Implement support for runs of characters | ||
| 10 | covered by display strings. | ||
| 11 | |||
| 3 | * bidi.c (bidi_fetch_char): Accept also character position | 12 | * bidi.c (bidi_fetch_char): Accept also character position |
| 4 | corresponding to BYTEPOS. All callers changed. | 13 | corresponding to BYTEPOS. DISP_POS is now a character position, |
| 14 | not a byte position. All callers changed. | ||
| 5 | (bidi_cache_iterator_state, bidi_resolve_explicit_1) | 15 | (bidi_cache_iterator_state, bidi_resolve_explicit_1) |
| 6 | (bidi_resolve_explicit, bidi_resolve_weak) | 16 | (bidi_resolve_explicit, bidi_resolve_weak) |
| 7 | (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if | 17 | (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if |