diff options
| author | Eli Zaretskii | 2017-08-12 15:11:16 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2017-08-12 15:11:16 +0300 |
| commit | a685d9d7591df5b85c433940bbfaad283a82c495 (patch) | |
| tree | c2f1a4b35ce747eafd12318050e60bc5545afc25 | |
| parent | fce2b2d2b40a1c0505d1ad623baef76f726c436a (diff) | |
| download | emacs-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.el | 4 |
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 | ||
| 6623 | With argument ARG not nil or 1, move forward ARG - 1 lines first. | 6623 | With argument ARG not nil or 1, move forward ARG - 1 lines first. |
| 6624 | If point reaches the beginning or end of buffer, it stops there. | 6624 | If 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 | ||
| 6626 | beginning of the last line.) | ||
| 6625 | To ignore intangibility, bind `inhibit-point-motion-hooks' to t." | 6627 | To 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. |
| 6711 | With argument N not nil or 1, move forward N - 1 visual lines first. | 6713 | With argument N not nil or 1, move forward N - 1 visual lines first. |
| 6712 | If point reaches the beginning or end of buffer, it stops there. | 6714 | If 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 | ||
| 6716 | beginning of the last visual line.) | ||
| 6713 | To ignore intangibility, bind `inhibit-point-motion-hooks' to t." | 6717 | To 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)) |