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

(compilation-mode-tool-bar-map): The same.

This commit is contained in:
Jan Djärv 2008-02-26 14:41:25 +00:00
parent f387c936a9
commit df1a5d7dde
2 changed files with 11 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2008-02-26 Jan Dj$(Q)Z(Brv <jan.h.d@swipnet.se>
* progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
and previous.
* progmodes/compile.el (compilation-mode-tool-bar-map): The same.
2008-02-26 Glenn Morris <rgm@gnu.org>
* net/net-utils.el (top-level): Don't require comint when compiling.

View file

@ -1382,14 +1382,14 @@ Returns the compilation buffer created."
(if (display-graphic-p)
(let ((map (butlast (copy-keymap tool-bar-map)))
(help (last tool-bar-map))) ;; Keep Help last in tool bar
(tool-bar-local-item
"right-arrow" 'next-error-no-select 'next-error-no-select map
:rtl "left-arrow"
:help "Goto next error")
(tool-bar-local-item
"left-arrow" 'previous-error-no-select 'previous-error-no-select map
:rtl "right-arrow"
:help "Goto previous error")
(tool-bar-local-item
"right-arrow" 'next-error-no-select 'next-error-no-select map
:rtl "left-arrow"
:help "Goto next error")
(tool-bar-local-item
"cancel" 'kill-compilation 'kill-compilation map
:help "Stop compilation")