Variable: compilation-button-map

compilation-button-map is a variable defined in compile.el.gz.

Value

<follow-link>  mouse-face
<mouse-2>      compile-goto-error
RET            compile-goto-error

Documentation

Keymap for compilation-message buttons.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defvar compilation-button-map
  (let ((map (make-sparse-keymap)))
    (define-key map [mouse-2] 'compile-goto-error)
    (define-key map [follow-link] 'mouse-face)
    (define-key map "\C-m" 'compile-goto-error)
    map)
  "Keymap for compilation-message buttons.")