# HG changeset patch # User Dave Love # Date 955564120 0 # Node ID 3fb49903ed9da9e159c0ecf0cbbe6fe9485d4fdd # Parent 6f1d9b65d1f8e19f4b53deed1bd565c58af6b580 Add debug-ignored-errors. (Info-mode-menu): Add some items. (Info-directory): Add autoload cookie. diff -r 6f1d9b65d1f8 -r 3fb49903ed9d lisp/info.el --- a/lisp/info.el Wed Apr 12 18:26:04 2000 +0000 +++ b/lisp/info.el Wed Apr 12 18:28:40 2000 +0000 @@ -1136,6 +1136,7 @@ (setq Info-history (cdr Info-history)) (goto-char opoint))) +;;;###autoload (defun Info-directory () "Go to the Info directory node." (interactive) @@ -1893,14 +1894,33 @@ (easy-menu-define Info-mode-menu Info-mode-map "Menu for info files." '("Info" - ["Up" Info-up (Info-check-pointer "up")] - ["Next" Info-next (Info-check-pointer "next")] - ["Previous" Info-prev (Info-check-pointer "prev[ious]*")] + ["Up" Info-up (Info-check-pointer "up") + :help "Go up in the Info tree"] + ["Next" Info-next (Info-check-pointer "next") + :help "Go to the next node"] + ["Previous" Info-prev (Info-check-pointer "prev[ious]*") + :help "Go to the previous node"] + ["Backward" Info-backward-node t + :help "Go backward one node, considering all as a sequence"] + ["Forward" Info-forward-node t + :help "Go forward one node, considering all as a sequence"] + ["Top" Info-top-node t + :help "Go to top node of file"] + ["Final node" Info-final-node t + :help "Go to final node in this file"] ("Menu item" ["You should never see this" report-emacs-bug t]) ("Reference" ["You should never see this" report-emacs-bug t]) - ["Search..." Info-search t] - ["Goto node..." Info-goto-node t] - ["Last" Info-last Info-history] + ["Search..." Info-search t + :help "Search for regular expression in this Info file"] + ["Goto node..." Info-goto-node t + :help "Go to a named node]"] + ["Last" Info-last Info-history + :help "Go to the last node you were at"] + ("Index..." + ["Lookup a String" Info-index t + :help "Look for a string in the index items"] + ["Next Matching Item" Info-index-next t + :help "Look for another occurrence of previous item"]) ["Exit" Info-exit t])) (defvar Info-menu-last-node nil) @@ -2497,6 +2517,12 @@ (Info-speedbar-hierarchy-buttons nil 0) ) +(dolist (mess '("^Node has no Previous$" + "^No menu in this node$" + "^Node has no Next$" + "^No \".*\" in index$")) + (add-to-list 'debug-ignored-errors mess)) + (provide 'info) ;;; info.el ends here