;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Created: 1996/2/29 (separated from tm-mh-e.el)
;; Renamed: 1997/2/21 from tmh-comp.el
-;; Version: $Id: emh-comp.el,v 0.1 1997-03-05 13:13:00 morioka Exp $
+;; Version: $Id: emh-comp.el,v 0.2 1997-03-07 14:25:21 morioka Exp $
;; Keywords: mail composing, MH, MIME, mail
;; This file is part of emh.
(catch 'tag
(let* ((from-folder mh-current-folder)
(config (current-window-configuration))
- code-conversion
(draft
(cond ((and mh-draft-folder (equal from-folder mh-draft-folder))
(let ((name (format "draft-%d" msg)))
(if (get-buffer name)
(throw 'tag (pop-to-buffer name))
)
- (let ((file-coding-system-for-read *noconv*)
- (filename
+ (let ((filename
(mh-msg-filename msg mh-draft-folder)
))
(set-buffer (get-buffer-create name))
- (insert-file-contents filename)
+ (as-binary-input-file (insert-file-contents filename))
(setq buffer-file-name filename)
- (setq code-conversion t)
)
(pop-to-buffer name)
(if (re-search-forward "^-+$" nil t)
)
name))
(t
- (prog1
- (let ((file-coding-system-for-read *noconv*))
- (mh-read-draft "clean-up" (mh-msg-filename msg) nil)
- )
- (setq code-conversion t)
- ))))
+ (as-binary-input-file
+ (mh-read-draft "clean-up" (mh-msg-filename msg) nil)
+ )
+ )))
)
(goto-char (point-min))
(mh-clean-msg-header (point-min) mh-new-draft-cleaned-headers nil)
- (if code-conversion
- (let ((cs (detect-coding-region (point-min)(point-max))))
- (set-buffer-file-coding-system
- (if (listp cs)
- (car cs)
- cs))
- ))
+ (let ((cs (detect-coding-region (point-min)(point-max))))
+ (set-buffer-file-coding-system
+ (if (listp cs)
+ (car cs)
+ cs)))
(save-buffer)
- (mime-edit-again code-conversion t t)
+ (mime-edit-again nil 'no-separator 'not-turn-on)
(goto-char (point-min))
(mh-compose-and-send-mail draft "" from-folder nil nil nil nil nil nil
config)