From: Eli Zaretskii Date: Fri, 12 Jul 2013 08:35:42 +0000 (+0300) Subject: Minor followup to previous commit. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1825 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=18331b9040f8bf5a7d370c17cd32cf1d5a7a5d80;p=emacs.git Minor followup to previous commit. lisp/simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG. Fixes: debbugs:14842 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8e039421e30..99e9150cd7b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,6 @@ 2013-07-12 Eli Zaretskii - * simple.el (next-line, previous-line): Document TRY-VSCROLL. + * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG. (Bug#14842) 2013-07-12 Glenn Morris diff --git a/lisp/simple.el b/lisp/simple.el index 85d06ff89f0..9158452fd64 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4606,6 +4606,8 @@ Non-interactively, use TRY-VSCROLL to control whether to vscroll tall lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this function will not vscroll. +ARG defaults to 1. + If there is no character in the target line exactly under the current column, the cursor is positioned after the character in that line which spans this column, or at the end of the line if it is not long enough. @@ -4654,6 +4656,8 @@ Non-interactively, use TRY-VSCROLL to control whether to vscroll tall lines: if either `auto-window-vscroll' or TRY-VSCROLL is nil, this function will not vscroll. +ARG defaults to 1. + If there is no character in the target line exactly over the current column, the cursor is positioned after the character in that line which spans this column, or at the end of the line if it is not long enough.