emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a685d9d: Improve doc strings of 2 functions in simp


From: Eli Zaretskii
Subject: [Emacs-diffs] master a685d9d: Improve doc strings of 2 functions in simple.el
Date: Sat, 12 Aug 2017 08:12:34 -0400 (EDT)

branch: master
commit a685d9d7591df5b85c433940bbfaad283a82c495
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    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 <address@hidden>.
---
 lisp/simple.el | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lisp/simple.el b/lisp/simple.el
index 933ffc5..16f69f2 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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]