]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve doc strings of 2 functions in simple.el
authorEli Zaretskii <eliz@gnu.org>
Sat, 12 Aug 2017 12:11:16 +0000 (15:11 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 12 Aug 2017 12:11:16 +0000 (15:11 +0300)
* lisp/simple.el (beginning-of-visual-line)
(move-beginning-of-line): Doc fix.  Reported by
Justin Burkett <justin@burkett.cc>.

lisp/simple.el

index 933ffc55a6bf847efaad802a88db7c3a26f90c72..16f69f2bbe7470c79be1903f82ee9c6b3cd995e7 100644 (file)
@@ -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))