aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-05-09 00:49:04 +0000
committerRichard M. Stallman1995-05-09 00:49:04 +0000
commite63b8030366768d9cb9d57f4560a456c6c00271f (patch)
tree9a3359f3b64df327f7c5eae415c5516db0047cff
parenta2725ab226c2eac9367cef7bd245d447872c0575 (diff)
downloademacs-e63b8030366768d9cb9d57f4560a456c6c00271f.tar.gz
emacs-e63b8030366768d9cb9d57f4560a456c6c00271f.zip
(news-setup): Bind mail-signature to nil.
-rw-r--r--lisp/mail/rnewspost.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/mail/rnewspost.el b/lisp/mail/rnewspost.el
index 47dde4f0f99..8327fab3549 100644
--- a/lisp/mail/rnewspost.el
+++ b/lisp/mail/rnewspost.el
@@ -217,14 +217,16 @@ summary (abstract) of the message."
217 (mail-position-on-field "Summary")) 217 (mail-position-on-field "Summary"))
218 218
219(defun news-reply-signature () 219(defun news-reply-signature ()
220 "The inews program appends ~/.signature automatically." 220 "The inews program appends `~/.signature' automatically."
221 (interactive) 221 (interactive)
222 (message "~/.signature will be appended automatically.")) 222 (message "`~/.signature' will be appended automatically."))
223 223
224(defun news-setup (to subject in-reply-to newsgroups replybuffer) 224(defun news-setup (to subject in-reply-to newsgroups replybuffer)
225 "Set up the news reply or posting buffer with the proper headers and mode." 225 "Set up the news reply or posting buffer with the proper headers and mode."
226 (setq mail-reply-buffer replybuffer) 226 (setq mail-reply-buffer replybuffer)
227 (let ((mail-setup-hook nil)) 227 (let ((mail-setup-hook nil)
228 ;; Avoid inserting a signature.
229 (mail-signature))
228 (if (null to) 230 (if (null to)
229 ;; this hack is needed so that inews wont be confused by 231 ;; this hack is needed so that inews wont be confused by
230 ;; the fcc: and bcc: fields 232 ;; the fcc: and bcc: fields