(ctext-post-read-conversion): Use assoc-string, not assoc-ignore-case.
This commit is contained in:
parent
f15466c5d8
commit
c12bc1fbd8
1 changed files with 2 additions and 2 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue