aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/international/mule.el4
1 files 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
1401 (let* ((M (char-after (+ pos 4))) 1401 (let* ((M (char-after (+ pos 4)))
1402 (L (char-after (+ pos 5))) 1402 (L (char-after (+ pos 5)))
1403 (encoding (match-string 2)) 1403 (encoding (match-string 2))
1404 (encoding-info (assoc-ignore-case 1404 (encoding-info (assoc-string
1405 encoding 1405 encoding
1406 ctext-non-standard-encodings-alist)) 1406 ctext-non-standard-encodings-alist t))
1407 (coding (if encoding-info 1407 (coding (if encoding-info
1408 (nth 1 encoding-info) 1408 (nth 1 encoding-info)
1409 (setq encoding (intern (downcase encoding))) 1409 (setq encoding (intern (downcase encoding)))