diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2005-11-17 18:18:33 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2005-11-17 18:18:33 +0000 |
commit | bcd8c291c117ad3518015d4dba3e6acaddf7d4ef (patch) | |
tree | ef8754b823c1e8fa9c9189bcb25d1e8fd392aa78 /lisp/simple.el | |
parent | 6586e9c94964b658cfa424c5a1c30516baaa974d (diff) | |
download | emacs-bcd8c291c117ad3518015d4dba3e6acaddf7d4ef.tar.gz emacs-bcd8c291c117ad3518015d4dba3e6acaddf7d4ef.tar.bz2 emacs-bcd8c291c117ad3518015d4dba3e6acaddf7d4ef.zip |
* simple.el (sendmail-user-agent-compose): Use hard-newline.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 1c8b997e675..2474df6c333 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4506,7 +4506,7 @@ See also `read-mail-command' concerning reading mail." (unless (member-ignore-case (car (car other-headers)) '("in-reply-to" "cc" "body")) (insert (car (car other-headers)) ": " - (cdr (car other-headers)) "\n")) + (cdr (car other-headers)) hard-newline)) (setq other-headers (cdr other-headers))) (when body (forward-line 1) |