changeset 88867:438e610d8d06

(detect-coding-with-priority): Fix the place of using `,' marker in backguote form.
author Kenichi Handa <handa@m17n.org>
date Wed, 17 Jul 2002 11:33:09 +0000
parents 012c455849bf
children 0fafee1d7770
files lisp/international/mule-util.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/international/mule-util.el	Wed Jul 17 11:32:51 2002 +0000
+++ b/lisp/international/mule-util.el	Wed Jul 17 11:33:09 2002 +0000
@@ -271,7 +271,7 @@
   "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")