1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 06:31:13 -08:00

(compilation-minor-mode-map): Bind C-m to compilation-goto-error.

This commit is contained in:
Richard M. Stallman 1994-12-27 03:47:06 +00:00
parent cffe0c02fb
commit 4e7ce12e67

View 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)