]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix comment-empty-lines docstring (bug#35152)
authorBasil L. Contovounesios <contovob@tcd.ie>
Thu, 4 Apr 2019 22:37:08 +0000 (23:37 +0100)
committerBasil L. Contovounesios <contovob@tcd.ie>
Thu, 4 Apr 2019 22:41:02 +0000 (23:41 +0100)
* lisp/newcomment.el (comment-empty-lines): Consistently use US
commas in docstring.  Fix indentation of and typo in custom :type.

lisp/newcomment.el

index bb371c5d7abe94454ca6dd206434292e3e4d6585..9d919ccbbea26e01c5fb7a6dbe09ae3911367a0c 100644 (file)
@@ -327,11 +327,11 @@ behavior for explicit filling, you might as well use \\[newline-and-indent]."
 (defcustom comment-empty-lines nil
   "If nil, `comment-region' does not comment out empty lines.
 If t, it always comments out empty lines.
-If `eol' it only comments out empty lines if comments are
-terminated by the end of line (i.e. `comment-end' is empty)."
+If `eol', it only comments out empty lines if comments are
+terminated by the end of line (i.e., `comment-end' is empty)."
   :type '(choice (const :tag "Never" nil)
-         (const :tag "Always" t)
-         (const :tag "EOl-terminated" eol))
+                 (const :tag "Always" t)
+                 (const :tag "EOL-terminated" eol))
   :group 'comment)
 
 ;;;;