aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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")