X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=mcs-e20.el;h=6d54a01ff37cdc20f6d6484b9c90d2b09c7d60c1;hb=aa798d204a904b8054634b37c9bcc6e9a7298fd5;hp=2903a0bd87bc2190dd022e5588a611d3e44bef55;hpb=82eede830876f8248598feefbbb008f50a6bb58c;p=elisp%2Fapel.git diff --git a/mcs-e20.el b/mcs-e20.el index 2903a0b..6d54a01 100644 --- a/mcs-e20.el +++ b/mcs-e20.el @@ -1,8 +1,8 @@ ;;; mcs-e20.el --- MIME charset implementation for Emacs 20.1 and 20.2 -;; Copyright (C) 1996,1997,1998 Free Software Foundation, Inc. +;; Copyright (C) 1996,1997,1998,1999 Free Software Foundation, Inc. -;; Author: MORIOKA Tomohiko +;; Author: MORIOKA Tomohiko ;; Keywords: emulation, compatibility, Mule ;; This file is part of APEL (A Portable Emacs Library). @@ -28,6 +28,11 @@ ;;; Code: +(eval-when-compile + (require 'static) + (require 'poem) + ) + (defsubst encode-mime-charset-region (start end charset &optional lbt) "Encode the text between START and END as MIME CHARSET." (let (cs) @@ -153,6 +158,22 @@ Return nil if corresponding MIME-charset is not found." dest) )) +(static-when (and (string= (decode-coding-string "\e.A\eN!" 'ctext) "\eN!") + (or (not (find-coding-system 'x-ctext)) + (coding-system-get 'x-ctext 'apel))) + (unless (find-coding-system 'x-ctext) + (make-coding-system + 'x-ctext 2 ?x + "Compound text based generic encoding for decoding unknown messages." + '((ascii t) (latin-iso8859-1 t) t t + nil ascii-eol ascii-cntl nil locking-shift single-shift nil nil nil + init-bol nil nil) + '((safe-charsets . t) + (mime-charset . x-ctext))) + (coding-system-put 'x-ctext 'apel t) + )) + + ;;; @ end ;;;