Removed remaining fhold call in the XML lexer.
There's no particular need any more for this fhold call so we're getting rid of it.
This commit is contained in:
parent
4542f06d0f
commit
3a8582030d
|
@ -141,8 +141,8 @@
|
|||
# namespace (if any). Remaining work is delegated to a dedicated
|
||||
# machine.
|
||||
action start_element {
|
||||
fhold;
|
||||
fnext element_head;
|
||||
callback_simple("on_element_start");
|
||||
fnext element_name;
|
||||
}
|
||||
|
||||
# Machine used for lexing the name/namespace of an element.
|
||||
|
@ -166,11 +166,6 @@
|
|||
element_head := |*
|
||||
whitespace | '=';
|
||||
|
||||
'<' => {
|
||||
callback_simple("on_element_start");
|
||||
fnext element_name;
|
||||
};
|
||||
|
||||
newline => {
|
||||
callback_simple("on_newline");
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue