Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
041d65a0
Commit
041d65a0
authored
Mar 27, 2019
by
Mattias Engdegård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lisp/xml.el (xml-name-char-re): Remove superfluous `-' in regexp.
parent
29ec1e48
Pipeline
#1091
failed with stage
in 50 minutes and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/xml.el
lisp/xml.el
+1
-1
No files found.
lisp/xml.el
View file @
041d65a0
...
...
@@ -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
"*"
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment