#include "getargs.h"
#include "gram.h"
#include "muscle-tab.h"
+#include "named-ref.h"
#include "quotearg.h"
#include "reader.h"
#include "symlist.h"
-#include "named-ref.h"
#include "scan-gram.h"
#include "scan-code.h"
%token TAG "<tag>"
%token TAG_ANY "<*>"
%token TAG_NONE "<>"
-%token BRACKETED_ID "[id]"
+%token BRACKETED_ID "[identifier]"
%type <character> CHAR
%printer { fputs (char_name ($$), stderr); } CHAR
;
named_ref.opt:
- /* Nothing. */
- { $$ = 0; }
+ /* Nothing. */ { $$ = 0; }
|
- BRACKETED_ID
- { $$ = named_ref_new($1, @1); }
+ BRACKETED_ID { $$ = named_ref_new($1, @1); }
;