aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2008-02-26 14:41:01 +0000
committerJan Djärv2008-02-26 14:41:01 +0000
commitf387c936a982f4a42d15ef378d9d8bfd345334ab (patch)
tree64bef9c43ee790f14830b40700552264fb5e44e9
parentf5c75940839d9a3190e24c3ccdb5ee79d1e6d48d (diff)
downloademacs-f387c936a982f4a42d15ef378d9d8bfd345334ab.tar.gz
emacs-f387c936a982f4a42d15ef378d9d8bfd345334ab.zip
(grep-mode-tool-bar-map): Change place on next
and previous.
-rw-r--r--lisp/progmodes/grep.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index ef147aa79e0..92c532f19d6 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -224,14 +224,14 @@ See `compilation-error-screen-columns'"
224 (if (display-graphic-p) 224 (if (display-graphic-p)
225 (let ((map (butlast (copy-keymap tool-bar-map))) 225 (let ((map (butlast (copy-keymap tool-bar-map)))
226 (help (last tool-bar-map))) ;; Keep Help last in tool bar 226 (help (last tool-bar-map))) ;; Keep Help last in tool bar
227 (tool-bar-local-item
228 "right-arrow" 'next-error-no-select 'next-error-no-select map
229 :rtl "left-arrow"
230 :help "Goto next match")
231 (tool-bar-local-item 227 (tool-bar-local-item
232 "left-arrow" 'previous-error-no-select 'previous-error-no-select map 228 "left-arrow" 'previous-error-no-select 'previous-error-no-select map
233 :rtl "right-arrow" 229 :rtl "right-arrow"
234 :help "Goto previous match") 230 :help "Goto previous match")
231 (tool-bar-local-item
232 "right-arrow" 'next-error-no-select 'next-error-no-select map
233 :rtl "left-arrow"
234 :help "Goto next match")
235 (tool-bar-local-item 235 (tool-bar-local-item
236 "cancel" 'kill-compilation 'kill-compilation map 236 "cancel" 'kill-compilation 'kill-compilation map
237 :help "Stop grep") 237 :help "Stop grep")