style: remove braces
This commit is contained in:
parent
abc6a16294
commit
58aabecb3d
1 changed files with 1 additions and 2 deletions
|
@ -194,9 +194,8 @@ skip_whitespace(LexState *ls)
|
|||
MaybeChr c;
|
||||
for (;;) {
|
||||
c = read_chr(ls);
|
||||
if (!c.ok) {
|
||||
if (!c.ok)
|
||||
return None(MaybeChr);
|
||||
}
|
||||
if (!ascii_isspace(c.val))
|
||||
break;
|
||||
++ls->lbegin;
|
||||
|
|
Loading…
Add table
Reference in a new issue