]> git.eshelyaron.com Git - emacs.git/commitdiff
(gnus-inews-do-fcc): Use mail-file-babyl-p.
authorRichard M. Stallman <rms@gnu.org>
Wed, 4 Oct 1995 20:02:20 +0000 (20:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 4 Oct 1995 20:02:20 +0000 (20:02 +0000)
lisp/gnuspost.el

index a4aa82bb7f8a3dc2215dcb79f9fd5094029e1845..441feb245d20269c52ac10bbeef5ab2af6d1c3f1 100644 (file)
@@ -628,7 +628,8 @@ a program specified by the rest of the value."
                 (if (and gnus-author-copy-saver
                          (not (eq gnus-author-copy-saver 'rmail-output)))
                     (funcall gnus-author-copy-saver fcc-file)
-                  (if (and (file-readable-p fcc-file) (rmail-file-p fcc-file))
+                  (if (and (file-readable-p fcc-file)
+                           (mail-file-babyl-p fcc-file))
                       (gnus-output-to-rmail fcc-file)
                     (rmail-output fcc-file 1 t t)))
                 ))