aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2010-05-18 18:22:15 +0300
committerEli Zaretskii2010-05-18 18:22:15 +0300
commitd36fe2375ad338a799038a5afee82d00e6b6b7ac (patch)
treec556ef3bd494e8c858a285b1f408137b1266dab1 /src/ChangeLog
parent560bb7ae8eb9873e1a6be40ff7f26e08228e1d1a (diff)
downloademacs-d36fe2375ad338a799038a5afee82d00e6b6b7ac.tar.gz
emacs-d36fe2375ad338a799038a5afee82d00e6b6b7ac.zip
Initial reimplementation of calculating line edge positions in bidi lines.
dispextern.h (struct glyph_row): New members minpos and maxpos. (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS) (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos and maxpos members instead of start.pos and end.pos, respectively. xdisp.c (display_line): Compare IT_CHARPOS with the position in row->start.pos, rather than with MATRIX_ROW_START_CHARPOS. (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS. (try_window_reusing_current_matrix, try_window_id): Use ROW->minpos rather than ROW->start.pos. (init_from_display_pos, init_iterator): Use EMACS_INT for character and byte positions. (find_row_edges): Renamed from find_row_end. Accept additional arguments for minimum and maximum buffer positions seen by display_line for this row. Don't use iterator to find the position following the maximum one; instead, increment the position found by display_line directly. (display_line): Record minimum and maximum buffer positions for glyphs in this row. Record the position of the newline that terminates the line. dispnew.c (increment_row_positions, check_matrix_invariants): Increment and check row->start.pos and row->end.pos, in addition to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b0965f8e514..fe30d07692a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,30 @@
12010-05-18 Eli Zaretskii <eliz@gnu.org>
2
3 * dispextern.h (struct glyph_row): New members minpos and maxpos.
4 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
5 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
6 and maxpos members instead of start.pos and end.pos, respectively.
7
8 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
9 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
10 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
11 (try_window_reusing_current_matrix, try_window_id): Use
12 ROW->minpos rather than ROW->start.pos.
13 (init_from_display_pos, init_iterator): Use EMACS_INT for
14 character and byte positions.
15 (find_row_edges): Renamed from find_row_end. Accept additional
16 arguments for minimum and maximum buffer positions seen by
17 display_line for this row. Don't use iterator to find the
18 position following the maximum one; instead, increment the
19 position found by display_line directly.
20 (display_line): Record minimum and maximum buffer positions for
21 glyphs in this row. Record the position of the newline that
22 terminates the line.
23
24 * dispnew.c (increment_row_positions, check_matrix_invariants):
25 Increment and check row->start.pos and row->end.pos, in addition
26 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
27
12010-05-18 Juanma Barranquero <lekktu@gmail.com> 282010-05-18 Juanma Barranquero <lekktu@gmail.com>
2 29
3 * charset.c (load_charset_map_from_file): Don't call close after fclose. 30 * charset.c (load_charset_map_from_file): Don't call close after fclose.
@@ -91,6 +118,8 @@
91 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function. 118 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
92 (syms_of_xdisp): Defsubr it. 119 (syms_of_xdisp): Defsubr it.
93 120
121 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
122
94 * Makefile.in: Fix MSDOS-related comments. 123 * Makefile.in: Fix MSDOS-related comments.
95 124
962010-05-15 Glenn Morris <rgm@gnu.org> 1252010-05-15 Glenn Morris <rgm@gnu.org>