]> git.saurik.com Git - bison.git/blobdiff - ChangeLog
(hash_compare_symbol_t): (a ? FALSE : TRUE) -> (! a)
[bison.git] / ChangeLog
index d75e3574c3107db4877210cd0e3f28121c0c298c..9901e63be7e0465edda1c56c70ce67fe37ecf4eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,77 @@
+2002-10-20  Paul Eggert  <eggert@twinsun.com>
+
+       Remove K&R vestiges.
+       * configure.ac (AC_C_CONST, AM_C_PROTOTYPES): Remove.
+       * src/complain.c (VA_START): Remove.  Assume prototypes.
+       (vfprintf) [! (HAVE_VPRINTF || defined vfprintf)]: New macro.
+       (private_strerror, warn_at, warn, complain_at, complain, fatal_at,
+       fatal): Assume prototypes.
+       * src/complain.h: Assume prototypes.
+       * src/system.h (PARAMS): Remove.
+       Include <limits.h> unconditionally, since it's guaranteeed even
+       for a freestanding C89 compiler.
+       (SHRT_MIN, SHRT_MAX): Remove, since C89 guarantees them.
+       * src/vmsgetargs.c (getargs, cli_present, cli_get_value): Prototype.
+       
+2002-10-20  Akim Demaille  <akim@epita.fr>
+
+       * src/muscle_tab.c (muscle_grow): Remove trailing debugging code.
+       * data/glr.c (YY_USER_FORMALS, YY_USER_ARGS): New.
+       (yyuserAction, yydoAction, yyglrReduce, yyresolveValue)
+       (yyresolveStates, yyresolveAction, yyresolveStack)
+       (yyprocessOneStack): Use them.
+       (yy_reduce_print): New.
+       * tests/calc.at (_AT_DATA_CALC_Y): Exercise %parse-param.
+
+2002-10-20  Akim Demaille  <akim@epita.fr>
+
+       * data/c.m4 (b4_c_ansi_args): Recognize functions with no
+       arguments and output `void'.
+       (b4_c_function): Rename as...
+       (b4_c_function_def): this.
+       (b4_c_function_decl, b4_c_ansi_function_def)
+       (b4_c_ansi_function_decl): New.
+       Change the interpretation of the arguments: before `int, foo', now
+       `int foo, foo'.
+       * data/yacc.c (yyparse): Prototype and define thanks to these.
+       Adjust b4_c_function_def uses.
+       * data/glr.c (yyparse): Likewise, but ANSI only.
+
+2002-10-20  Akim Demaille  <akim@epita.fr>
+
+       * src/output.c (prepare): Move the definition of `tokens_number',
+       `nterms_number', `undef_token_number', `user_token_number_max'
+       to...
+       (prepare_tokens): Here.
+       (prepare_tokens): Rename as...
+       (prepare_symbols): this.
+       (prepare): Move the definition of `rules_number' to...
+       (prepare_rules): here.
+       (prepare): Move the definition of `last', `final_state_number',
+       `states_number' to...
+       (prepare_states): here.
+       * data/yacc.c, data/lalr1.cc, data/glr.c: Normalize `>' into `<'.
+
+2002-10-20  Akim Demaille  <akim@epita.fr>
+
+       * src/tables.h, src/tables.c, src/output.c: Comment changes.
+
+2002-10-20  Akim Demaille  <akim@epita.fr>
+
+       * data/yacc.c, data/yacc.c (b4_location_if, b4_pure_if): Move to...
+       * data/c.m4: here.
+
+2002-10-20  Akim Demaille  <akim@epita.fr>
+
+       * src/output.c (prepare): Use MUSCLE_INSERT_STRING.
+       * src/muscle_tab.c (muscle_pair_list_grow): Rename `val as
+       `pair'.
+       (muscle_init): Move the `b4_ltype', `b4_maxdepth', `b4_initdepth',
+       `name' to...
+       * data/glr.c, data/lalr1.cc, data/yacc.c (b4_location_type)
+       (b4_stack_depth_init, b4_stack_depth_max, b4_parser_class_name):
+       These.
+
 2002-10-19  Paul Eggert  <eggert@twinsun.com>
 
        Do not create a temporary file, as that involves security and
@@ -20,7 +94,7 @@
        * src/scan-skel.l (readpipe): Remove decl.
        (scan_skel): New function, to be used in place of m4_invoke.
        Read from stream rather than file.
-       
+
        * lib/timevar.c (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Do not cast to
        float, as this generates a warning on Solaris 8 + GCC 3.2 with
        --enable-gcc-warnings.  Instead, divide into 1.0 rather than 1;