[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
emacs-27 568a560: Improve doc string of 'newline'
From: |
Stefan Kangas |
Subject: |
emacs-27 568a560: Improve doc string of 'newline' |
Date: |
Sat, 25 Jan 2020 13:12:56 -0500 (EST) |
branch: emacs-27
commit 568a560fceda2afd8e0c91e3176e81718bfa5ead
Author: Stefan Kangas <address@hidden>
Commit: Stefan Kangas <address@hidden>
Improve doc string of 'newline'
* lisp/simple.el (newline): Doc fix. Move 'use-hard-newlines' down,
since it's less important than the meaning of the prefix argument, and
is less frequently used than 'electric-indent-mode' and
'auto-fill-mode'. Change the wording to no longer call it an
option.
---
lisp/simple.el | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/lisp/simple.el b/lisp/simple.el
index 73aea41..00a7068 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -503,9 +503,7 @@ This hook is run by `delete-selection-uses-region-p', which
see.")
(defun newline (&optional arg interactive)
"Insert a newline, and move to left margin of the new line if it's blank.
-If option `use-hard-newlines' is non-nil, the newline is marked with the
-text-property `hard'.
-With ARG, insert that many newlines.
+With prefix argument ARG, insert that many newlines.
If `electric-indent-mode' is enabled, this indents the final new line
that it adds, and reindents the preceding line. To just insert
@@ -514,6 +512,9 @@ a newline, use \\[electric-indent-just-newline].
If `auto-fill-mode' is enabled, this may cause automatic line
breaking of the preceding line. A non-nil ARG inhibits this.
+If `use-hard-newlines' is enabled, the newline is marked with the
+text-property `hard'.
+
A non-nil INTERACTIVE argument means to run the `post-self-insert-hook'."
(interactive "*P\np")
(barf-if-buffer-read-only)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- emacs-27 568a560: Improve doc string of 'newline',
Stefan Kangas <=