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 { loop {
alt self.get() { alt self.get() {
coe_char(c) { coe_char(c) {
if c.is_whitespace() { if !c.is_whitespace() {
self.unget(c); self.unget(c);
ret; ret;
} }