From 3aad80451063ec21c2ae6c059b17cbe9980a778e Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 17 Jul 2002 11:33:09 +0000 Subject: [PATCH] (detect-coding-with-priority): Fix the place of using `,' marker in backguote form. --- lisp/international/mule-util.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." "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") -- 2.39.5