]> git.eshelyaron.com Git - emacs.git/commitdiff
(grep-mode-tool-bar-map): Change place on next
authorJan Djärv <jan.h.d@swipnet.se>
Tue, 26 Feb 2008 14:41:01 +0000 (14:41 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Tue, 26 Feb 2008 14:41:01 +0000 (14:41 +0000)
and previous.

lisp/progmodes/grep.el

index ef147aa79e0867d9256bb03e5b900d96e1c360bf..92c532f19d67bad2f78a620f02327cb7e2bc3d1c 100644 (file)
@@ -224,14 +224,14 @@ See `compilation-error-screen-columns'"
   (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 match")
        (tool-bar-local-item 
         "left-arrow" 'previous-error-no-select 'previous-error-no-select map
         :rtl "right-arrow"
         :help "Goto previous match")
+       (tool-bar-local-item
+        "right-arrow" 'next-error-no-select 'next-error-no-select map
+        :rtl "left-arrow"
+        :help "Goto next match")
        (tool-bar-local-item 
         "cancel" 'kill-compilation 'kill-compilation map
         :help "Stop grep")