aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorBill Wohler2006-06-29 20:43:44 +0000
committerBill Wohler2006-06-29 20:43:44 +0000
commite0487df8766f3f91cbd08ed7857df2cca314f503 (patch)
tree0522ff0274f92a5689108ed7d560cc456098d9ca /lisp
parent62da23efc5f81feb82c972d69f433e92eefff528 (diff)
downloademacs-e0487df8766f3f91cbd08ed7857df2cca314f503.tar.gz
emacs-e0487df8766f3f91cbd08ed7857df2cca314f503.zip
(mh-mime-save-parts): Add -store option to mhn (closes SF #1513140).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mh-e/ChangeLog5
-rw-r--r--lisp/mh-e/mh-mime.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index a390589dd0f..ecb4f502ed9 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,3 +1,8 @@
12006-06-29 Sergey Poznyakoff <gray@Mirddin.farlep.net> (tiny change)
2
3 * mh-mime.el (mh-mime-save-parts): Add -store option to
4 mhn (closes SF #1513140).
5
12006-06-20 Bill Wohler <wohler@newt.com> 62006-06-20 Bill Wohler <wohler@newt.com>
2 7
3 Release MH-E version 8.0.1. 8 Release MH-E version 8.0.1.
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el
index c05e867a2b4..a66db002b6a 100644
--- a/lisp/mh-e/mh-mime.el
+++ b/lisp/mh-e/mh-mime.el
@@ -415,7 +415,9 @@ do the work."
415 (let ((initial-size (mh-truncate-log-buffer))) 415 (let ((initial-size (mh-truncate-log-buffer)))
416 (apply 'call-process 416 (apply 'call-process
417 (expand-file-name command mh-progs) nil t nil 417 (expand-file-name command mh-progs) nil t nil
418 (mh-list-to-string (list folder msg "-auto"))) 418 (mh-list-to-string (list folder msg "-auto"
419 (if (not (mh-variant-p 'nmh))
420 "-store"))))
419 (if (> (buffer-size) initial-size) 421 (if (> (buffer-size) initial-size)
420 (save-window-excursion 422 (save-window-excursion
421 (switch-to-buffer-other-window mh-log-buffer) 423 (switch-to-buffer-other-window mh-log-buffer)