projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8db2b2a
)
Add doc strings to 2 help-mode.el functions
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 15 Aug 2015 08:26:36 +0000
(11:26 +0300)
committer
Eli 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
patch
|
blob
|
history
diff --git
a/lisp/help-mode.el
b/lisp/help-mode.el
index e1fc9fd1984810e757dd0c53d2a7ce44ffa8c02e..37847e202792bb2fb8dac204ff705ec394d3e62b 100644
(file)
--- 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))))