aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorRichard M. Stallman1994-12-27 03:47:06 +0000
committerRichard M. Stallman1994-12-27 03:47:06 +0000
commit4e7ce12e6750bd4716759b22ca0fdcdb7a90f08d (patch)
tree87f28312cecd973d192d562e9e7b4ea141cdb660 /lisp/progmodes
parentcffe0c02fb68b3a63229ca66163ecdc21c95c1ef (diff)
downloademacs-4e7ce12e6750bd4716759b22ca0fdcdb7a90f08d.tar.gz
emacs-4e7ce12e6750bd4716759b22ca0fdcdb7a90f08d.zip
(compilation-minor-mode-map): Bind C-m to compilation-goto-error.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/compile.el1
1 files changed, 1 insertions, 0 deletions
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."
426 (let ((map (make-sparse-keymap))) 426 (let ((map (make-sparse-keymap)))
427 (define-key map [mouse-2] 'compile-mouse-goto-error) 427 (define-key map [mouse-2] 'compile-mouse-goto-error)
428 (define-key map "\C-c\C-c" 'compile-goto-error) 428 (define-key map "\C-c\C-c" 'compile-goto-error)
429 (define-key map "\C-m" 'compile-goto-error)
429 (define-key map "\C-c\C-k" 'kill-compilation) 430 (define-key map "\C-c\C-k" 'kill-compilation)
430 (define-key map "\M-n" 'compilation-next-error) 431 (define-key map "\M-n" 'compilation-next-error)
431 (define-key map "\M-p" 'compilation-previous-error) 432 (define-key map "\M-p" 'compilation-previous-error)