diff options
author | Martin Rudalics <rudalics@gmx.at> | 2015-08-19 11:33:25 +0200 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2015-08-19 11:33:25 +0200 |
commit | 7047d3642fb20955b83c1dfb3d5a70d869072731 (patch) | |
tree | d2b598a68f66fac41c4128145427e7ba640e601f | |
parent | 19cdde4aeadceb56b4ac08c69441fe52c6d2aa8f (diff) | |
download | emacs-7047d3642fb20955b83c1dfb3d5a70d869072731.tar.gz emacs-7047d3642fb20955b83c1dfb3d5a70d869072731.tar.bz2 emacs-7047d3642fb20955b83c1dfb3d5a70d869072731.zip |
Fix doc-string of `help-mode-finish'.
* lisp/help-mode.el (help-mode-finish): Fix doc-string.
-rw-r--r-- | lisp/help-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index 37847e20279..22e5386bedc 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -300,7 +300,7 @@ Commands: ;;;###autoload (defun help-mode-finish () - "Exit Help Mode in the current buffer." + "Finalize Help Mode setup in current buffer." (when (derived-mode-p 'help-mode) (setq buffer-read-only t) (help-make-xrefs (current-buffer)))) |