From: morioka Date: Tue, 1 Oct 1996 13:29:39 +0000 (+0000) Subject: (std11-parse-ascii-token): Use function X-Git-Tag: XEmacs-20_3-b27-viet~11 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fmu-cite.git;a=commitdiff_plain;h=cf41145aa52403400d13e9c8b91cae87f4e32397 (std11-parse-ascii-token): Use function `find-non-ascii-charset-string' instead of `find-charset-string'. --- diff --git a/std11-parse.el b/std11-parse.el index 7ac5387..681b8a0 100644 --- a/std11-parse.el +++ b/std11-parse.el @@ -5,7 +5,7 @@ ;; Author: MORIOKA Tomohiko ;; Keywords: mail, news, RFC 822, STD 11 ;; Version: -;; $Id: std11-parse.el,v 0.12 1996-09-03 09:49:49 morioka Exp $ +;; $Id: std11-parse.el,v 0.13 1996-10-01 13:29:39 morioka Exp $ ;; This file is part of tl (Tiny Library). @@ -27,8 +27,7 @@ ;;; Code: (require 'std11) - -(autoload 'find-charset-string "emu") +(require 'emu) ;;; @ lexical analyze @@ -164,7 +163,7 @@ (while (and lal (setq token (car lal)) (if (and (setq token-value (cdr token)) - (find-charset-string token-value) + (find-non-ascii-charset-string token-value) ) (setq token nil) (std11-ignored-token-p token)