From: Richard M. Stallman Date: Tue, 27 Dec 1994 03:47:06 +0000 (+0000) Subject: (compilation-minor-mode-map): Bind C-m to compilation-goto-error. X-Git-Tag: emacs-19.34~5588 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e7ce12e6750bd4716759b22ca0fdcdb7a90f08d;p=emacs.git (compilation-minor-mode-map): Bind C-m to compilation-goto-error. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 69ca0b51fa2..5317aeb3b8c 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -426,6 +426,7 @@ Returns the compilation buffer created." (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)