aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-10-05 23:23:27 +0000
committerStefan Monnier2000-10-05 23:23:27 +0000
commit0a30c4c8f351b2bc6b3c523996f46a936c341245 (patch)
treeda42c582d6195bac8cb842455f7833e0ec9f143b
parentb262af48f21839fba4e66b0f9dd7258eea6d79f6 (diff)
downloademacs-0a30c4c8f351b2bc6b3c523996f46a936c341245.tar.gz
emacs-0a30c4c8f351b2bc6b3c523996f46a936c341245.zip
(gnus-summary-save-in-folder): Obey mh-lib-progs.
-rw-r--r--lisp/gnus/gnus-mh.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-mh.el b/lisp/gnus/gnus-mh.el
index f7377120a4a..a73e90b6ab3 100644
--- a/lisp/gnus/gnus-mh.el
+++ b/lisp/gnus/gnus-mh.el
@@ -67,7 +67,11 @@ Optional argument FOLDER specifies folder name."
67 t)))) 67 t))))
68 (errbuf (gnus-get-buffer-create " *Gnus rcvstore*")) 68 (errbuf (gnus-get-buffer-create " *Gnus rcvstore*"))
69 ;; Find the rcvstore program. 69 ;; Find the rcvstore program.
70 (exec-path (if mh-lib (cons mh-lib exec-path) exec-path))) 70 (exec-path (cond
71 ((and (boundp 'mh-lib-progs) mh-lib-progs)
72 (cons mh-lib-progs exec-path))
73 (mh-lib (cons mh-lib exec-path))
74 (t exec-path))))
71 (with-current-buffer gnus-original-article-buffer 75 (with-current-buffer gnus-original-article-buffer
72 (save-restriction 76 (save-restriction
73 (widen) 77 (widen)