aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2002-09-02 17:24:54 +0000
committerStefan Monnier <[email protected]>2002-09-02 17:24:54 +0000
commit567bb3dd3aa79e63f67d6ec4b9508139a37a34f2 (patch)
tree0cffdc2b8db07fd40fe812cfc54e318a707da221 /lisp/mail
parentdba28077d303d2afb44f2b8ea05e99c935d1636f (diff)
(mail-mode): Don't set local-abbrev-table.
(mail-mode-abbrev-table): Set to text-mode-abbrev-table.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/sendmail.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 5fbb655877..7be8c97376 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -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)