1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-24 10:38:38 +00:00

(gnus-inews-do-fcc): Use mail-file-babyl-p.

This commit is contained in:
Richard M. Stallman 1995-10-04 20:02:20 +00:00
parent 5bcb027863
commit ee1323a2f5

View 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)))
))