]> git.eshelyaron.com Git - emacs.git/commitdiff
(try_cursor_movement): Fix last change. The real
authorGerd Moellmann <gerd@gnu.org>
Wed, 20 Dec 2000 14:25:09 +0000 (14:25 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 20 Dec 2000 14:25:09 +0000 (14:25 +0000)
condition is that PT is at the end of the row, and should
be displayed at the start of the next row.

src/ChangeLog
src/xdisp.c

index 6814ea02fbfac0e4799034c7ed648e89a51bf5e0..83e83509c4dd8e429365a84845f06c79ba36128c 100644 (file)
@@ -1,5 +1,9 @@
 2000-12-20  Gerd Moellmann  <gerd@gnu.org>
 
+       * xdisp.c (try_cursor_movement): Fix last change.  The real
+       condition is that PT is at the end of the row, and should
+       be displayed at the start of the next row.
+       
        * xdisp.c (try_cursor_movement): If we end on a partially
        visible line, end we already decided to scroll, return -1.
 
index 8a9e063ce1c98d8cd2ff51343fea80e2f595afa9..e72ca02e6e6f34334aebca42f8cbc0e715d86e29 100644 (file)
@@ -9332,13 +9332,16 @@ try_cursor_movement (window, startp, scroll_step)
            }
          else if (MATRIX_ROW_PARTIALLY_VISIBLE_P (row))
            {
-             /* If we end up in a partially visible line, let's make it
-                fully visible, except when it's taller than the window,
-                in which case we can't do much about it.  */
-             if (scroll_p)
+             if (PT == MATRIX_ROW_END_CHARPOS (row)
+                 && !row->ends_at_zv_p
+                 && !MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P (row))
                rc = -1;
              else if (row->height > window_box_height (w))
                {
+                 /* If we end up in a partially visible line, let's
+                    make it fully visible, except when it's taller
+                    than the window, in which case we can't do much
+                    about it.  */
                  *scroll_step = 1;
                  rc = -1;
                }