/* Bison Grammar Parser -*- C -*-
- Copyright (C) 2002-2013 Free Software Foundation, Inc.
+ Copyright (C) 2002-2014 Free Software Foundation, Inc.
This file is part of Bison, the GNU Compiler Compiler.
named_ref.opt:
%empty { $$ = 0; }
-| BRACKETED_ID { $$ = named_ref_new($1, @1); }
+| BRACKETED_ID { $$ = named_ref_new ($1, @1); }
;
/*---------------------.
static
char *strip_braces (char *code)
{
- code[strlen(code) - 1] = 0;
+ code[strlen (code) - 1] = 0;
return code + 1;
}