diff options
| author | Stefan Monnier | 2024-02-03 18:22:41 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2024-02-03 18:22:41 -0500 |
| commit | 4ebded3f5ee8617ac6b1debaa01706cd78206f39 (patch) | |
| tree | 6d888c9d679d5117561e44762a8dc253f2f00764 | |
| parent | ecf3488477c6a4382737b97698443fdf26db8bd1 (diff) | |
| download | emacs-4ebded3f5ee8617ac6b1debaa01706cd78206f39.tar.gz emacs-4ebded3f5ee8617ac6b1debaa01706cd78206f39.zip | |
* lisp/emacs-lisp/easy-mmode.el (easy-mmode--mode-docstring): Add comment
| -rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 05b23a86fc0..4fa05008dd8 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el | |||
| @@ -132,7 +132,7 @@ it is disabled.") | |||
| 132 | (string-replace "'" "\\='" (format "%S" getter))))) | 132 | (string-replace "'" "\\='" (format "%S" getter))))) |
| 133 | (let ((start (point))) | 133 | (let ((start (point))) |
| 134 | (insert argdoc) | 134 | (insert argdoc) |
| 135 | (when (fboundp 'fill-region) | 135 | (when (fboundp 'fill-region) ;Don't break bootstrap! |
| 136 | (fill-region start (point) 'left t)))) | 136 | (fill-region start (point) 'left t)))) |
| 137 | ;; Finally, insert the keymap. | 137 | ;; Finally, insert the keymap. |
| 138 | (when (and (boundp keymap-sym) | 138 | (when (and (boundp keymap-sym) |