aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMattias EngdegÄrd2020-02-28 22:13:45 +0100
committerMattias EngdegÄrd2020-02-28 22:39:41 +0100
commit6dc2ebe00e88d9fb6923bea9125700eb286726c7 (patch)
tree5036f23423dfdd8858ecad8e69e1193a2107d6d5 /lisp
parent5cca73dd82cc18322c88721f311f8e6a081849fa (diff)
downloademacs-6dc2ebe00e88d9fb6923bea9125700eb286726c7.tar.gz
emacs-6dc2ebe00e88d9fb6923bea9125700eb286726c7.zip
Fix overquoting in mule.el
* lisp/international/mule.el (sgml-xml-auto-coding-function): Remove accidental quote.
Diffstat (limited to 'lisp')
-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'."
2601 (detect-coding-region (point-min) size t))))) 2601 (detect-coding-region (point-min) size t)))))
2602 ;; Pure ASCII always comes back as undecided. 2602 ;; Pure ASCII always comes back as undecided.
2603 (if (memq detected 2603 (if (memq detected
2604 '(utf-8 'utf-8-with-signature 'utf-8-hfs undecided)) 2604 '(utf-8 utf-8-with-signature utf-8-hfs undecided))
2605 'utf-8 2605 'utf-8
2606 (warn "File contents detected as %s. 2606 (warn "File contents detected as %s.
2607 Consider adding an encoding attribute to the xml declaration, 2607 Consider adding an encoding attribute to the xml declaration,