From: Richard M. Stallman Date: Wed, 17 Nov 1993 13:41:50 +0000 (+0000) Subject: (gnus-summary-save-in-mail): Use rmail-output X-Git-Tag: emacs-19.34~10794 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9a22438281a5ada3643160988ae4e2203bddd0a7;p=emacs.git (gnus-summary-save-in-mail): Use rmail-output if the file is not an Rmail file. --- 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 -;; 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) )))