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 | |
| parent | dfdbf5b691e7d7f21a9bacd27b4afdd86b13e04f (diff) | |
| download | emacs-7465ebefa222d793fb2d2dd3c2eddaace2021671.tar.gz emacs-7465ebefa222d793fb2d2dd3c2eddaace2021671.zip | |
(flyspell-mouse-map): Use `map' instead
of flyspell-mouse-map.
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 246fa78a463..62d3b0cadd7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2000-07-26 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead | ||
| 4 | of flyspell-mouse-map. | ||
| 5 | |||
| 6 | * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove | ||
| 7 | duplicate definition. | ||
| 8 | (makefile-mode): Remove duplicate setting of local-abbrev-table. | ||
| 9 | |||
| 10 | * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable. | ||
| 11 | (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table. | ||
| 12 | |||
| 1 | 2000-07-25 Sam Steingold <sds@gnu.org> | 13 | 2000-07-25 Sam Steingold <sds@gnu.org> |
| 2 | 14 | ||
| 3 | * net/ange-ftp.el: Get modtime over the net. | 15 | * net/ange-ftp.el: Get modtime over the net. |
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))) |