;;; mel-g.el: Gzip64 encoder/decoder for GNU Emacs
-;; Copyright (C) 1995,1996,1997 MORIOKA Tomohiko
+;; Copyright (C) 1995,1996,1997,1998 MORIOKA Tomohiko
;; Copyright (C) 1996,1997 Shuhei KOBAYASHI
;; Author: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
;; modified by MORIOKA Tomohiko <morioka@jaist.ac.jp>
;; Maintainer: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
;; Created: 1995/10/25
-;; Version: $Id: mel-g.el,v 7.1 1997/11/06 16:08:20 morioka Exp $
;; Keywords: Gzip64, base64, gzip, MIME
;; This file is part of MEL (MIME Encoding Library).
(cdr gzip64-external-encoder))
)
+(defun gzip64-write-decoded-region (start end filename)
+ "Decode and write current region encoded by gzip64 into FILENAME.
+START and END are buffer positions."
+ (interactive
+ (list (region-beginning) (region-end)
+ (read-file-name "Write decoded region to file: ")))
+ (as-binary-process
+ (apply (function call-process-region)
+ start end (car gzip64-external-decoder)
+ nil nil nil
+ (let ((args (cdr gzip64-external-decoder)))
+ (append (butlast args)
+ (list (concat (car (last args)) ">" filename))))
+ )))
+
;;; @ end
;;;