summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2005-01-19 23:17:00 +0000
committerKim F. Storm <storm@cua.dk>2005-01-19 23:17:00 +0000
commit8fd7aa51de09980366ad249ef80081ef0763d3ef (patch)
tree681c0434104c21e534528bb8ecf9fcf40c001aa8 /src/indent.c
parent3d6a4b2d4409dc59f431fd964b1cf6a15d621009 (diff)
downloademacs-8fd7aa51de09980366ad249ef80081ef0763d3ef.tar.gz
(Fvertical_motion): Temporarily disable selective display.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/indent.c b/src/indent.c
index 49ee90b6360..46ee5ce2bf4 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -2071,6 +2071,7 @@ whether or not it is currently displayed in some window. */)
else
{
int it_start;
+ int oselective;
SET_TEXT_POS (pt, PT, PT_BYTE);
start_display (&it, w, pt);
@@ -2084,7 +2085,11 @@ whether or not it is currently displayed in some window. */)
it_start = IT_CHARPOS (it);
reseat_at_previous_visible_line_start (&it);
it.current_x = it.hpos = 0;
+ /* Temporarily disable selective display so we don't move too far */
+ oselective = it.selective;
+ it.selective = 0;
move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
+ it.selective = oselective;
/* Move back if we got too far. This may happen if
truncate-lines is on and PT is beyond right margin. */