From e206a15582c3ee6bff8bc1740d6dd88427f7d46e Mon Sep 17 00:00:00 2001 From: shuhei-k Date: Fri, 3 Oct 1997 11:55:48 +0000 Subject: [PATCH] (mime-article/extract-file): Use `write-region'. --- mime-file.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mime-file.el b/mime-file.el index fa2e692..caf4832 100644 --- a/mime-file.el +++ b/mime-file.el @@ -4,7 +4,7 @@ ;; Author: MORIOKA Tomohiko ;; modified by Shuhei KOBAYASHI -;; Version: $Id: mime-file.el,v 0.2 1997-05-12 12:28:38 morioka Exp $ +;; Version: $Id: mime-file.el,v 0.3 1997-10-03 11:55:48 shuhei-k Exp $ ;; Keywords: file, extract, MIME, multimedia, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -63,7 +63,7 @@ jka-compr-compression-info-list ; for jka-compr jam-zcat-filename-list ; for jam-zcat require-final-newline) - (write-file filename) + (write-region (point-min)(point-max) filename) ) (kill-buffer tmp-buf) ))) -- 1.7.10.4