diff options
| author | Richard M. Stallman | 2004-01-03 21:11:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-01-03 21:11:43 +0000 |
| commit | 05218277b6b0b822f5df90916ddfd48181d12ca0 (patch) | |
| tree | 665e284ec18658e21e1a23a23b3fab803e939816 /lisp | |
| parent | 756bb7366fda5751fe3a7d67d35572c29494c0c5 (diff) | |
| download | emacs-05218277b6b0b822f5df90916ddfd48181d12ca0.tar.gz emacs-05218277b6b0b822f5df90916ddfd48181d12ca0.zip | |
(grep-mode-map): Don't remap next-line, previous-line.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/grep.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 35a5780aa45..cb8fcf6e042 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -157,8 +157,9 @@ The following place holders should be present in the string: | |||
| 157 | (define-key map " " 'scroll-up) | 157 | (define-key map " " 'scroll-up) |
| 158 | (define-key map "\^?" 'scroll-down) | 158 | (define-key map "\^?" 'scroll-down) |
| 159 | 159 | ||
| 160 | (define-key map [remap next-line] 'compilation-next-error) | 160 | ;; This is intolerable -- rms |
| 161 | (define-key map [remap previous-line] 'compilation-previous-error) | 161 | ;;; (define-key map [remap next-line] 'compilation-next-error) |
| 162 | ;;; (define-key map [remap previous-line] 'compilation-previous-error) | ||
| 162 | 163 | ||
| 163 | (define-key map "\r" 'compile-goto-error) ;; ? | 164 | (define-key map "\r" 'compile-goto-error) ;; ? |
| 164 | (define-key map "n" 'next-error-no-select) | 165 | (define-key map "n" 'next-error-no-select) |