]> git.eshelyaron.com Git - emacs.git/commitdiff
(ctext-post-read-conversion): Use assoc-string, not assoc-ignore-case.
authorRichard M. Stallman <rms@gnu.org>
Wed, 21 Apr 2004 19:17:03 +0000 (19:17 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 21 Apr 2004 19:17:03 +0000 (19:17 +0000)
lisp/international/mule.el

index 8c95becaf2144c8a646c29e3926c5548d0b16bdb..de9d3ef8e2c18942f9930a44d66307f8c79e58da 100644 (file)
@@ -1401,9 +1401,9 @@ Each element must be one of the names listed in the variable
              (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)))