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
M-<down-mouse-2>  push-button
M-<mouse-2>       push-button
M-RET             push-button
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)
    (define-key map "\M-\C-m" 'push-button)
    (define-key map [M-down-mouse-2] 'push-button)
    (define-key map [M-mouse-2] 'push-button)
    map)
  "Keymap for compilation-message buttons.")