diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2024-02-03 18:22:41 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2024-02-03 18:22:41 -0500 |
commit | 4ebded3f5ee8617ac6b1debaa01706cd78206f39 (patch) | |
tree | 6d888c9d679d5117561e44762a8dc253f2f00764 /lisp/emacs-lisp | |
parent | ecf3488477c6a4382737b97698443fdf26db8bd1 (diff) | |
download | emacs-4ebded3f5ee8617ac6b1debaa01706cd78206f39.tar.gz emacs-4ebded3f5ee8617ac6b1debaa01706cd78206f39.tar.bz2 emacs-4ebded3f5ee8617ac6b1debaa01706cd78206f39.zip |
* lisp/emacs-lisp/easy-mmode.el (easy-mmode--mode-docstring): Add comment
Diffstat (limited to 'lisp/emacs-lisp')
-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.") (string-replace "'" "\\='" (format "%S" getter))))) (let ((start (point))) (insert argdoc) - (when (fboundp 'fill-region) + (when (fboundp 'fill-region) ;Don't break bootstrap! (fill-region start (point) 'left t)))) ;; Finally, insert the keymap. (when (and (boundp keymap-sym) |