summaryrefslogtreecommitdiff
path: root/lisp/info.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-10-11 18:23:46 +0000
committerDave Love <fx@gnu.org>2000-10-11 18:23:46 +0000
commitec03f31ef879580e5eca043b6b49b9ba8b330c88 (patch)
treeddc3140a70808247f8dece4c39c70c7b1b580d0b /lisp/info.el
parenta818c1c04986cf4cae8015f0f4ef0132fee3f5b9 (diff)
downloademacs-ec03f31ef879580e5eca043b6b49b9ba8b330c88.tar.gz
(Info-mode-menu): Fix some help.
(info-tool-bar-map): Add entry for Info-last.
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el5
1 files changed, 3 insertions, 2 deletions
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)