]> git.eshelyaron.com Git - emacs.git/commitdiff
(gnus-summary-save-in-folder): Obey mh-lib-progs.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 5 Oct 2000 23:23:27 +0000 (23:23 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 5 Oct 2000 23:23:27 +0000 (23:23 +0000)
lisp/gnus/gnus-mh.el

index f7377120a4acb2fd423013dbd27b8053830ed35d..a73e90b6ab3cb438bd93c2c180c6da19020d2904 100644 (file)
@@ -67,7 +67,11 @@ Optional argument FOLDER specifies folder name."
                   t))))
        (errbuf (gnus-get-buffer-create " *Gnus rcvstore*"))
        ;; Find the rcvstore program.
-       (exec-path (if mh-lib (cons mh-lib exec-path) exec-path)))
+       (exec-path (cond
+                   ((and (boundp 'mh-lib-progs) mh-lib-progs)
+                    (cons mh-lib-progs exec-path))
+                   (mh-lib (cons mh-lib exec-path))
+                   (t exec-path))))
     (with-current-buffer gnus-original-article-buffer
       (save-restriction
        (widen)