projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29ec1e4
)
* lisp/xml.el (xml-name-char-re): Remove superfluous `-' in regexp.
author
Mattias Engdegård
<mattiase@acm.org>
Wed, 27 Mar 2019 12:34:13 +0000
(13:34 +0100)
committer
Mattias Engdegård
<mattiase@acm.org>
Wed, 27 Mar 2019 12:39:33 +0000
(13:39 +0100)
lisp/xml.el
patch
|
blob
|
history
diff --git
a/lisp/xml.el
b/lisp/xml.el
index 076291bbb0c5d1a8f4b515c3cd683e463d2e0ebd..44506b971aaf76c026e4ff4d0e0b178a7a7228ed 100644
(file)
--- 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 "*"))