]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/xml.el (xml-name-char-re): Remove superfluous `-' in regexp.
authorMattias Engdegård <mattiase@acm.org>
Wed, 27 Mar 2019 12:34:13 +0000 (13:34 +0100)
committerMattias Engdegård <mattiase@acm.org>
Wed, 27 Mar 2019 12:39:33 +0000 (13:39 +0100)
lisp/xml.el

index 076291bbb0c5d1a8f4b515c3cd683e463d2e0ebd..44506b971aaf76c026e4ff4d0e0b178a7a7228ed 100644 (file)
@@ -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 "*"))