summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2012-10-03 08:43:10 +0200
committerAkim Demaille <akim@lrde.epita.fr>2012-10-22 12:16:08 +0200
commitc473e022d9865ba35101de1b9045458f9be45057 (patch)
tree6f33f88316a53b4fce6bb991b55aac9a310fdb80
parent6192d2c6de859990f8e90c128de9733c1315db7a (diff)
downloadbison-c473e022d9865ba35101de1b9045458f9be45057.tar.gz
doc: add missing documentation for --report
* doc/bison.texi (Bison Options): Document --report's "solved", "all", and "none".
-rw-r--r--doc/bison.texi16
1 files changed, 13 insertions, 3 deletions
diff --git a/doc/bison.texi b/doc/bison.texi
index 69836112..ba18d9a9 100644
--- a/doc/bison.texi
+++ b/doc/bison.texi
@@ -9072,13 +9072,23 @@ separated list of @var{things} among:
Description of the grammar, conflicts (resolved and unresolved), and
parser's automaton.
+@item itemset
+Implies @code{state} and augments the description of the automaton with
+the full set of items for each state, instead of its core only.
+
@item lookahead
Implies @code{state} and augments the description of the automaton with
each rule's lookahead set.
-@item itemset
-Implies @code{state} and augments the description of the automaton with
-the full set of items for each state, instead of its core only.
+@item solved
+Implies @code{state}. Explain how conflicts were solved thanks to
+precedence and associativity directives.
+
+@item all
+Enable all the items.
+
+@item none
+Do not generate the report.
@end table
@item --report-file=@var{file}