aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)