diff options
| author | Basil L. Contovounesios | 2019-04-04 23:37:08 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2019-04-11 11:41:45 +0100 |
| commit | 71be83ef8b413922c69e614bcc1d434ec7db68f6 (patch) | |
| tree | 880bf7b248bb615818666a54d7057c72bbca99bd | |
| parent | 559f64a0b6b6f915d26ada8283b74ab6bbfbf3b2 (diff) | |
| download | emacs-71be83ef8b413922c69e614bcc1d434ec7db68f6.tar.gz emacs-71be83ef8b413922c69e614bcc1d434ec7db68f6.zip | |
Backport: 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.
(cherry picked from commit 690c678fb6c1fb5b2f828f9bb90782bd0b01c399)
| -rw-r--r-- | lisp/newcomment.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 2c1ac9d8da3..335cbdd3366 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el | |||
| @@ -319,11 +319,11 @@ behavior for explicit filling, you might as well use \\[newline-and-indent]." | |||
| 319 | (defcustom comment-empty-lines nil | 319 | (defcustom comment-empty-lines nil |
| 320 | "If nil, `comment-region' does not comment out empty lines. | 320 | "If nil, `comment-region' does not comment out empty lines. |
| 321 | If t, it always comments out empty lines. | 321 | If t, it always comments out empty lines. |
| 322 | If `eol' it only comments out empty lines if comments are | 322 | If `eol', it only comments out empty lines if comments are |
| 323 | terminated by the end of line (i.e. `comment-end' is empty)." | 323 | terminated by the end of line (i.e., `comment-end' is empty)." |
| 324 | :type '(choice (const :tag "Never" nil) | 324 | :type '(choice (const :tag "Never" nil) |
| 325 | (const :tag "Always" t) | 325 | (const :tag "Always" t) |
| 326 | (const :tag "EOl-terminated" eol)) | 326 | (const :tag "EOL-terminated" eol)) |
| 327 | :group 'comment) | 327 | :group 'comment) |
| 328 | 328 | ||
| 329 | ;;;; | 329 | ;;;; |