aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2002-07-17 11:33:09 +0000
committerKenichi Handa2002-07-17 11:33:09 +0000
commit3aad80451063ec21c2ae6c059b17cbe9980a778e (patch)
tree079aef583be18cfb9e3e8da52c237a0de6574404
parentbd552f3fd7d738f66a1232cd39a1a55b2e98a0e7 (diff)
downloademacs-3aad80451063ec21c2ae6c059b17cbe9980a778e.tar.gz
emacs-3aad80451063ec21c2ae6c059b17cbe9980a778e.zip
(detect-coding-with-priority): Fix the place of using `,' marker in
backguote form.
-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 ef4367ecf02..bbe07e99e58 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."
271 "Detect a coding system of the text between FROM and TO with PRIORITY-LIST. 271 "Detect a coding system of the text between FROM and TO with PRIORITY-LIST.
272PRIORITY-LIST is an alist of coding categories vs the corresponding 272PRIORITY-LIST is an alist of coding categories vs the corresponding
273coding systems ordered by priority." 273coding systems ordered by priority."
274 `(with-coding-priority ,(mapcar #'cdr priority-list) 274 `(with-coding-priority (mapcar #'cdr ,priority-list)
275 (detect-coding-region ,from ,to))) 275 (detect-coding-region ,from ,to)))
276(make-obsolete 'detect-coding-with-priority 276(make-obsolete 'detect-coding-with-priority
277 "Use with-coding-priority and detect-coding-region" "22.1") 277 "Use with-coding-priority and detect-coding-region" "22.1")