]> code.delx.au - gnu-emacs/commitdiff
(flyspell-mouse-map): Use `map' instead
authorGerd Moellmann <gerd@gnu.org>
Wed, 26 Jul 2000 13:05:03 +0000 (13:05 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 26 Jul 2000 13:05:03 +0000 (13:05 +0000)
of flyspell-mouse-map.

lisp/ChangeLog
lisp/textmodes/flyspell.el

index 246fa78a4635eaef614565c8efa31783a2576520..62d3b0cadd77299dc3dd713ff3cc4480db9dd38e 100644 (file)
@@ -1,3 +1,15 @@
+2000-07-26  Gerd Moellmann  <gerd@gnu.org>
+
+       * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
+       of flyspell-mouse-map.
+
+       * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
+       duplicate definition.
+       (makefile-mode): Remove duplicate setting of local-abbrev-table.
+
+       * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
+       (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
+
 2000-07-25  Sam Steingold  <sds@gnu.org>
 
        * net/ange-ftp.el: Get modtime over the net.
index 4b4442ed6766e2cf9b33c3dccc1c0c3aaab1097d..fe95b3faa59e0bd386a19ae55010e08d20382d1d 100644 (file)
@@ -340,7 +340,7 @@ property of the major mode name.")
      ((eq flyspell-emacs 'xemacs)
       (define-key map [(button2)]
       #'flyspell-correct-word/mouse-keymap)
-      (define-key flyspell-mouse-map "\M-\t" #'flyspell-auto-correct-word))
+      (define-key map "\M-\t" #'flyspell-auto-correct-word))
      (flyspell-use-local-map
       (define-key map [(mouse-2)] #'flyspell-correct-word/mouse-keymap)
       (define-key map "\M-\t" #'flyspell-auto-correct-word)))