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;
|
MaybeChr c;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
c = read_chr(ls);
|
c = read_chr(ls);
|
||||||
if (!c.ok) {
|
if (!c.ok)
|
||||||
return None(MaybeChr);
|
return None(MaybeChr);
|
||||||
}
|
|
||||||
if (!ascii_isspace(c.val))
|
if (!ascii_isspace(c.val))
|
||||||
break;
|
break;
|
||||||
++ls->lbegin;
|
++ls->lbegin;
|
||||||
|
|
Loading…
Add table
Reference in a new issue