From: Dave Love Date: Wed, 11 Oct 2000 18:23:46 +0000 (+0000) Subject: (Info-mode-menu): Fix some help. X-Git-Tag: emacs-pretest-21.0.90~959 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec03f31ef879580e5eca043b6b49b9ba8b330c88;p=emacs.git (Info-mode-menu): Fix some help. (info-tool-bar-map): Add entry for Info-last. --- diff --git a/lisp/info.el b/lisp/info.el index b099fe2a15e..af7a9b10284 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2003,7 +2003,7 @@ If no reference to follow, moves to the next node, or up if none." :help "Search for regular expression in this Info file"] ["Goto Node..." Info-goto-node :help "Go to a named node"] - ["Last" Info-last Info-history + ["Last" Info-last :active Info-history :help "Go to the last node you were at"] ("Index..." ["Lookup a String" Info-index @@ -2012,7 +2012,7 @@ If no reference to follow, moves to the next node, or up if none." :help "Look for another occurrence of previous item"]) ["Edit" Info-edit :help "Edit contents of this node" :active Info-enable-edit] - ["Exit" Info-exit t])) + ["Exit" Info-exit :help "Stop reading Info"])) (defvar info-tool-bar-map @@ -2022,6 +2022,7 @@ If no reference to follow, moves to the next node, or up if none." (tool-bar-add-item-from-menu 'Info-prev "left_arrow" Info-mode-map) (tool-bar-add-item-from-menu 'Info-next "right_arrow" Info-mode-map) (tool-bar-add-item-from-menu 'Info-up "up_arrow" Info-mode-map) + (tool-bar-add-item-from-menu 'Info-last "undo" Info-mode-map) (tool-bar-add-item-from-menu 'Info-top-node "home" Info-mode-map) (tool-bar-add-item-from-menu 'Info-index "index" Info-mode-map) (tool-bar-add-item-from-menu 'Info-goto-node "jump_to" Info-mode-map)