Variable: flyspell-mouse-map

flyspell-mouse-map is a variable defined in flyspell.el.gz.

Value

<mouse-2>  flyspell-correct-word

Documentation

Keymap for Flyspell to put on erroneous words.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
;;*---------------------------------------------------------------------*/
;;*    The minor mode declaration.                                      */
;;*---------------------------------------------------------------------*/
(defvar flyspell-mouse-map
  (let ((map (make-sparse-keymap)))
    (define-key map [mouse-2] 'flyspell-correct-word)
    map)
  "Keymap for Flyspell to put on erroneous words.")