Patch to Oga Upstream to fix "Oga Parser doesn't handle dots in XML Tags". Fixes rubyjedi/soap4r#7
This commit is contained in:
parent
71960fff87
commit
b7771ed5fe
|
@ -48,7 +48,7 @@
|
|||
|
||||
newline = '\r\n' | '\n' | '\r';
|
||||
whitespace = [ \t];
|
||||
ident_char = [a-zA-Z0-9\-_];
|
||||
ident_char = [a-zA-Z0-9\-_\.];
|
||||
identifier = ident_char+;
|
||||
|
||||
whitespace_or_newline = whitespace | newline;
|
||||
|
|
Loading…
Reference in New Issue