mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Merge pull request #10 from mmeyerho/master
Fixed an html-parsing crash caused by refactor
This commit is contained in:
commit
f12af3c539
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue