summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2020-02-28 22:13:45 +0100
committerMattias EngdegÄrd <mattiase@acm.org>2020-02-28 22:39:41 +0100
commit6dc2ebe00e88d9fb6923bea9125700eb286726c7 (patch)
tree5036f23423dfdd8858ecad8e69e1193a2107d6d5
parent5cca73dd82cc18322c88721f311f8e6a081849fa (diff)
downloademacs-6dc2ebe00e88d9fb6923bea9125700eb286726c7.tar.gz
Fix overquoting in mule.el
* lisp/international/mule.el (sgml-xml-auto-coding-function): Remove accidental quote.
-rw-r--r--lisp/international/mule.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 66594791209..86f3d2a34bf 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -2601,7 +2601,7 @@ This function is intended to be added to `auto-coding-functions'."
(detect-coding-region (point-min) size t)))))
;; Pure ASCII always comes back as undecided.
(if (memq detected
- '(utf-8 'utf-8-with-signature 'utf-8-hfs undecided))
+ '(utf-8 utf-8-with-signature utf-8-hfs undecided))
'utf-8
(warn "File contents detected as %s.
Consider adding an encoding attribute to the xml declaration,