summaryrefslogtreecommitdiff
path: root/lisp/info.el
diff options
context:
space:
mode:
authorKarl Fogel <kfogel@red-bean.com>2009-10-04 23:31:52 +0000
committerKarl Fogel <kfogel@red-bean.com>2009-10-04 23:31:52 +0000
commit8559076d2072ba7dec9445368b7db66e520ada2d (patch)
tree5e87e4eb3a87bd45e57b35940bc9567e0d0fda88 /lisp/info.el
parentd436f538ab9793888d43ed7a0520d233c628df0c (diff)
downloademacs-8559076d2072ba7dec9445368b7db66e520ada2d.tar.gz
(Info-bookmark-make-record): Document this function.
(Info-bookmark-jump): Document with a doc string, not just a comment. (Bug#4061)
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 7ee5516aa45..db26bbd8b3e 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -4769,6 +4769,8 @@ BUFFER is the buffer speedbar is requesting buttons for."
(declare-function bookmark-get-bookmark-record "bookmark" (bmk))
(defun Info-bookmark-make-record ()
+ "This implements the `bookmark-make-record-function' type (which see)
+for Info nodes."
`(,Info-current-node
,@(bookmark-make-record-default 'point-only)
(filename . ,Info-current-file)
@@ -4777,8 +4779,8 @@ BUFFER is the buffer speedbar is requesting buttons for."
;;;###autoload
(defun Info-bookmark-jump (bmk)
- ;; This implements the `handler' function interface for record type returned
- ;; by `Info-bookmark-make-record', which see.
+ "This implements the `handler' function interface for the record
+type returned by `Info-bookmark-make-record', which see."
(let* ((file (bookmark-prop-get bmk 'filename))
(info-node (bookmark-prop-get bmk 'info-node))
(buf (save-window-excursion ;FIXME: doesn't work with frames!