Rewrote XMLParser error() function for the 5th time.

Bugfix: Ambiguous error message when parsing an unexpected header.

svn-id: r34819
This commit is contained in:
Vicent Marti 2008-10-18 10:11:35 +00:00
parent 1cc3ae04cd
commit a67c16c6f2
2 changed files with 34 additions and 40 deletions

View file

@ -406,7 +406,7 @@ protected:
_char = _stream->readByte();
}
return isspace(_char) != 0 || _char == '>' || _char == '=' || _char == '/' || _char == '?';
return isspace(_char) != 0 || _char == '>' || _char == '=' || _char == '/';
}
/**