aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2019-04-04 23:37:08 +0100
committerBasil L. Contovounesios2019-04-04 23:41:02 +0100
commit690c678fb6c1fb5b2f828f9bb90782bd0b01c399 (patch)
treec1e0388ea1c60f2bcd99a80eda10a3364a2d39a1
parentd63aa2f3e5009e0e8ec83fecc4f0bbe2866e5a59 (diff)
downloademacs-690c678fb6c1fb5b2f828f9bb90782bd0b01c399.tar.gz
emacs-690c678fb6c1fb5b2f828f9bb90782bd0b01c399.zip
Fix comment-empty-lines docstring (bug#35152)
* lisp/newcomment.el (comment-empty-lines): Consistently use US commas in docstring. Fix indentation of and typo in custom :type.
-rw-r--r--lisp/newcomment.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index bb371c5d7ab..9d919ccbbea 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -327,11 +327,11 @@ behavior for explicit filling, you might as well use \\[newline-and-indent]."
327(defcustom comment-empty-lines nil 327(defcustom comment-empty-lines nil
328 "If nil, `comment-region' does not comment out empty lines. 328 "If nil, `comment-region' does not comment out empty lines.
329If t, it always comments out empty lines. 329If t, it always comments out empty lines.
330If `eol' it only comments out empty lines if comments are 330If `eol', it only comments out empty lines if comments are
331terminated by the end of line (i.e. `comment-end' is empty)." 331terminated by the end of line (i.e., `comment-end' is empty)."
332 :type '(choice (const :tag "Never" nil) 332 :type '(choice (const :tag "Never" nil)
333 (const :tag "Always" t) 333 (const :tag "Always" t)
334 (const :tag "EOl-terminated" eol)) 334 (const :tag "EOL-terminated" eol))
335 :group 'comment) 335 :group 'comment)
336 336
337;;;; 337;;;;