diff options
| author | Lars Ingebrigtsen | 2016-04-29 23:25:07 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-05-01 19:27:09 +0200 |
| commit | df6cee945677146600e5e171586921449a023e71 (patch) | |
| tree | 28f9adf46eb87d7ffc06257f6b751342eab70221 | |
| parent | dc960d9743d3a90a8e518431bb6b8e29fd49bd32 (diff) | |
| download | emacs-df6cee945677146600e5e171586921449a023e71.tar.gz emacs-df6cee945677146600e5e171586921449a023e71.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).
(cherry picked from commit 323b69664914d687fd4b48593479cea223dfbcb4)
| -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 6a4d835b63c..05229d2df04 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -252,7 +252,8 @@ Use the command `%s' to change this variable." pretty-name mode)) | |||
| 252 | (t | 252 | (t |
| 253 | (let ((base-doc-string | 253 | (let ((base-doc-string |
| 254 | (concat "Non-nil if %s is enabled. | 254 | (concat "Non-nil if %s is enabled. |
| 255 | See the command `%s' for a description of this minor mode." | 255 | See the `%s' command |
| 256 | for a description of this minor mode." | ||
| 256 | (if body " | 257 | (if body " |
| 257 | Setting this variable directly does not take effect; | 258 | Setting this variable directly does not take effect; |
| 258 | either customize it (see the info node `Easy Customization') | 259 | either customize it (see the info node `Easy Customization') |