Mercurial > emacs
changeset 10268:84777124c262
(compilation-minor-mode-map): Bind C-m to compilation-goto-error.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 27 Dec 1994 03:47:06 +0000 |
parents | 60fc63eff6cb |
children | 988517b0b62a |
files | lisp/progmodes/compile.el |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/compile.el Tue Dec 27 03:45:46 1994 +0000 +++ b/lisp/progmodes/compile.el Tue Dec 27 03:47:06 1994 +0000 @@ -426,6 +426,7 @@ (let ((map (make-sparse-keymap))) (define-key map [mouse-2] 'compile-mouse-goto-error) (define-key map "\C-c\C-c" 'compile-goto-error) + (define-key map "\C-m" 'compile-goto-error) (define-key map "\C-c\C-k" 'kill-compilation) (define-key map "\M-n" 'compilation-next-error) (define-key map "\M-p" 'compilation-previous-error)