From: Christoph Mallon Date: Tue, 16 Sep 2008 05:56:19 +0000 (+0000) Subject: Indentation. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8d455b3d08d4a8e44c268df135450bf441aeb75f;p=cparser Indentation. [r21990] --- diff --git a/parser.c b/parser.c index 1ccaffa..a4fae9d 100644 --- a/parser.c +++ b/parser.c @@ -696,18 +696,18 @@ static void type_error_incompatible(const char *msg, * If not, generate an error, eat the current statement, * and goto the end_error label. */ -#define expect(expected) \ - do { \ - if (UNLIKELY(token.type != (expected))) { \ - parse_error_expected(NULL, (expected), NULL); \ - add_anchor_token(expected); \ - eat_until_anchor(); \ - if (token.type == expected) \ - next_token(); \ - rem_anchor_token(expected); \ - goto end_error; \ - } \ - next_token(); \ +#define expect(expected) \ + do { \ + if (UNLIKELY(token.type != (expected))) { \ + parse_error_expected(NULL, (expected), NULL); \ + add_anchor_token(expected); \ + eat_until_anchor(); \ + if (token.type == expected) \ + next_token(); \ + rem_anchor_token(expected); \ + goto end_error; \ + } \ + next_token(); \ } while (0) static void set_scope(scope_t *new_scope)