diff options
| author | Bill Wohler | 2008-02-23 18:36:58 +0000 |
|---|---|---|
| committer | Bill Wohler | 2008-02-23 18:36:58 +0000 |
| commit | 0103690ed263ca1c44c45dac2fa94405923f5be1 (patch) | |
| tree | e1801a28e1a388e6da854f209130f35faf3fa6b1 | |
| parent | 9d95a291825060fc7a7448ae1edf2fc322a1703b (diff) | |
| download | emacs-0103690ed263ca1c44c45dac2fa94405923f5be1.tar.gz emacs-0103690ed263ca1c44c45dac2fa94405923f5be1.zip | |
(mh-send-letter): Call split-string on mh-send-args when sending
synchronously too.
| -rw-r--r-- | lisp/mh-e/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mh-e/mh-comp.el | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 93ae0478b2e..462f9384387 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-02-24 Bill Wohler <wohler@newt.com> | ||
| 2 | |||
| 3 | * mh-comp.el (mh-send-letter): Call split-string on mh-send-args | ||
| 4 | when sending synchronously too. | ||
| 5 | |||
| 1 | 2008-02-19 Bill Wohler <wohler@newt.com> | 6 | 2008-02-19 Bill Wohler <wohler@newt.com> |
| 2 | 7 | ||
| 3 | * mh-comp.el (mh-annotate-msg): | 8 | * mh-comp.el (mh-annotate-msg): |
diff --git a/lisp/mh-e/mh-comp.el b/lisp/mh-e/mh-comp.el index ef97796105b..69e5d1cfd03 100644 --- a/lisp/mh-e/mh-comp.el +++ b/lisp/mh-e/mh-comp.el | |||
| @@ -295,13 +295,15 @@ use `mh-send-prog' to tell MH-E the name." | |||
| 295 | (cond (arg | 295 | (cond (arg |
| 296 | (pop-to-buffer mh-mail-delivery-buffer) | 296 | (pop-to-buffer mh-mail-delivery-buffer) |
| 297 | (erase-buffer) | 297 | (erase-buffer) |
| 298 | (mh-exec-cmd-output mh-send-prog t "-watch" "-nopush" | 298 | (mh-exec-cmd-output mh-send-prog t |
| 299 | "-nodraftfolder" mh-send-args file-name) | 299 | "-nodraftfolder" "-watch" "-nopush" |
| 300 | (split-string mh-send-args) file-name) | ||
| 300 | (goto-char (point-max)) ; show the interesting part | 301 | (goto-char (point-max)) ; show the interesting part |
| 301 | (recenter -1) | 302 | (recenter -1) |
| 302 | (set-buffer draft-buffer)) ; for annotation below | 303 | (set-buffer draft-buffer)) ; for annotation below |
| 303 | (t | 304 | (t |
| 304 | (mh-exec-cmd-daemon mh-send-prog nil "-nodraftfolder" "-noverbose" | 305 | (mh-exec-cmd-daemon mh-send-prog nil |
| 306 | "-nodraftfolder" "-noverbose" | ||
| 305 | (split-string mh-send-args) file-name))) | 307 | (split-string mh-send-args) file-name))) |
| 306 | (if mh-annotate-char | 308 | (if mh-annotate-char |
| 307 | (mh-annotate-msg mh-sent-from-msg | 309 | (mh-annotate-msg mh-sent-from-msg |