From: morioka Date: Sun, 11 Jan 1998 17:23:13 +0000 (+0000) Subject: MEL 6.11. X-Git-Tag: mel-6_11~1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=abe34b4f5cb2f125b94b4047d288076d02173dbe;p=elisp%2Fflim.git MEL 6.11. --- diff --git a/mel-g.el b/mel-g.el index 1f50bd0..8f25b53 100644 --- a/mel-g.el +++ b/mel-g.el @@ -1,16 +1,16 @@ ;;; mel-g.el: Gzip64 encoder/decoder for GNU Emacs ;; Copyright (C) 1995,1996,1997 MORIOKA Tomohiko -;; Copyright (C) 1996 Shuhei KOBAYASHI +;; Copyright (C) 1996,1997 Shuhei KOBAYASHI ;; Author: Shuhei KOBAYASHI ;; modified by MORIOKA Tomohiko ;; Maintainer: Shuhei KOBAYASHI ;; Created: 1995/10/25 -;; Version: $Id: mel-g.el,v 6.1 1997/03/10 13:06:34 morioka Exp $ +;; Version: $Id: mel-g.el,v 6.2 1997/09/20 15:09:36 shuhei-k Exp $ ;; Keywords: Gzip64, base64, gzip, MIME -;; This file is not part of MEL (MIME Encoding Library) yet. +;; This file is part of MEL (MIME Encoding Library). ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as @@ -27,6 +27,11 @@ ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. +;;; Commentary: + +;;; NOTE: Gzip64 is an experimental Content-Transfer-Encoding and its +;;; use is STRONGLY DISCOURAGED except for private communication. + ;;; Code: (require 'emu) diff --git a/mel.el b/mel.el index f718a7a..41a91c7 100644 --- a/mel.el +++ b/mel.el @@ -5,7 +5,7 @@ ;; Author: MORIOKA Tomohiko ;; modified by Shuhei KOBAYASHI ;; Created: 1995/6/25 -;; Version: $Id: mel.el,v 6.10 1997/07/14 14:15:20 morioka Exp $ +;; Version: $Id: mel.el,v 6.11 1997/09/20 15:11:26 shuhei-k Exp $ ;; Keywords: MIME, Base64, Quoted-Printable, uuencode, gzip64 ;; This file is part of MEL (MIME Encoding Library). @@ -51,8 +51,9 @@ (defvar mime-encoding-method-alist '(("base64" . base64-encode-region) ("quoted-printable" . quoted-printable-encode-region) - ("x-uue" . uuencode-encode-region) - ("x-gzip64" . gzip64-encode-region) + ;; Not standard, their use is DISCOURAGED. + ;; ("x-uue" . uuencode-encode-region) + ;; ("x-gzip64" . gzip64-encode-region) ("7bit") ("8bit") ("binary") @@ -129,8 +130,9 @@ FUNCTION is region decoder.") (defvar mime-file-encoding-method-alist '(("base64" . base64-insert-encoded-file) ("quoted-printable" . quoted-printable-insert-encoded-file) - ("x-uue" . uuencode-insert-encoded-file) - ("x-gzip64" . gzip64-insert-encoded-file) + ;; Not standard, their use is DISCOURAGED. + ;; ("x-uue" . uuencode-insert-encoded-file) + ;; ("x-gzip64" . gzip64-insert-encoded-file) ("7bit" . insert-binary-file-contents-literally) ("8bit" . insert-binary-file-contents-literally) ("binary" . insert-binary-file-contents-literally)