]> git.eshelyaron.com Git - emacs.git/commitdiff
(Info-bookmark-make-record): Document this function.
authorKarl Fogel <kfogel@red-bean.com>
Sun, 4 Oct 2009 23:31:52 +0000 (23:31 +0000)
committerKarl Fogel <kfogel@red-bean.com>
Sun, 4 Oct 2009 23:31:52 +0000 (23:31 +0000)
(Info-bookmark-jump): Document with a doc string, not just a comment.
(Bug#4061)

lisp/ChangeLog
lisp/info.el

index a257addb19a887ce97cceb95bfdadc075440ba79..2f65655e4abe7911ad390a91e04989d9a6b4965a 100644 (file)
@@ -1,3 +1,9 @@
+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
index 7ee5516aa45577d2e99602784f8b21d1c3420f55..db26bbd8b3e0346ab546f175006ffb3ae8280526 100644 (file)
@@ -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!