comparison lisp/progmodes/compile.el @ 10268:84777124c262

(compilation-minor-mode-map): Bind C-m to compilation-goto-error.
author Richard M. Stallman <rms@gnu.org>
date Tue, 27 Dec 1994 03:47:06 +0000
parents f404f4123318
children a8379d78b06a
comparison
equal deleted inserted replaced
10267:60fc63eff6cb 10268:84777124c262
424 424
425 (defvar compilation-minor-mode-map 425 (defvar compilation-minor-mode-map
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)
432 (define-key map "\M-{" 'compilation-previous-file) 433 (define-key map "\M-{" 'compilation-previous-file)
433 (define-key map "\M-}" 'compilation-next-file) 434 (define-key map "\M-}" 'compilation-next-file)