aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/indent.c8
2 files changed, 13 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f7cb0fe850f..f760adf313f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12012-11-21 Eli Zaretskii <eliz@gnu.org>
2
3 * indent.c (Fvertical_motion): If the starting position is covered
4 by a display string, return to one position before that, to avoid
5 overshooting it inside move_it_to. (Bug#12930)
6
12012-11-20 Daniel Colascione <dancol@dancol.org> 72012-11-20 Daniel Colascione <dancol@dancol.org>
2 8
3 * w32fns.c (Fx_file_dialog): 9 * w32fns.c (Fx_file_dialog):
diff --git a/src/indent.c b/src/indent.c
index bbc944d2518..33322287c9d 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -2057,7 +2057,13 @@ whether or not it is currently displayed in some window. */)
2057 comment said this is "so we don't move too far" (2005-01-19 2057 comment said this is "so we don't move too far" (2005-01-19
2058 checkin by kfs). But this does nothing useful that I can 2058 checkin by kfs). But this does nothing useful that I can
2059 tell, and it causes Bug#2694 . -- cyd */ 2059 tell, and it causes Bug#2694 . -- cyd */
2060 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS); 2060 /* When the position we started from is covered by a display
2061 string, move_it_to will overshoot it, while vertical-motion
2062 wants to put the cursor _before_ the display string. So in
2063 that case, we move to buffer position before the display
2064 string, and avoid overshooting. */
2065 move_it_to (&it, disp_string_at_start_p ? PT - 1 : PT,
2066 -1, -1, -1, MOVE_TO_POS);
2061 2067
2062 /* IT may move too far if truncate-lines is on and PT lies 2068 /* IT may move too far if truncate-lines is on and PT lies
2063 beyond the right margin. IT may also move too far if the 2069 beyond the right margin. IT may also move too far if the