X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=tm-orig.el;h=43e5ec5810d1b62950c5f358aaefe72dc468fb8c;hb=6c79137304c0b1d6e94fe8cb3a38f3aad50e0195;hp=aa02eb8841979324302da7320a3ee18fc7afa96b;hpb=2ea28a6a167b312d383a06f09f6e09ffc96d110d;p=elisp%2Ftm.git diff --git a/tm-orig.el b/tm-orig.el index aa02eb8..43e5ec5 100644 --- a/tm-orig.el +++ b/tm-orig.el @@ -2,15 +2,30 @@ ;;; tm-orig.el --- tm definitions depended on FSF Original Emacs ;;; ;;; Copyright (C) 1995 Free Software Foundation, Inc. -;;; Copyright (C) 1994,1995 MORIOKA Tomohiko +;;; Copyright (C) 1994,1995,1996 MORIOKA Tomohiko ;;; ;;; Author: MORIOKA Tomohiko ;;; Version: -;;; $Id: tm-orig.el,v 7.1 1995/10/03 04:52:16 morioka Exp $ +;;; $Id: tm-orig.el,v 7.6 1996/01/11 05:15:05 morioka Exp $ ;;; Keywords: mail, news, MIME, multimedia, multilingual, encoded-word ;;; ;;; This file is part of tm (Tools for MIME). ;;; +;;; This program is free software; you can redistribute it and/or +;;; modify it under the terms of the GNU General Public License as +;;; published by the Free Software Foundation; either version 2, or +;;; (at your option) any later version. +;;; +;;; This program is distributed in the hope that it will be useful, +;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;; General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with This program. If not, write to the Free Software +;;; Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;;; +;;; Code: (require 'emu) @@ -20,24 +35,13 @@ (defvar mime/default-coding-system nil) -(defvar mime/lc-charset-rule-list +(defvar mime/lc-charset-alist (list - (list (list lc-ascii) "US-ASCII" nil) - (list (list lc-ascii lc-ltn1) "ISO-8859-1" "Q") + (cons (list lc-ascii) "US-ASCII") + (cons (list lc-ascii lc-ltn1) "ISO-8859-1") )) -(defvar mime/decoding-charset-list '("US-ASCII" "ISO-8859-1")) - - -;;; @@ (obsolete) -;;; - -(defvar mime/lc-charset-and-encoding-alist - (list (cons lc-ascii nil) - (cons lc-ltn1 '("ISO-8859-1" . "Q")) - )) - -(defvar mime/latin-lc-list (list lc-ascii lc-ltn1)) +(defvar mime/unknown-charset "ISO-8859-1") ;;; @ functions @@ -63,3 +67,5 @@ (provide 'tm-orig) (run-hooks 'tm-orig-load-hook) + +;;; tm-orig.el ends here