A few stylistic tweaks

- `goto free_romx` -> the more typical `goto cleanup`
- `goto fail` -> the more typical `goto finish`
- Remove a redundant `todo` variable
This commit is contained in:
Rangi
2021-11-17 23:51:40 -05:00
parent e5552e27f2
commit efccf6c931
3 changed files with 14 additions and 17 deletions

View File

@@ -2257,8 +2257,8 @@ static int skipIfBlock(bool toEndc)
}
} while (!atLineStart);
}
finish:
finish:
lexerState->disableMacroArgs = false;
lexerState->disableInterpolation = false;
lexerState->atLineStart = false;
@@ -2344,8 +2344,8 @@ static int yylex_SKIP_TO_ENDR(void)
}
} while (!atLineStart);
}
finish:
finish:
lexerState->disableMacroArgs = false;
lexerState->disableInterpolation = false;
lexerState->atLineStart = false;