From: Mattias Engdegård Date: Wed, 27 Mar 2019 12:34:13 +0000 (+0100) Subject: * lisp/xml.el (xml-name-char-re): Remove superfluous `-' in regexp. X-Git-Tag: emacs-27.0.90~3321 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=041d65a0451cba6f67ba9c032ef5cc8eaa36e852;p=emacs.git * lisp/xml.el (xml-name-char-re): Remove superfluous `-' in regexp. --- 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 "*"))