X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/b68e774421d1896baa27a022842b0fc62c2f06ed..f51cb8ff8c21e05f0139f723dc6d9018915fed7d:/ChangeLog

diff --git a/ChangeLog b/ChangeLog
index df10e43f..94275232 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,86 @@
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/options.h, src/options.c (create_long_option_table): Rename
+	as...
+	(long_option_table_new): this, with a clearer prototype.
+	(percent_table): Remove, unused,
+	* src/getargs.c (getargs): Adjust.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/LR0.c, src/conflicts.c, src/lalr.c, src/lalr.h, src/output.c
+	* src/print.c, src/print_graph.c, src/state.h: Rename state_table
+	as states.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/lalr.c (build_relations): Rename `states' as `states1'.
+	Sorry, I don't understand exactly what it is, no better name...
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/closure.c, src/conflicts.c, src/derives.c, src/gram.c
+	* src/gram.h, src/lalr.c, src/nullable.c, src/output.c, src/print.c
+	* src/print_graph.c, src/reader.c, src/reduce.c: Rename rule_table
+	as rules.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/gram.c (rprec, rprecsym, rassoc): Remove, unused since long
+	ago.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/reader.c, src/reader.h (user_toknums): Remove.
+	Adjust all users to use symbols[i]->user_token_number.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/gram.c, src/gram.h (sprec, sassoc): Remove.
+	Adjust all users to use symbols[i]->prec or ->assoc.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/reader.c, src/reader.h (tags): Remove.
+	Adjust all users to use symbols[i]->tag.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* src/gram.h, src/gram.c (symbols): New, similar to state_table
+	and rule_table.
+	* src/reader.c (packsymbols): Fill this table.
+	Drop sprec.
+	* src/conflicts.c (resolve_sr_conflict): Adjust.
+	* src/reduce.c (reduce_grammar): Adjust: just sort symbols, a
+	single table.
+	Use symbols[i]->tag instead of tags[i].
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* tests/calc.at (_AT_DATA_CALC_Y): Also use %union.
+	In addition, put a comment in there, to replace...
+	* tests/regression.at (%union and C comments): Remove.
+
+	
+2001-12-29  Akim Demaille  <akim@epita.fr>
+
+	* tests/regression.at (Web2c Actions): Blindly move the actual
+	output as expected output.  The contents *seem* right to me, but I
+	can't pretend reading perfectly parser tables...  Nonetheless, all
+	the other tests pass correctly, the table look OK, even though the
+	presence of `$axiom' is to be noted: AFAICS it is useless (but
+	harmless).
+
+	
 2001-12-29  Akim Demaille  <akim@epita.fr>
 
 	* src/reader.c (readgram): Don't add the rule 0 if there were no