From c12bc1fbd8f23c97b5488066abc32416df06fcf0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 21 Apr 2004 19:17:03 +0000 Subject: [PATCH] (ctext-post-read-conversion): Use assoc-string, not assoc-ignore-case. --- lisp/international/mule.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 8c95becaf21..de9d3ef8e2c 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -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))) -- 2.39.5