aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-22 06:38:28 +0000
committerRichard M. Stallman1993-11-22 06:38:28 +0000
commit49132687e709a70af89b8f53cedb1ce20e7184c9 (patch)
treeb15d7b099d5b99e474d0bf73122b7503f1254555
parent52320897b41eac2de0ed4d3b00e95cb702aa1fb1 (diff)
downloademacs-49132687e709a70af89b8f53cedb1ce20e7184c9.tar.gz
emacs-49132687e709a70af89b8f53cedb1ce20e7184c9.zip
(gnus-inews-do-fcc): Use gnus-output-to-rmail
if file is an rmail file. Pass extra args to rmail-output.
-rw-r--r--lisp/gnuspost.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/gnuspost.el b/lisp/gnuspost.el
index 53eac7ee2a6..cf7e18f57cc 100644
--- a/lisp/gnuspost.el
+++ b/lisp/gnuspost.el
@@ -3,7 +3,7 @@
3;; Copyright (C) 1989, 1990, 1993 Free Software Foundation, Inc. 3;; Copyright (C) 1989, 1990, 1993 Free Software Foundation, Inc.
4 4
5;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> 5;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
6;; Version: $Header: gnuspost.el,v 4.1 93/07/19 15:43:46 umerin Exp $ 6;; Version: $Header: /home/fsf/rms/e19/lisp/RCS/gnuspost.el,v 1.14 1993/07/20 04:25:04 rms Exp rms $
7;; Keywords: news 7;; Keywords: news
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
@@ -591,7 +591,11 @@ a program specified by the rest of the value."
591 (t 591 (t
592 ;; Suggested by hyoko@flab.fujitsu.junet. 592 ;; Suggested by hyoko@flab.fujitsu.junet.
593 ;; Save article in Unix mail format by default. 593 ;; Save article in Unix mail format by default.
594 (funcall (or gnus-author-copy-saver 'rmail-output) fcc-file) 594 (if gnus-author-copy-saver
595 (funcall gnus-author-copy-saver fcc-file)
596 (if (and (file-readable-p fcc-file) (rmail-file-p fcc-file))
597 (gnus-output-to-rmail fcc-file)
598 (rmail-output fcc-file 1 t t)))
595 )) 599 ))
596 ) 600 )
597 )) 601 ))