summaryrefslogtreecommitdiff
path: root/src/ielr.c
diff options
context:
space:
mode:
authorJoel E. Denny <jdenny@clemson.edu>2009-08-28 03:46:37 -0400
committerJoel E. Denny <jdenny@clemson.edu>2009-08-28 08:04:11 -0400
commitf37495f6013afcfe355bb312215448d1b8b04bb2 (patch)
tree279fb3122c542f4ce1c922b5e7c02da0bca621ec /src/ielr.c
parent3a414bbfa049a2f6e0f497a230bd86fe96a87884 (diff)
downloadbison-f37495f6013afcfe355bb312215448d1b8b04bb2.tar.gz
%define: accept unquoted values.
* NEWS (2.5): Group all %define changes together, and document this one. Remove quotes in IELR and canonical LR entry. * doc/bison.texinfo: Remove quotes in most examples throughout. (Decl Summary): Update %define documentation. (Table of Symbols): Likewise. * src/ielr.c (LrType): Update documentation. * src/parse-gram.y (content.opt): Add production for ID. * tests/calc.at: Likewise. * tests/existing.at: Likewise. * tests/input.at: Likewise. * tests/local.at: Likewise. * tests/push.at: Likewise. * tests/reduce.at: Likewise. * tests/torture.at: Likewise. (cherry picked from commit cf499cff31eabd04e37107484647bdd453137d1d) Conflicts: doc/bison.texinfo src/parse-gram.c src/parse-gram.h tests/actions.at tests/calc.at
Diffstat (limited to 'src/ielr.c')
-rw-r--r--src/ielr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ielr.c b/src/ielr.c
index 399d53be..657c3a1d 100644
--- a/src/ielr.c
+++ b/src/ielr.c
@@ -35,7 +35,7 @@
#include "state.h"
#include "symtab.h"
-/** Records the value of the \%define variable "lr.type". */
+/** Records the value of the \%define variable lr.type. */
typedef enum { LR_TYPE__LALR, LR_TYPE__IELR, LR_TYPE__CANONICAL_LR } LrType;
/**