Skip to content
Snippets Groups Projects
Commit 7850a62a authored by ilor's avatar ilor
Browse files

fix disamb_only-fix issue

parent edabc8fb
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,8 @@ void XmlReader::on_start_element(const Glib::ustring &name, ...@@ -77,7 +77,8 @@ void XmlReader::on_start_element(const Glib::ustring &name,
state_ = STATE_TAG; state_ = STATE_TAG;
grab_characters_ = true; grab_characters_ = true;
clear_buf(); clear_buf();
} else if (state_ == STATE_LEX_SKIP && name == "lex" || name == "base" || name == "ctag") { } else if (state_ == STATE_LEX_SKIP &&
(name == "lex" || name == "base" || name == "ctag")) {
//nop //nop
} else if (name == "ns") { } else if (name == "ns") {
wa_ = PwrNlp::Whitespace::None; wa_ = PwrNlp::Whitespace::None;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment