aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2017-08-12 15:11:16 +0300
committerEli Zaretskii2017-08-12 15:11:16 +0300
commita685d9d7591df5b85c433940bbfaad283a82c495 (patch)
treec2f1a4b35ce747eafd12318050e60bc5545afc25
parentfce2b2d2b40a1c0505d1ad623baef76f726c436a (diff)
downloademacs-a685d9d7591df5b85c433940bbfaad283a82c495.tar.gz
emacs-a685d9d7591df5b85c433940bbfaad283a82c495.zip
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 <justin@burkett.cc>.
-rw-r--r--lisp/simple.el4
1 files changed, 4 insertions, 0 deletions
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.)
6622 6622
6623With argument ARG not nil or 1, move forward ARG - 1 lines first. 6623With argument ARG not nil or 1, move forward ARG - 1 lines first.
6624If point reaches the beginning or end of buffer, it stops there. 6624If point reaches the beginning or end of buffer, it stops there.
6625\(But if the buffer doesn't end in a newline, it stops at the
6626beginning of the last line.)
6625To ignore intangibility, bind `inhibit-point-motion-hooks' to t." 6627To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6626 (interactive "^p") 6628 (interactive "^p")
6627 (or arg (setq arg 1)) 6629 (or arg (setq arg 1))
@@ -6710,6 +6712,8 @@ To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6710 "Move point to beginning of current visual line. 6712 "Move point to beginning of current visual line.
6711With argument N not nil or 1, move forward N - 1 visual lines first. 6713With argument N not nil or 1, move forward N - 1 visual lines first.
6712If point reaches the beginning or end of buffer, it stops there. 6714If point reaches the beginning or end of buffer, it stops there.
6715\(But if the buffer doesn't end in a newline, it stops at the
6716beginning of the last visual line.)
6713To ignore intangibility, bind `inhibit-point-motion-hooks' to t." 6717To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6714 (interactive "^p") 6718 (interactive "^p")
6715 (or n (setq n 1)) 6719 (or n (setq n 1))