comparison lisp/info.el @ 32391:5c381664251f

(Info-mode-menu): Fix some help. (info-tool-bar-map): Add entry for Info-last.
author Dave Love <fx@gnu.org>
date Wed, 11 Oct 2000 18:23:46 +0000
parents c0b19a2770ca
children 5f2aedbe47b5
comparison
equal deleted inserted replaced
32390:22d3e64cc0c6 32391:5c381664251f
2001 ("Reference" ["You should never see this" report-emacs-bug t]) 2001 ("Reference" ["You should never see this" report-emacs-bug t])
2002 ["Search..." Info-search 2002 ["Search..." Info-search
2003 :help "Search for regular expression in this Info file"] 2003 :help "Search for regular expression in this Info file"]
2004 ["Goto Node..." Info-goto-node 2004 ["Goto Node..." Info-goto-node
2005 :help "Go to a named node"] 2005 :help "Go to a named node"]
2006 ["Last" Info-last Info-history 2006 ["Last" Info-last :active Info-history
2007 :help "Go to the last node you were at"] 2007 :help "Go to the last node you were at"]
2008 ("Index..." 2008 ("Index..."
2009 ["Lookup a String" Info-index 2009 ["Lookup a String" Info-index
2010 :help "Look for a string in the index items"] 2010 :help "Look for a string in the index items"]
2011 ["Next Matching Item" Info-index-next 2011 ["Next Matching Item" Info-index-next
2012 :help "Look for another occurrence of previous item"]) 2012 :help "Look for another occurrence of previous item"])
2013 ["Edit" Info-edit :help "Edit contents of this node" 2013 ["Edit" Info-edit :help "Edit contents of this node"
2014 :active Info-enable-edit] 2014 :active Info-enable-edit]
2015 ["Exit" Info-exit t])) 2015 ["Exit" Info-exit :help "Stop reading Info"]))
2016 2016
2017 2017
2018 (defvar info-tool-bar-map 2018 (defvar info-tool-bar-map
2019 (if (display-graphic-p) 2019 (if (display-graphic-p)
2020 (let ((tool-bar-map (make-sparse-keymap))) 2020 (let ((tool-bar-map (make-sparse-keymap)))
2021 (tool-bar-add-item-from-menu 'Info-exit "close" Info-mode-map) 2021 (tool-bar-add-item-from-menu 'Info-exit "close" Info-mode-map)
2022 (tool-bar-add-item-from-menu 'Info-prev "left_arrow" Info-mode-map) 2022 (tool-bar-add-item-from-menu 'Info-prev "left_arrow" Info-mode-map)
2023 (tool-bar-add-item-from-menu 'Info-next "right_arrow" Info-mode-map) 2023 (tool-bar-add-item-from-menu 'Info-next "right_arrow" Info-mode-map)
2024 (tool-bar-add-item-from-menu 'Info-up "up_arrow" Info-mode-map) 2024 (tool-bar-add-item-from-menu 'Info-up "up_arrow" Info-mode-map)
2025 (tool-bar-add-item-from-menu 'Info-last "undo" Info-mode-map)
2025 (tool-bar-add-item-from-menu 'Info-top-node "home" Info-mode-map) 2026 (tool-bar-add-item-from-menu 'Info-top-node "home" Info-mode-map)
2026 (tool-bar-add-item-from-menu 'Info-index "index" Info-mode-map) 2027 (tool-bar-add-item-from-menu 'Info-index "index" Info-mode-map)
2027 (tool-bar-add-item-from-menu 'Info-goto-node "jump_to" Info-mode-map) 2028 (tool-bar-add-item-from-menu 'Info-goto-node "jump_to" Info-mode-map)
2028 (tool-bar-add-item-from-menu 'Info-search "search" Info-mode-map) 2029 (tool-bar-add-item-from-menu 'Info-search "search" Info-mode-map)
2029 tool-bar-map))) 2030 tool-bar-map)))