+2009-10-04 Karl Fogel <kfogel@red-bean.com>
+
+ * info.el (Info-bookmark-make-record): Document this function.
+ (Info-bookmark-jump): Document with a doc string, not just a comment.
+ (Bug#4203)
+
2009-10-04 Chong Yidong <cyd@stupidchicken.com>
* cedet/semantic.el (semantic-new-buffer-setup-functions): New
(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)
;;;###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!