X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=tm-orig.el;h=43e5ec5810d1b62950c5f358aaefe72dc468fb8c;hb=29e661110079bf0d047d34fa64f7a963d06b7522;hp=878d28173d09ac5cbb93a89b72e0223cf350cab8;hpb=c8d67b7f628b6e02157bbee9018bcf0ef9b4f16d;p=elisp%2Ftm.git diff --git a/tm-orig.el b/tm-orig.el index 878d281..43e5ec5 100644 --- a/tm-orig.el +++ b/tm-orig.el @@ -1,50 +1,71 @@ ;;; -;;; $Id: tm-orig.el,v 1.1 1994/07/29 22:08:59 morioka Exp morioka $ +;;; tm-orig.el --- tm definitions depended on FSF Original Emacs ;;; - -(provide 'tm-orig) - -;;; @ constants +;;; Copyright (C) 1995 Free Software Foundation, Inc. +;;; Copyright (C) 1994,1995,1996 MORIOKA Tomohiko +;;; +;;; Author: MORIOKA Tomohiko +;;; Version: +;;; $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). ;;; -(defconst lc-ascii 0) -(defconst lc-ltn1 0) +;;; 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) ;;; @ variables ;;; -(defvar mime/lc-charset-and-encoding-alist +(defvar mime/default-coding-system nil) + +(defvar mime/lc-charset-alist (list - (cons lc-ascii nil) - (cons lc-ltn1 '("ISO-8859-1" . "Q")) + (cons (list lc-ascii) "US-ASCII") + (cons (list lc-ascii lc-ltn1) "ISO-8859-1") )) -(defvar mime/latin-lc-list - (list lc-ascii lc-ltn1)) - -(defvar mime/decoding-charset-list '("US-ASCII" "ISO-8859-1")) +(defvar mime/unknown-charset "ISO-8859-1") ;;; @ functions ;;; -(defun mime/char-leading-char (chr) - (if (< chr 128) - lc-ascii - lc-ltn1)) - -(defun string-width (str) (length str)) -(defun char-bytes (chr) 1) -(defun char-width (chr) 1) - -(defun mime/decode-encoded-text (charset encoding str) - (if (member charset mime/decoding-charset-list) - (cond ((string-match "^B$" encoding) - (mime/base64-decode-string str)) - ((string-match "^Q$" encoding) - (mime/Quoted-Printable-decode-string str)) - (t (message "unknown encoding %s" encoding) - (concat "=?" charset "?" encoding "?" str "?=") - )) - (concat "=?" charset "?" encoding "?" str "?=") - )) +(defun mime/convert-string-to-emacs (charset str) + (if (or (string= "US-ASCII" charset) + (string= "ISO-8859-1" charset)) + str)) + +(defun mime/convert-string-from-emacs (str charset) + (if (or (string= charset "US-ASCII") + (string= charset "ISO-8859-1")) + str)) + +(defun mime/code-convert-region-to-emacs (beg end charset &optional encoding) + ) + + +;;; @ end +;;; + +(provide 'tm-orig) + +(run-hooks 'tm-orig-load-hook) + +;;; tm-orig.el ends here