Fixed parsing crash caused by refactored html parsing.

This commit is contained in:
Margaret Meyerhofer 2012-05-30 10:34:20 -07:00
parent a2174ba818
commit 546a7cdd45

View file

@ -114,7 +114,7 @@ impl util_methods for parser {
loop {
alt self.get() {
coe_char(c) {
if c.is_whitespace() {
if !c.is_whitespace() {
self.unget(c);
ret;
}