# HG changeset patch # User Richard M. Stallman # Date 788500026 0 # Node ID 84777124c262da95f82164074caf56859f0f2a4a # Parent 60fc63eff6cbf12ee6f68a48b00c7e3ee0c1ec4d (compilation-minor-mode-map): Bind C-m to compilation-goto-error. diff -r 60fc63eff6cb -r 84777124c262 lisp/progmodes/compile.el --- 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)