diff options
| author | Gerd Moellmann | 2000-07-26 13:05:03 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-07-26 13:05:03 +0000 |
| commit | 7465ebefa222d793fb2d2dd3c2eddaace2021671 (patch) | |
| tree | e27e945847adeca1bb21fca954461b099d7027a0 /lisp/textmodes | |
| parent | dfdbf5b691e7d7f21a9bacd27b4afdd86b13e04f (diff) | |
| download | emacs-7465ebefa222d793fb2d2dd3c2eddaace2021671.tar.gz emacs-7465ebefa222d793fb2d2dd3c2eddaace2021671.zip | |
(flyspell-mouse-map): Use `map' instead
of flyspell-mouse-map.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 4b4442ed676..fe95b3faa59 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -340,7 +340,7 @@ property of the major mode name.") | |||
| 340 | ((eq flyspell-emacs 'xemacs) | 340 | ((eq flyspell-emacs 'xemacs) |
| 341 | (define-key map [(button2)] | 341 | (define-key map [(button2)] |
| 342 | #'flyspell-correct-word/mouse-keymap) | 342 | #'flyspell-correct-word/mouse-keymap) |
| 343 | (define-key flyspell-mouse-map "\M-\t" #'flyspell-auto-correct-word)) | 343 | (define-key map "\M-\t" #'flyspell-auto-correct-word)) |
| 344 | (flyspell-use-local-map | 344 | (flyspell-use-local-map |
| 345 | (define-key map [(mouse-2)] #'flyspell-correct-word/mouse-keymap) | 345 | (define-key map [(mouse-2)] #'flyspell-correct-word/mouse-keymap) |
| 346 | (define-key map "\M-\t" #'flyspell-auto-correct-word))) | 346 | (define-key map "\M-\t" #'flyspell-auto-correct-word))) |