]> git.eshelyaron.com Git - emacs.git/commitdiff
(grep-mode-map): Don't remap next-line, previous-line.
authorRichard M. Stallman <rms@gnu.org>
Sat, 3 Jan 2004 21:11:43 +0000 (21:11 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 3 Jan 2004 21:11:43 +0000 (21:11 +0000)
lisp/progmodes/grep.el

index 35a5780aa451f17f948784e9484f984039345882..cb8fcf6e0422524673eec25f82e18a18c0d208f1 100644 (file)
@@ -157,8 +157,9 @@ The following place holders should be present in the string:
     (define-key map " " 'scroll-up)
     (define-key map "\^?" 'scroll-down)
 
-    (define-key map [remap next-line] 'compilation-next-error)
-    (define-key map [remap previous-line] 'compilation-previous-error)
+    ;; This is intolerable -- rms
+;;;    (define-key map [remap next-line] 'compilation-next-error)
+;;;    (define-key map [remap previous-line] 'compilation-previous-error)
 
     (define-key map "\r" 'compile-goto-error)  ;; ?
     (define-key map "n" 'next-error-no-select)