mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-15 07:13:02 +00:00
style: syntax-check fixes
* data/yacc.c, src/Sbitset.c, src/Sbitset.h, src/muscle-tab.h, * src/output.c, src/parse-gram.y, src/reader.c, src/symtab.c, * src/uniqstr.c, src/uniqstr.h: Fix space before parens. * cfg.mk (_space_before_paren_exempt): Add needed exceptions.
This commit is contained in:
@@ -627,7 +627,7 @@ rhs:
|
||||
|
||||
named_ref.opt:
|
||||
%empty { $$ = 0; }
|
||||
| BRACKETED_ID { $$ = named_ref_new($1, @1); }
|
||||
| BRACKETED_ID { $$ = named_ref_new ($1, @1); }
|
||||
;
|
||||
|
||||
/*---------------------.
|
||||
@@ -750,7 +750,7 @@ lloc_default (YYLTYPE const *rhs, int n)
|
||||
static
|
||||
char *strip_braces (char *code)
|
||||
{
|
||||
code[strlen(code) - 1] = 0;
|
||||
code[strlen (code) - 1] = 0;
|
||||
return code + 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user