diff options
| author | Richard M. Stallman | 1995-05-09 00:49:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-05-09 00:49:04 +0000 |
| commit | e63b8030366768d9cb9d57f4560a456c6c00271f (patch) | |
| tree | 9a3359f3b64df327f7c5eae415c5516db0047cff | |
| parent | a2725ab226c2eac9367cef7bd245d447872c0575 (diff) | |
| download | emacs-e63b8030366768d9cb9d57f4560a456c6c00271f.tar.gz emacs-e63b8030366768d9cb9d57f4560a456c6c00271f.zip | |
(news-setup): Bind mail-signature to nil.
| -rw-r--r-- | lisp/mail/rnewspost.el | 8 |
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 |