+2002-10-08 John Paul Wallington <jpw@shootybangbang.com>
+
+ * info.el (Info-next-menu-item, Info-last-menu-item)
+ (info-emacs-manual): Add docstrings.
+ (Info-index): Use `string-to-number' instead of `string-to-int'.
+
2002-10-08 Kenichi Handa <handa@m17n.org>
* international/ucs-tables.el (ucs-translation-table-for-decode):
;;;###autoload
(defun info-emacs-manual ()
+ "Display the Emacs manual in Info mode."
(interactive)
(info "emacs"))
(quit-window)))
(defun Info-next-menu-item ()
+ "Go to the node of the next menu item."
(interactive)
;; Bind this in case the user sets it to nil.
(let* ((case-fold-search t)
(error "No more items in menu"))))
(defun Info-last-menu-item ()
+ "Go to the node of the previous menu item."
(interactive)
(save-excursion
(forward-line 1)
(search-forward "\n* Menu:"
current-point
t)))))
- (if (or virtual-end
+ (if (or virtual-end
(pos-visible-in-window-p (point-min) nil t))
(Info-last-preorder)
(scroll-down))))
(push (list (match-string-no-properties 1)
(match-string-no-properties 2)
Info-current-node
- (string-to-int (concat "0"
- (match-string 3))))
+ (string-to-number (concat "0"
+ (match-string 3))))
matches))
(and (setq node (Info-extract-pointer "next" t))
(string-match "\\<Index\\>" node)))