From 49c3ce64f092fd5434fc67056f312bd32f82bae3 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 11 Jul 2021 11:46:21 +0200 Subject: awk: rollback_token() + chain_group() == chain_until_rbrace() function old new delta parse_program 336 332 -4 Signed-off-by: Denys Vlasenko --- editors/awk.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'editors') diff --git a/editors/awk.c b/editors/awk.c index a440a62..755e68f 100644 --- a/editors/awk.c +++ b/editors/awk.c @@ -1778,8 +1778,7 @@ static void parse_program(char *p) cn->l.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_EOF | TC_LBRACE); if (t_tclass == TC_LBRACE) { debug_printf_parse("%s: TC_LBRACE\n", __func__); - rollback_token(); - chain_group(); + chain_until_rbrace(); } else { /* no action, assume default "{ print }" */ debug_printf_parse("%s: !TC_LBRACE\n", __func__); -- cgit v1.1