aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/international/mule-util.el
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2002-07-17 11:33:09 +0000
committerKenichi Handa <[email protected]>2002-07-17 11:33:09 +0000
commit3aad80451063ec21c2ae6c059b17cbe9980a778e (patch)
tree079aef583be18cfb9e3e8da52c237a0de6574404 /lisp/international/mule-util.el
parentbd552f3fd7d738f66a1232cd39a1a55b2e98a0e7 (diff)
(detect-coding-with-priority): Fix the place of using `,' marker in
backguote form.
Diffstat (limited to 'lisp/international/mule-util.el')
-rw-r--r--lisp/international/mule-util.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el
index ef4367ecf0..bbe07e99e5 100644
--- a/lisp/international/mule-util.el
+++ b/lisp/international/mule-util.el
@@ -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")