1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-24 19:03:29 +00: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)