From: tmorioka Date: Thu, 27 Feb 1997 08:42:17 +0000 (+0000) Subject: (find-non-ascii-charset-string): New inline-function; copied from X-Git-Tag: Hokutetsu-Ishikawa-new~250 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f64596751a5353b341efd1298f8e96d568266f43;p=elisp%2Fsemi.git (find-non-ascii-charset-string): New inline-function; copied from emu-e20.el. --- diff --git a/eword-encode.el b/eword-encode.el index 25b441c..997c6e3 100644 --- a/eword-encode.el +++ b/eword-encode.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko -;; Version: $Revision: 0.9 $ +;; Version: $Revision: 0.10 $ ;; Keywords: encoded-word, MIME, multilingual, header, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -30,12 +30,17 @@ (require 'mime-def) (require 'cl) +(defsubst find-non-ascii-charset-string (string) + "Return a list of charsets in the STRING except ascii." + (delq 'ascii (find-charset-string string)) + ) + ;;; @ version ;;; (defconst eword-encode-RCS-ID - "$Id: eword-encode.el,v 0.9 1997-02-24 10:07:33 tmorioka Exp $") + "$Id: eword-encode.el,v 0.10 1997-02-27 08:42:17 tmorioka Exp $") (defconst eword-encode-version (get-version-string eword-encode-RCS-ID))