From: Kenichi Handa Date: Wed, 17 Jul 2002 11:33:09 +0000 (+0000) Subject: (detect-coding-with-priority): Fix the place of using `,' marker in X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~557 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3aad80451063ec21c2ae6c059b17cbe9980a778e;p=emacs.git (detect-coding-with-priority): Fix the place of using `,' marker in backguote form. --- 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")