(ctext-post-read-conversion): Use assoc-string, not assoc-ignore-case.

This commit is contained in:
Richard M. Stallman 2004-04-21 19:17:03 +00:00
parent f15466c5d8
commit c12bc1fbd8

View 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)))