From cf41145aa52403400d13e9c8b91cae87f4e32397 Mon Sep 17 00:00:00 2001 From: morioka Date: Tue, 1 Oct 1996 13:29:39 +0000 Subject: [PATCH] (std11-parse-ascii-token): Use function `find-non-ascii-charset-string' instead of `find-charset-string'. --- std11-parse.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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) -- 1.7.10.4