From: Eli Zaretskii Date: Sat, 15 Aug 2015 08:26:36 +0000 (+0300) Subject: Add doc strings to 2 help-mode.el functions X-Git-Tag: emacs-25.0.90~1373^2~24 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5bbc55fcdb050e421286a6f9e51c7732cbf6eebe;p=emacs.git Add doc strings to 2 help-mode.el functions * lisp/help-mode.el (help-mode-setup, help-mode-finish): Add doc strings. (Bug#21263) --- diff --git a/lisp/help-mode.el b/lisp/help-mode.el index e1fc9fd1984..37847e20279 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -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))))