diff options
| author | Karoly Lorentey | 2004-01-05 05:58:50 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-01-05 05:58:50 +0000 |
| commit | 0221d2bfcbc9a3571fdbfbf3d8ad464aae4ffd24 (patch) | |
| tree | 7a66b701aaab5c7f676880174d5a2d4720871f87 /lisp/progmodes | |
| parent | 428a555ec5d5736a3eede739e9b42bd9d33b4364 (diff) | |
| parent | 17b337762fe7df77aa8a6dfcea0109a267bea83d (diff) | |
| download | emacs-0221d2bfcbc9a3571fdbfbf3d8ad464aae4ffd24.tar.gz emacs-0221d2bfcbc9a3571fdbfbf3d8ad464aae4ffd24.zip | |
Merged in changes from CVS HEAD
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-17
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-18
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-45
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/compile.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/grep.el | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 6d76fe3384a..de050411411 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -754,7 +754,7 @@ Returns the compilation buffer created." | |||
| 754 | compilation-directory-stack (list default-directory)) | 754 | compilation-directory-stack (list default-directory)) |
| 755 | (set-window-start outwin (point-min)) | 755 | (set-window-start outwin (point-min)) |
| 756 | (or (eq outwin (selected-window)) | 756 | (or (eq outwin (selected-window)) |
| 757 | (set-window-point outwin (point-min))) | 757 | (set-window-point outwin (point))) |
| 758 | ;; The setup function is called before compilation-set-window-height | 758 | ;; The setup function is called before compilation-set-window-height |
| 759 | ;; so it can set the compilation-window-height buffer locally. | 759 | ;; so it can set the compilation-window-height buffer locally. |
| 760 | (if compilation-process-setup-function | 760 | (if compilation-process-setup-function |
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) |