aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/xml.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/xml.el b/lisp/xml.el
index 767cf042846..10ef8e2087a 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -1032,7 +1032,8 @@ by https://www.w3.org/TR/xml/#charsets), signal an error of type
1032 (insert string) 1032 (insert string)
1033 (goto-char (point-min)) 1033 (goto-char (point-min))
1034 (when (re-search-forward 1034 (when (re-search-forward
1035 "[^\u0009\u000A\u000D\u0020-\uD7FF\uE000-\uFFFD\U00010000-\U0010FFFF]") 1035 "[^\u0009\u000A\u000D\u0020-\uD7FF\uE000-\uFFFD\U00010000-\U0010FFFF]"
1036 nil t)
1036 (signal 'xml-invalid-character (list (char-before) (match-beginning 0)))) 1037 (signal 'xml-invalid-character (list (char-before) (match-beginning 0))))
1037 (dolist (substitution '(("&" . "&") 1038 (dolist (substitution '(("&" . "&")
1038 ("<" . "&lt;") 1039 ("<" . "&lt;")