diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-09-03 13:00:13 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-09-03 13:00:13 +0300 |
commit | fd59d131bb4fe60fe008156795c243ec6e1127b0 (patch) | |
tree | 9b65f930481355c5bc8fc289fa2e91eda5744d56 /lisp/simple.el | |
parent | b911cc52c93288b12c04cc5ad658a7ce01fe4991 (diff) | |
download | emacs-fd59d131bb4fe60fe008156795c243ec6e1127b0.tar.gz |
Fix rmail-forward.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index fe46e36fdac..499ffc1acb9 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -5727,6 +5727,11 @@ else the end of the last line. This function obeys RFC822." "^\\([:\n]\\|[^: \t\n]+[ \t\n]\\)" nil 'move) (goto-char (match-beginning 0)))) +;; Used by Rmail (e.g., rmail-forward). +(defvar mail-encode-mml nil + "If non-nil, mail-user-agent's `sendfunc' command should mml-encode +the outgoing message before sending it.") + (defun compose-mail (&optional to subject other-headers continue switch-function yank-action send-actions return-action) |