From: Richard M. Stallman Date: Thu, 15 Dec 1994 15:23:49 +0000 (+0000) Subject: (sendmail-send-it): Don't convert S: to Subject:. X-Git-Tag: emacs-19.34~5681 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=476070a4d5a9fcb273b04de4606fd00a611ecb9f;p=emacs.git (sendmail-send-it): Don't convert S: to Subject:. --- diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 63b0b646c19..cde6c9e894c 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -491,10 +491,6 @@ the user from the mailer." ;;; (progn ;;; (forward-line 1) ;;; (insert "Sender: " (user-login-name) "\n"))) - ;; "S:" is an abbreviation for "Subject:". - (goto-char (point-min)) - (if (re-search-forward "^S:" delimline t) - (replace-match "Subject:")) ;; Don't send out a blank subject line (goto-char (point-min)) (if (re-search-forward "^Subject:[ \t]*\n" delimline t)