From 041d65a0451cba6f67ba9c032ef5cc8eaa36e852 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= <mattiase@acm.org>
Date: Wed, 27 Mar 2019 13:34:13 +0100
Subject: [PATCH] * lisp/xml.el (xml-name-char-re): Remove superfluous `-' in
 regexp.

---
 lisp/xml.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/xml.el b/lisp/xml.el
index 076291bbb0c..44506b971aa 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -180,7 +180,7 @@ See also `xml-get-attribute-or-nil'."
 
 ;; [4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7
 ;;                 | [#x0300-#x036F] | [#x203F-#x2040]
-(defconst xml-name-char-re (concat "[-0-9.[:word:]:_·̀-ͯ‿-⁀]"))
+(defconst xml-name-char-re (concat "[-0-9.[:word:]:_·̀-ͯ‿⁀]"))
 
 ;; [5] Name     ::= NameStartChar (NameChar)*
 (defconst xml-name-re (concat xml-name-start-char-re xml-name-char-re "*"))
-- 
2.39.5