From: Chong Yidong Date: Thu, 19 Mar 2009 02:58:21 +0000 (+0000) Subject: (Fvertical_motion): Undo 2005-01-19 change (Bug#2694). X-Git-Tag: emacs-pretest-23.0.92~129 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=11fb10def408a78a59916c2b524d81f7fd8de6df;p=emacs.git (Fvertical_motion): Undo 2005-01-19 change (Bug#2694). --- diff --git a/src/indent.c b/src/indent.c index 8c6c52358ff..f10b235427e 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2094,14 +2094,11 @@ whether or not it is currently displayed in some window. */) reseat_at_previous_visible_line_start (&it); it.current_x = it.hpos = 0; if (IT_CHARPOS (it) != PT) - { - int oselective = it.selective; - /* Temporarily disable selective display so we don't move - too far */ - it.selective = 0; - move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS); - it.selective = oselective; - } + /* We used to temporarily disable selective display here; the + comment said this is "so we don't move too far" (2005-01-19 + checkin by kfs). But this does nothing useful that I can + tell, and it causes Bug#2694 . -- cyd */ + move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS); if (XINT (lines) <= 0) {