From: Eli Zaretskii Date: Sat, 12 Aug 2017 12:11:16 +0000 (+0300) Subject: Improve doc strings of 2 functions in simple.el X-Git-Tag: emacs-26.0.90~482 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a685d9d7591df5b85c433940bbfaad283a82c495;p=emacs.git Improve doc strings of 2 functions in simple.el * lisp/simple.el (beginning-of-visual-line) (move-beginning-of-line): Doc fix. Reported by Justin Burkett . --- diff --git a/lisp/simple.el b/lisp/simple.el index 933ffc55a6b..16f69f2bbe7 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -6622,6 +6622,8 @@ which are part of the text that the image rests on.) With argument ARG not nil or 1, move forward ARG - 1 lines first. If point reaches the beginning or end of buffer, it stops there. +\(But if the buffer doesn't end in a newline, it stops at the +beginning of the last line.) To ignore intangibility, bind `inhibit-point-motion-hooks' to t." (interactive "^p") (or arg (setq arg 1)) @@ -6710,6 +6712,8 @@ To ignore intangibility, bind `inhibit-point-motion-hooks' to t." "Move point to beginning of current visual line. With argument N not nil or 1, move forward N - 1 visual lines first. If point reaches the beginning or end of buffer, it stops there. +\(But if the buffer doesn't end in a newline, it stops at the +beginning of the last visual line.) To ignore intangibility, bind `inhibit-point-motion-hooks' to t." (interactive "^p") (or n (setq n 1))