Merge pull request #10 from mmeyerho/master

Fixed an html-parsing crash caused by refactor
This commit is contained in:
Brian Anderson 2012-05-30 11:17:40 -07:00
commit f12af3c539

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;
}