summaryrefslogtreecommitdiff
path: root/lisp/gnus.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-11-17 13:41:50 +0000
committerRichard M. Stallman <rms@gnu.org>1993-11-17 13:41:50 +0000
commit9a22438281a5ada3643160988ae4e2203bddd0a7 (patch)
tree808f97a54bd4f9aa2f1572157d5e552601027bf9 /lisp/gnus.el
parent2555cdec34077bd8f6bec119eeb92c42e4b10b3c (diff)
downloademacs-9a22438281a5ada3643160988ae4e2203bddd0a7.tar.gz
(gnus-summary-save-in-mail): Use rmail-output
if the file is not an Rmail file.
Diffstat (limited to 'lisp/gnus.el')
-rw-r--r--lisp/gnus.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus.el b/lisp/gnus.el
index 3d72dfcae11..e06288db874 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -2,7 +2,7 @@
;; Copyright (C) 1987, 1988, 1989, 1990, 1993 Free Software Foundation, Inc.
;; Author: Masanobu UMEDA <umerin@mse.kyutech.ac.jp>
-;; Version: $Header: /home/fsf/rms/e19/lisp/RCS/gnus.el,v 1.28 1993/11/15 01:06:24 rms Exp rms $
+;; Version: $Header: /home/fsf/rms/e19/lisp/RCS/gnus.el,v 1.29 1993/11/16 10:47:27 rms Exp rms $
;; Keywords: news
;; This file is part of GNU Emacs.
@@ -3831,7 +3831,7 @@ is initialized from the SAVEDIR environment variable."
(gnus-make-directory (file-name-directory filename))
(if (and (file-readable-p filename) (rmail-file-p filename))
(gnus-output-to-rmail filename)
- (gnus-output-to-file filename))
+ (rmail-output filename 1 t t))
;; Remember the directory name to save articles.
(setq gnus-newsgroup-last-mail filename)
)))