diff options
| author | Lars Ingebrigtsen | 2016-04-29 23:25:07 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-04-29 23:25:07 +0200 |
| commit | 323b69664914d687fd4b48593479cea223dfbcb4 (patch) | |
| tree | 541ffdb431f35c1537053236b38c5f6993cadbee | |
| parent | 552e90ce7dff3a7107243fdf71c4de3af443e13a (diff) | |
| download | emacs-323b69664914d687fd4b48593479cea223dfbcb4.tar.gz emacs-323b69664914d687fd4b48593479cea223dfbcb4.zip | |
Wrap the auto-generated doc string
* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Wrap a
string to make it less likely that we get overlong lines
(bug#17999).
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 46d5d0d4f59..38295c302ea 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -253,7 +253,8 @@ Use the command `%s' to change this variable." pretty-name mode)) | |||
| 253 | (t | 253 | (t |
| 254 | (let ((base-doc-string | 254 | (let ((base-doc-string |
| 255 | (concat "Non-nil if %s is enabled. | 255 | (concat "Non-nil if %s is enabled. |
| 256 | See the command `%s' for a description of this minor mode." | 256 | See the `%s' command |
| 257 | for a description of this minor mode." | ||
| 257 | (if body " | 258 | (if body " |
| 258 | Setting this variable directly does not take effect; | 259 | Setting this variable directly does not take effect; |
| 259 | either customize it (see the info node `Easy Customization') | 260 | either customize it (see the info node `Easy Customization') |