comparison src/indent.c @ 58205:fd88ccc2e4cf

(Fvertical_motion): Scan to PT from start of line to make iterator consistent.
author Richard M. Stallman <rms@gnu.org>
date Sun, 14 Nov 2004 04:13:54 +0000
parents 32217d296ff3
children 4a90dc7f2941
comparison
equal deleted inserted replaced
58204:687bb63efa9d 58205:fd88ccc2e4cf
2062 } 2062 }
2063 2063
2064 SET_TEXT_POS (pt, PT, PT_BYTE); 2064 SET_TEXT_POS (pt, PT, PT_BYTE);
2065 start_display (&it, w, pt); 2065 start_display (&it, w, pt);
2066 2066
2067 /* Move to the start of the display line containing PT. If we don't 2067 /* Scan from the start of the line containing PT. If we don't
2068 do this, we start moving with IT->current_x == 0, while PT is 2068 do this, we start moving with IT->current_x == 0, while PT is
2069 really at some x > 0. The effect is, in continuation lines, that 2069 really at some x > 0. The effect is, in continuation lines, that
2070 we end up with the iterator placed at where it thinks X is 0, 2070 we end up with the iterator placed at where it thinks X is 0,
2071 while the end position is really at some X > 0, the same X that 2071 while the end position is really at some X > 0, the same X that
2072 PT had. */ 2072 PT had. */
2073 move_it_by_lines (&it, 0, 0); 2073 reseat_at_previous_visible_line_start (&it);
2074 it.current_x = it.hpos = 0;
2075 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
2076 it.vpos = 0;
2074 2077
2075 if (XINT (lines) != 0) 2078 if (XINT (lines) != 0)
2076 move_it_by_lines (&it, XINT (lines), 0); 2079 move_it_by_lines (&it, XINT (lines), 0);
2077 2080
2078 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it)); 2081 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));