diff options
| author | Stefan Monnier | 2000-10-05 23:23:27 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-10-05 23:23:27 +0000 |
| commit | 0a30c4c8f351b2bc6b3c523996f46a936c341245 (patch) | |
| tree | da42c582d6195bac8cb842455f7833e0ec9f143b | |
| parent | b262af48f21839fba4e66b0f9dd7258eea6d79f6 (diff) | |
| download | emacs-0a30c4c8f351b2bc6b3c523996f46a936c341245.tar.gz emacs-0a30c4c8f351b2bc6b3c523996f46a936c341245.zip | |
(gnus-summary-save-in-folder): Obey mh-lib-progs.
| -rw-r--r-- | lisp/gnus/gnus-mh.el | 6 |
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) |