]> git.saurik.com Git - bison.git/blobdiff - ChangeLog
* tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
[bison.git] / ChangeLog
index 31b533a25856cac798cc9a2241bb7d3556c1d717..064924dabd0fd860fcd47501f84ed6605fe8f7aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2000-09-19  Akim Demaille  <akim@epita.fr>
+
+       * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not
+       portable.
+
+2000-09-18  Akim Demaille  <akim@epita.fr>
+
+       * configure.in: Append WARNING_CFLAGS to CFLAGS.
+       * src/Makefile.am (INCLUDES): Don't.
+       Be ready to fetch headers in lib/.
+
+2000-09-18  Akim Demaille  <akim@epita.fr>
+
+       * doc/bison.texinfo: Update the copyright.
+       ANSIfy and GNUify the examples.
+       Remove the old menu.
+
+2000-09-18  Akim Demaille  <akim@epita.fr>
+
+       First set of tests: use the `calc' example from the documentation.
+
+       * src/bison.s1 (yyparse): Condition the code using `yytname' which
+       is defined only when YYDEBUG is.
+       * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13.
+       * src/files.c (tryopen, tryclose): Formatting changes.
+       Move to the top and be static.
+       * src/reader.c (read_signed_integer): Likewise.
+       * tests/calc.m4: New file.
+       * Makefile.am, suite.m4: Adjust.
+       * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY.
+
+2000-09-18  Akim Demaille  <akim@epita.fr>
+
+       Add support for an Autotest test suite for Bison.
+
+       * m4/m4.m4, m4/atconfig.m4: New files.
+       * m4/Makefile.am (EXTRA_DIST): Adjust.
+       * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New
+       files.
+       * src/getargs.c: Display a more standard --version message.
+       * src/reader.c (reader): Formatting changes.
+       No longer depend upon VERSION_STRING.
+       * configure.in: No longer use `dnl'.
+       Set up the test suite and the new directory `tests/.
+       (VERSION_STRING): Remove.
+
+2000-04-14  Akim Demaille  <akim@epita.fr>
+
+       * src/reader.c (copy_comment2): New function, same as former
+       `copy_comment', but outputs into two FILE *.
+       (copy_comment): Use it.
+       (parse_union_decl): Use it.
+       (get_type, parse_start_decl): Use the same `invalid' message.
+       (parse_start_decl, parse_union_decl): Use the same `multiple'
+       message.
+       (parse_union_decl, copy_guard, copy_action): Use the same
+       `unmatched' message.
+       * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'.
+
+2000-03-31  Akim Demaille  <akim@epita.fr>
+
+       * src/files.c (tryopen, tryclose): Move to the top.
+       Be static.
+
+2000-03-31  Akim Demaille  <akim@epita.fr>
+
+       * src/main.c (main): Don't call `done', exit does it.
+
+2000-03-31  Akim Demaille  <akim@epita.fr>
+
+       * allocate.c: s/return (foo)/return foo/.
+       * lalr.c: Likewise.
+       * LR0.c: Likewise.
+       * output.c: Likewise.
+       * reader.c: Likewise.
+       * symtab.c: Likewise.
+       * vmsgetargs.c: Likewise.
+
+2000-03-31  Akim Demaille  <akim@epita.fr>
+
+       Clean up the error reporting functions.
+
+       * src/report.c: New file.
+       * src/report.h: Likewise.
+       * src/Makefile.am: Adjust.
+       * m4/error.m4: New file.
+       * m4/Makefile.am: Adjust.
+       * configure.in (jm_PREREQ_ERROR): Call it.
+       * src/main.c (int_to_string, banner, fatal_banner, warn_banner):
+       Remove.
+       (fatal, fatals): Remove.  All callers use complain.c::fatal.
+       (warn, warni, warns, warnss, warnss): Remove.  All callers use
+       complain.c::complain.
+       (toomany): Remove, use fatal instead.
+       * src/files.c (done): No argument, use complain_message_count.
+       * src/main.c (main): Register `done' to `atexit'.
+
+       * src/getargs.c (usage): More `fputs', less `fprintf'.
+
+2000-03-28  Akim Demaille  <akim@epita.fr>
+
+       * lib/: New directory.
+       * Makefile.am (SUBDIRS): Adjust.
+       * configure.in: Adjust.
+       (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's
+       useless.
+       * src/alloca.c: Moved to lib/.
+       * src/getopt.c: Likewise.
+       * src/getopt1.c: Likewise.
+       * src/getopt.h: Likewise.
+       * src/ansi2knr.c: Likewise.
+       * src/ansi2knr.1: Likewise.
+       * src/Makefile.am: Adjust.
+       * lib/Makefile.am: New file.
+
+2000-03-28  Akim Demaille  <akim@epita.fr>
+
+       * src/getargs.c (usage): Refresh the help message.
+
+2000-03-17  Akim Demaille  <akim@epita.fr>
+
+       * src/getopt1.c: Updated from textutils 2.0e
+       * src/getopt.c: Likewise.
+       * src/getopt.h: Likewise.
+
+2000-03-17  Akim Demaille  <akim@epita.fr>
+
+       * src/Makefile.am (bison.simple): Fix the awk program: quote only
+       the file name, not the whole `#line LINE FILE'.
+
+2000-03-17  Akim Demaille  <akim@epita.fr>
+
+       On syntax errors, report the token on which we choked.
+
+       * src/bison.s1 (yyparse): In the label yyerrlab, when
+       YYERROR_VERBOSE, add yychar in msg.
+
+2000-03-17  Akim Demaille  <akim@epita.fr>
+
+       * src/reader.c (copy_at): New function.
+       (copy_guard): Use it.
+       (copy_action): Use it.
+
+2000-03-17  Akim Demaille  <akim@epita.fr>
+
+       Be kind to translators, save some useless translations.
+
+       * src/main.c (banner): New function.
+       (fatal_banner): Use it.
+       (warn_banner): Use it.
+
 2000-03-17  Akim Demaille  <akim@epita.fr>
 
-       * reader.c (copy_string): Declared `static inline'.  No problems
-       with inline, since it is checked by configure.
+       * src/reader.c (copy_definition): Use copy_string and
+       copy_comment.  Removed now unused `match', `ended',
+       `cplus_comment'.
+       (copy_comment, copy_string): Moved, to be visible from
+       copy_definition.
+
+2000-03-17  Akim Demaille  <akim@epita.fr>
+
+       * src/reader.c (copy_string): Declare `static inline'.  No
+       problems with inline, since it is checked by configure.
        (copy_comment): Likewise.
 
 2000-03-17  Akim Demaille  <akim@epita.fr>
 
-       * reader.c (packsymbols): Formatting changes.
+       * src/reader.c (packsymbols): Formatting changes.
 
 2000-03-17  Akim Demaille  <akim@epita.fr>
 
-       * reader.c (copy_comment): New function, factored out from:
+       * src/reader.c (copy_comment): New function, factored out from:
        (copy_action): Use it.  Removed now unused `match', `ended',
        `cplus_comment'.
        (copy_guard): Likewise.
 
 2000-03-17  Akim Demaille  <akim@epita.fr>
 
-       * reader.c (copy_string): New function, factored out from:
+       * src/reader.c (copy_string): New function, factored out from:
        (copy_action): Use it.
        (copy_guard): Likewise.
 
 
 2000-03-17  Akim Demaille  <akim@epita.fr>
 
-       * bison.s1: Formatting and cosmetics changes.
-       * reader.c: Likewise.
+       * src/bison.s1: Formatting and cosmetics changes.
+       * src/reader.c: Likewise.
        Update the Copyright notice.
 
 2000-03-17  Akim Demaille  <akim@epita.fr>
 
-       * bison.s1 (#line): All set to `#line' only, since the Makefile
-       now handles them.
+       * src/bison.s1 (#line): All set to `#line' only, since the
+       Makefile now handles them.
 
 2000-03-16  Akim Demaille  <akim@epita.fr>