]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-minor-mode-map): Bind C-m to compilation-goto-error.
authorRichard M. Stallman <rms@gnu.org>
Tue, 27 Dec 1994 03:47:06 +0000 (03:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 27 Dec 1994 03:47:06 +0000 (03:47 +0000)
lisp/progmodes/compile.el

index 69ca0b51fa2ee3bfb53b71d00f854e85f84e3c05..5317aeb3b8c33e14b88394cde85162ff3db8dbf4 100644 (file)
@@ -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)