diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-10-04 20:07:33 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-10-04 20:07:33 +0000 |
commit | 0e53683493a905c8efbcb90bb60d82adec30d020 (patch) | |
tree | d8a59993260205f8d77d81a76ce2bacdfd20f070 /lisp/gnus.el | |
parent | ee1323a2f508aee52c71e2fc7637370b556b9196 (diff) | |
download | emacs-0e53683493a905c8efbcb90bb60d82adec30d020.tar.gz |
(gnus-summary-save-in-mail): Use mail-file-babyl-p.
Diffstat (limited to 'lisp/gnus.el')
-rw-r--r-- | lisp/gnus.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus.el b/lisp/gnus.el index f9e1f7326b4..0a410e367d7 100644 --- a/lisp/gnus.el +++ b/lisp/gnus.el @@ -4077,7 +4077,7 @@ is initialized from the SAVEDIR environment variable." (and default-name (file-name-directory default-name)))) (gnus-make-directory (file-name-directory filename)) - (if (and (file-readable-p filename) (rmail-file-p filename)) + (if (and (file-readable-p filename) (mail-file-babyl-p filename)) (gnus-output-to-rmail filename) (rmail-output filename 1 t t)) ;; Remember the directory name to save articles. |