1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(info-tool-bar-map): Use "exit" for Info-exit. Move to the right.

This commit is contained in:
Reiner Steib 2007-03-30 21:48:52 +00:00
parent 15279e7455
commit c2dbc5f2e8
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-03-30 Reiner Steib <Reiner.Steib@gmx.de>
* info.el (info-tool-bar-map): Use "exit" for Info-exit. Move to
the right.
2007-03-30 Alan Mackenzie <acm@muc.de>
* progmodes/cc-cmds.el (c-forward-to-nth-EOF-}): Fix EOB bug.

View file

@ -3244,7 +3244,6 @@ If FORK is non-nil, it i spassed to `Info-goto-node'."
(defvar info-tool-bar-map
(if (display-graphic-p)
(let ((map (make-sparse-keymap)))
(tool-bar-local-item-from-menu 'Info-exit "close" map Info-mode-map)
(tool-bar-local-item-from-menu 'Info-history-back "left-arrow" map Info-mode-map)
(tool-bar-local-item-from-menu 'Info-history-forward "right-arrow" map Info-mode-map)
(tool-bar-local-item-from-menu 'Info-prev "prev-node" map Info-mode-map)
@ -3254,6 +3253,7 @@ If FORK is non-nil, it i spassed to `Info-goto-node'."
(tool-bar-local-item-from-menu 'Info-goto-node "jump-to" map Info-mode-map)
(tool-bar-local-item-from-menu 'Info-index "index" map Info-mode-map)
(tool-bar-local-item-from-menu 'Info-search "search" map Info-mode-map)
(tool-bar-local-item-from-menu 'Info-exit "exit" map Info-mode-map)
map)))
(defvar Info-menu-last-node nil)