Mercurial > emacs
changeset 33916:907c3073ae28
(forward_to_next_line_start): If already on a newline,
just consume it to avoid unintended skipping over invisible text
below.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 27 Nov 2000 16:18:37 +0000 |
parents | 727152b65ce0 |
children | 8fdc1e5e72f3 |
files | src/xdisp.c |
diffstat | 1 files changed, 20 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Mon Nov 27 15:35:32 2000 +0000 +++ b/src/xdisp.c Mon Nov 27 16:18:37 2000 +0000 @@ -3392,7 +3392,14 @@ Newlines may come from buffer text, overlay strings, or strings displayed via the `display' property. That's the reason we can't - simply use find_next_newline_no_quit. */ + simply use find_next_newline_no_quit. + + Note that this function may not skip over invisible text that is so + because of text properties and immediately follows a newline. If + it would, function reseat_at_next_visible_line_start, when called + from set_iterator_to_next, would effectively make invisible + characters following a newline part of the wrong glyph row, which + leads to wrong cursor motion. */ static int forward_to_next_line_start (it, skipped_p) @@ -3402,9 +3409,18 @@ int old_selective, newline_found_p, n; const int MAX_NEWLINE_DISTANCE = 500; + /* If already on a newline, just consume it to avoid unintended + skipping over invisible text below. */ + if (ITERATOR_AT_END_OF_LINE_P (it)) + { + set_iterator_to_next (it, 0); + return 1; + } + /* Don't handle selective display in the following. It's (a) - unnecessary and (b) leads to an infinite recursion because - next_element_from_ellipsis indirectly calls this function. */ + unnecessary because it's done by the caller, and (b) leads to an + infinite recursion because next_element_from_ellipsis indirectly + calls this function. */ old_selective = it->selective; it->selective = 0; @@ -11851,7 +11867,7 @@ /* Value is non-zero if glyph row ROW in window W should be - used to put the cursor on. */ + used to hold the cursor. */ static int cursor_row_p (w, row)