aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-29 04:35:25 +0000
committerRichard M. Stallman1993-05-29 04:35:25 +0000
commit06b6829433b0f41d4b896da10daa65116e50c4ec (patch)
treecd3dd5a0174222861e153b5a6e21c30d18a61f06
parent82c048a9199a7b4fd0f0fadc8fccc16be4680047 (diff)
downloademacs-06b6829433b0f41d4b896da10daa65116e50c4ec.tar.gz
emacs-06b6829433b0f41d4b896da10daa65116e50c4ec.zip
(send-mail-function): Use defvar. not defconst.
-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 e7a6f6f36c2..d12d77ed2c8 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -45,7 +45,7 @@ Delete these headers from old message when it's inserted in a reply.")
45 45
46;; Useful to set in site-init.el 46;; Useful to set in site-init.el
47;;;###autoload 47;;;###autoload
48(defconst send-mail-function 'sendmail-send-it "\ 48(defvar send-mail-function 'sendmail-send-it "\
49Function to call to send the current buffer as mail. 49Function to call to send the current buffer as mail.
50The headers are be delimited by a line which is `mail-header-separator'.") 50The headers are be delimited by a line which is `mail-header-separator'.")
51 51