1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

(detect-coding-with-priority): Fix the place of using `,' marker in

backguote form.
This commit is contained in:
Kenichi Handa 2002-07-17 11:33:09 +00:00
parent bd552f3fd7
commit 3aad804510

View file

@ -271,7 +271,7 @@ or one is an alias of the other."
"Detect a coding system of the text between FROM and TO with PRIORITY-LIST.
PRIORITY-LIST is an alist of coding categories vs the corresponding
coding systems ordered by priority."
`(with-coding-priority ,(mapcar #'cdr priority-list)
`(with-coding-priority (mapcar #'cdr ,priority-list)
(detect-coding-region ,from ,to)))
(make-obsolete 'detect-coding-with-priority
"Use with-coding-priority and detect-coding-region" "22.1")