aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Fogel2009-10-04 23:31:52 +0000
committerKarl Fogel2009-10-04 23:31:52 +0000
commit8559076d2072ba7dec9445368b7db66e520ada2d (patch)
tree5e87e4eb3a87bd45e57b35940bc9567e0d0fda88
parentd436f538ab9793888d43ed7a0520d233c628df0c (diff)
downloademacs-8559076d2072ba7dec9445368b7db66e520ada2d.tar.gz
emacs-8559076d2072ba7dec9445368b7db66e520ada2d.zip
(Info-bookmark-make-record): Document this function.
(Info-bookmark-jump): Document with a doc string, not just a comment. (Bug#4061)
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/info.el6
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a257addb19a..2f65655e4ab 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12009-10-04 Karl Fogel <kfogel@red-bean.com>
2
3 * info.el (Info-bookmark-make-record): Document this function.
4 (Info-bookmark-jump): Document with a doc string, not just a comment.
5 (Bug#4203)
6
12009-10-04 Chong Yidong <cyd@stupidchicken.com> 72009-10-04 Chong Yidong <cyd@stupidchicken.com>
2 8
3 * cedet/semantic.el (semantic-new-buffer-setup-functions): New 9 * cedet/semantic.el (semantic-new-buffer-setup-functions): New
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."
4769(declare-function bookmark-get-bookmark-record "bookmark" (bmk)) 4769(declare-function bookmark-get-bookmark-record "bookmark" (bmk))
4770 4770
4771(defun Info-bookmark-make-record () 4771(defun Info-bookmark-make-record ()
4772 "This implements the `bookmark-make-record-function' type (which see)
4773for Info nodes."
4772 `(,Info-current-node 4774 `(,Info-current-node
4773 ,@(bookmark-make-record-default 'point-only) 4775 ,@(bookmark-make-record-default 'point-only)
4774 (filename . ,Info-current-file) 4776 (filename . ,Info-current-file)
@@ -4777,8 +4779,8 @@ BUFFER is the buffer speedbar is requesting buttons for."
4777 4779
4778;;;###autoload 4780;;;###autoload
4779(defun Info-bookmark-jump (bmk) 4781(defun Info-bookmark-jump (bmk)
4780 ;; This implements the `handler' function interface for record type returned 4782 "This implements the `handler' function interface for the record
4781 ;; by `Info-bookmark-make-record', which see. 4783type returned by `Info-bookmark-make-record', which see."
4782 (let* ((file (bookmark-prop-get bmk 'filename)) 4784 (let* ((file (bookmark-prop-get bmk 'filename))
4783 (info-node (bookmark-prop-get bmk 'info-node)) 4785 (info-node (bookmark-prop-get bmk 'info-node))
4784 (buf (save-window-excursion ;FIXME: doesn't work with frames! 4786 (buf (save-window-excursion ;FIXME: doesn't work with frames!