]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail-mode): Don't set local-abbrev-table.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 2 Sep 2002 17:24:54 +0000 (17:24 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 2 Sep 2002 17:24:54 +0000 (17:24 +0000)
(mail-mode-abbrev-table): Set to text-mode-abbrev-table.

lisp/mail/sendmail.el

index 5fbb65587758de47dec37313c773d48d7c1244ae..7be8c973762c3dcf40d8c2b8566385110a609b2b 100644 (file)
@@ -473,6 +473,7 @@ actually occur.")
   :type 'hook
   :options '(footnote-mode))
 
+(defvar mail-mode-abbrev-table text-mode-abbrev-table)
 ;;;###autoload
 (define-derived-mode mail-mode text-mode "Mail"
   "Major mode for editing mail to be sent.
@@ -489,7 +490,6 @@ Here are commands that move to a header field (and create it if there isn't):
 \\[mail-sent-via]  mail-sent-via (add a Sent-via field for each To or CC).
 Turning on Mail mode runs the normal hooks `text-mode-hook' and
 `mail-mode-hook' (in that order)."
-  (setq local-abbrev-table text-mode-abbrev-table)
   (make-local-variable 'mail-reply-action)
   (make-local-variable 'mail-send-actions)
   (setq buffer-offer-save t)