]> git.eshelyaron.com Git - emacs.git/commitdiff
Add doc strings to 2 help-mode.el functions
authorEli Zaretskii <eliz@gnu.org>
Sat, 15 Aug 2015 08:26:36 +0000 (11:26 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 15 Aug 2015 08:26:36 +0000 (11:26 +0300)
* lisp/help-mode.el (help-mode-setup, help-mode-finish): Add doc
strings.  (Bug#21263)

lisp/help-mode.el

index e1fc9fd1984810e757dd0c53d2a7ce44ffa8c02e..37847e202792bb2fb8dac204ff705ec394d3e62b 100644 (file)
@@ -294,11 +294,13 @@ Commands:
 
 ;;;###autoload
 (defun help-mode-setup ()
+  "Enter Help Mode in the current buffer."
   (help-mode)
   (setq buffer-read-only nil))
 
 ;;;###autoload
 (defun help-mode-finish ()
+  "Exit Help Mode in the current buffer."
   (when (derived-mode-p 'help-mode)
     (setq buffer-read-only t)
     (help-make-xrefs (current-buffer))))