changeset 55048:e703f6cf2d7f

(ctext-post-read-conversion): Use assoc-string, not assoc-ignore-case.
author Richard M. Stallman <rms@gnu.org>
date Wed, 21 Apr 2004 19:17:03 +0000
parents 428f891f9e31
children 20627b978043
files lisp/international/mule.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/international/mule.el	Wed Apr 21 19:16:15 2004 +0000
+++ b/lisp/international/mule.el	Wed Apr 21 19:17:03 2004 +0000
@@ -1401,9 +1401,9 @@
 	      (let* ((M (char-after (+ pos 4)))
 		     (L (char-after (+ pos 5)))
 		     (encoding (match-string 2))
-		     (encoding-info (assoc-ignore-case 
+		     (encoding-info (assoc-string 
 				     encoding
-				     ctext-non-standard-encodings-alist))
+				     ctext-non-standard-encodings-alist t))
 		     (coding (if encoding-info
 				 (nth 1 encoding-info)
 			       (setq encoding (intern (downcase encoding)))