home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / bison-1.25-base.tgz / bison-1.25-base.tar / fsf / bison / ChangeLog < prev    next >
Text File  |  1996-05-11  |  44KB  |  1,291 lines

  1. Sat May 11 15:11:15 1996  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>
  2.  
  3.     * Version 1.25 released.
  4.  
  5.     * Makefile.in (dist): Don't use $(srcdir).
  6.  
  7.     * bison.simple (__yy_memcpy): Really reorder the args, as was
  8.     supposedly done on Feb 14 1995.
  9.     (yyparse): Calls changed accordingly.
  10.  
  11. Wed Jan 24 22:56:29 1996  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
  12.  
  13.     * output.c (output_rule_data): Test YYERROR_VERBOSE in the conditional
  14.     around the definition of ttyname.
  15.  
  16. Thu Dec 28 23:27:32 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
  17.  
  18.     * bison.simple: Fix line numbers in #line commands.
  19.  
  20. Sun Dec 24 16:59:44 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
  21.  
  22.     * bison.simple (YYPARSE_PARAM_DECL): In C++, make it always null.
  23.     (YYPARSE_PARAM_ARG): New macro.
  24.     (yyparse): Use YYPARSE_PARAM_ARG.
  25.  
  26. Sun Oct 15 12:44:09 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
  27.  
  28.     * version.c: Version now 1.25.
  29.  
  30.     * main.c (warn): Set `failure'.
  31.  
  32. Tue Aug  1 12:30:38 EDT 1995   Wilfred J. Hansen  <wjh+@cmu.edu>
  33.  
  34.     * bison.cld, getargs.c, vmsgetargs.c: Added -n, -k, and -raw switches.
  35.     (noparserflag, toknumflag, rawtoknumflag): New variables.
  36.     
  37.     * conflicts.c (resolve_sr_conflict): Remove use of alloca.
  38.  
  39.     * files.c (openfiles, open_extra_files, done):  Add faction flag 
  40.     and actfile file.  Handle noparserflag.  Both for -n switch.
  41.  
  42.     * lex.c: Include getopt.h.  Add some extern decls.
  43.     (safegetc): New function to deal with EOF gracefully.  
  44.     (literalchar); new function to deal with reading \ escapes.
  45.     (lex): Use literalchar.
  46.     (lex): Implemented "..." tokens.
  47.     (literalchar, lex, parse_percent_token): Made tokenbuffer 
  48.     always contain the token.  This includes growing the token 
  49.     buffer while reading an integer.
  50.     (parse_percent_token): Replaced if-else statement with percent_table.
  51.     (parse_percent_token): Added % declarations as another  
  52.     way to specify the flags -n, -l, and -r.  Also added hooks for 
  53.     -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires
  54.     major changes to files.c.
  55.     (lex) Retain in the incoming stream a character following 
  56.     an incorrect '/'.
  57.     (skip_white_space, lex):  Revised most error messages 
  58.     and changed fatal to warn to avoid aborting.
  59.     (percent_table):  Added %thong declarations.
  60.  
  61.     * lex.h: Added THONG and NOOP for alias processing.
  62.     Added SETOPT for the new code that allows setting options with %flags.
  63.  
  64.     * main.c (main):  If reader sees an error, don't process the grammar.
  65.     (fatals): Updated to not use VARARGS1.
  66.     (printable_version, int_to_string, warn, warni, warns, warnss)
  67.     (warnsss): New error reporting functions.  Avoid abort for error.
  68.  
  69.     * output.c (output_headers, output_trailers, output, output_gram)
  70.     (output_rule_data): Implement noparserflag variable.
  71.     Implement toknumflag variable.
  72.     (output): Call reader_output_yylsp to output LTYPESTR.
  73.  
  74.     * reader.c (reader_output_yylsp): New function.
  75.     (readgram): Use `#if 0' around code that accepted %command 
  76.     inside grammar rules:  The documentation doesn't allow it, 
  77.     and it will fail since the %command processors scan for the next %.
  78.     (parse_token_decl):  Extended the %token 
  79.     declaration to allow a multi-character symbol as an alias.
  80.     (parse_thong_decl): New function.
  81.     (read_declarations): Added %thong declarations.
  82.     (read_declarations): Handle NOOP to deal with allowing
  83.     % declarations as another means to specify the flags.
  84.     (readgram): Allow %prec prior to semantics embedded in a rule.
  85.     (skip_to_char, read_declarations, copy_definition)
  86.     (parse_token_decl, parse_start_decl, parse_type_decl)
  87.     (parse_assoc_decl, parse_union_decl, parse_expect_decl)
  88.     (get_type_name, copy_guard, copy_action, readgram)
  89.     (get_type, packsymbols):  Revised most error messages.
  90.     Changed `fatal' to `warnxxx' to avoid aborting for error.
  91.     Revised and use multiple warnxxx functions to avoid using VARARGS1.
  92.     (read_declarations): Improve the error message for 
  93.     an invalid character.  Do not abort.
  94.     (read_declarations, copy_guard, copy_action): Use 
  95.     printable_version to avoid unprintable characters in printed output.
  96.     (parse_expect_decl): Error if argument to %expect exceeds 10 digits.
  97.     (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type):  
  98.     Allow the type of a non-terminal can be given
  99.     more than once, as long as all specifications give the same type.
  100.  
  101.     * reduce.c (reduce_grammar): Revise an error message.
  102.     (print_notices): Remove final `.' from error message.
  103.  
  104.     * symtab.h (SALIAS): New #define for adding aliases to %token.
  105.     (struct bucket): Added `alias' field.
  106.  
  107. Wed May  3 03:12:28 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
  108.  
  109.     * bison.simple: Change distribution terms.
  110.  
  111.     * version.c: Version now 1.23.  No, 1.24.
  112.  
  113. Thu Feb 23 02:43:21 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
  114.  
  115.     * files.c: Test __VMS_POSIX as well as VMS.
  116.  
  117. Tue Feb 14 11:53:05 1995  Jim Meyering (meyering@comco.com)
  118.  
  119.     * bison.simple (__yy_memcpy): Renamed from __yy_bcopy to avoid
  120.     confusion.  Reverse FROM and TO arguments to be consistent with
  121.     those of memcpy.
  122.  
  123. Thu Nov 10 16:33:41 1994  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
  124.  
  125.     * Makefile.in (DISTFILES): Include install-sh, not install.sh.
  126.     Include NEWS.
  127.  
  128.     * configure.in: Update to Autoconf v2 macro names.
  129.  
  130. Tue Oct  4 22:25:43 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
  131.  
  132.     * Makefile.in (prefix, exec_prefix): Let configure set them.
  133.  
  134. Wed Sep 28 09:55:28 1994  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
  135.  
  136.     * Makefile.in: Set datadir to $(prefix)/share.
  137.  
  138. Tue Jul 12 16:42:43 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  139.  
  140.     * reader.c (reader): Rename undefined-token token to `$undefined.'.
  141.  
  142. Thu May  5 14:41:02 1994  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
  143.  
  144.     * Makefile.in (DISTFILES): Add install.sh.
  145.     (install): Remove chmod commands.
  146.  
  147. Sat Mar 26 15:33:07 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  148.  
  149.     * bison.simple: Fix #line commands.
  150.  
  151. Thu Mar 24 23:09:07 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  152.  
  153.     * conflicts.c (print_reductions): Increment both fp1 and fp2
  154.     while printing reductions in multi-rule case.
  155.  
  156. Sun Jan  2 15:51:52 1994  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  157.  
  158.     * Makefile.in (LDFLAGS): Make it empty by default.
  159.     (bison): Use CFLAGS.
  160.  
  161. Sun Nov 21 05:24:30 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  162.  
  163.     * bison.simple (YYLEX): Take notice of YYLEX_PARAM.
  164.  
  165. Mon Oct 18 23:52:33 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  166.  
  167.     * bison.simple (YYPARSE_PARAM_DECL): Always define this.
  168.  
  169. Thu Oct 14 12:19:13 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  170.  
  171.     * bison.simple (yyparse): Support YYPARSE_PARAM.
  172.  
  173. Mon Sep 13 18:17:14 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  174.  
  175.         * Makefile.in (check): New target.
  176.  
  177. Fri Sep 10 08:10:18 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  178.  
  179.     * conflicts.c (alloca): #undef before defining.
  180.  
  181.     * system.h (bcopy): Don't define if already defined.
  182.  
  183. Mon Sep  6 15:32:32 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  184.  
  185.         * Version 1.22 released.
  186.  
  187.         * mkinstalldirs: New file.
  188.  
  189.         * Makefile.in (dist): Use .gz for extension, not .z. 
  190.         (DISTFILES): New variable.
  191.         (dist): Use it instead of explicit file list. 
  192.         Try to link each file separately, then copy file if ln fails.
  193.         (installdirs): Use mkinstalldirs script.
  194.  
  195. Thu Jul 29 20:35:02 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
  196.  
  197.     * Makefile.in (config.status): Run config.status --recheck, not
  198.     configure, to get the right args passed.
  199.  
  200. Sat Jul 24 04:00:52 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  201.  
  202.     * bison.simple (yyparse): Init yychar1 to avoid warning.
  203.  
  204. Sun Jul  4 16:05:58 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  205.  
  206.     * bison.simple (yyparse): Don't set yyval when yylen is 0.
  207.  
  208. Sat Jun 26 15:54:04 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
  209.  
  210.     * getargs.c (getargs): Exit after printing the version number.
  211.     Add --help and -h options.
  212.     (usage): New function.
  213.  
  214. Fri Jun 25 15:11:25 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  215.  
  216.     * getargs.c (longopts): Allow `output' as an alternative.
  217.  
  218. Wed Jun 16 17:02:37 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  219.  
  220.     * bison.simple (yyparse): Conditionalize the entire call to yyoverflow,
  221.     not just two arguments in it.
  222.  
  223. Thu Jun  3 13:07:19 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  224.  
  225.     * bison.simple [__hpux] (alloca): Don't specify arg types.
  226.  
  227. Fri May  7 05:53:17 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  228.  
  229.         * Makefile.in (install): Depend on `uninstall' and `installdirs'.
  230.     (installdirs): New target. 
  231.  
  232. Wed Apr 28 15:15:15 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  233.  
  234.         * reader.c:  Remove declaration of atoi. 
  235.  
  236. Fri Apr 23 12:29:20 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  237.  
  238.         * new.h [!__STDC__] (FREE): Check x != 0.
  239.         Make expr to call `free' evaluate to 0.
  240.  
  241. Tue Apr 20 01:43:44 1993  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
  242.  
  243.     * files.c [MSDOS]: Use xmalloc, not malloc.
  244.     * allocate.c (xmalloc): Renamed from mallocate.  Remove old wrapper.
  245.     * conflicts.c, symtab.c, files.c, LR0.c, new.h: Change callers.
  246.     * allocate.c (xrealloc): New function.
  247.     * new.h: Declare it.
  248.     * lex.c, reader.c: Use it.
  249.  
  250. Sun Apr 18 00:45:56 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  251.  
  252.         * Version 1.21 released.
  253.  
  254.         * reader.c : Don't declare `realloc'.
  255.  
  256.         * Makefile.in (bison.s1): use `rm -f' since it's quieter.
  257.         (dist): make gzipped tar file.
  258.  
  259. Fri Apr 16 21:24:10 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  260.  
  261.         * Makefile.in (Makefile, config.status, configure): New targets.
  262.  
  263. Thu Apr 15 15:37:28 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  264.  
  265.     * main.c: Don't declare `abort'.
  266.  
  267.     * files.c: Don't declare `exit'.
  268.  
  269. Thu Apr 15 02:42:38 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  270.  
  271.         * configure.in: Add AC_CONST.
  272.  
  273. Wed Apr 14 00:51:17 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  274.  
  275.     * Makefile.in (all): Depend on bison.s1.
  276.  
  277. Tue Apr 13 14:52:32 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  278.  
  279.     * Version 1.20 released.
  280.  
  281. Wed Mar 24 21:45:47 1993  Richard Stallman  (rms@wookumz.gnu.ai.mit.edu)
  282.  
  283.     * output.c (output_headers): Rename yynerrs if -p.
  284.  
  285. Thu Mar 18 00:02:17 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  286.  
  287.         * system.h: Don't try to include stdlib.h unless HAVE_STDLIB_H is
  288.           defined.
  289.  
  290.         * configure.in: Check for stdlib.h.
  291.  
  292. Wed Mar 17 14:44:27 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  293.  
  294.     * bison.simple [__hpux, not __GNUC__]: Declare alloca.
  295.     (yyparse): When printing the expected token types for an error,
  296.     Avoid negative indexes in yycheck and yytname.
  297.  
  298. Sat Mar 13 23:31:25 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  299.  
  300.     * Makefile.in (files.o, .c.o): Put CPPFLAGS and CFLAGS last.
  301.  
  302. Mon Mar  1 17:49:08 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  303.  
  304.     * bison.simple: Test __sgi like __sparc.
  305.  
  306. Wed Feb 17 00:04:13 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  307.  
  308.     * conflicts.c (resolve_sr_conflict): Add extra parens in alloca call.
  309.  
  310.     * bison.simple [__GNUC__] (yyparse): Declare with prototype.
  311.  
  312. Fri Jan 15 13:15:17 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  313.  
  314.     * conflicts.c (print_reduction): Near end, increment fp2 when mask
  315.     recycles.
  316.  
  317. Wed Jan 13 04:15:03 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  318.  
  319.     * Makefile.in (bison.s1): New target.  Modifies bison.simple.
  320.     (install): Install bison.s1, without changing it.
  321.     (clean): Delete bison.s1.
  322.  
  323. Mon Jan  4 20:35:58 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  324.  
  325.     * reader.c (reader): Put Bison version in comment in output file.
  326.  
  327. Tue Dec 22 19:00:58 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  328.  
  329.     * files.c (openfiles): Use .output, not .out, for outfile,
  330.     regardless of spec_name_prefix.
  331.  
  332. Tue Dec 15 19:22:11 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  333.  
  334.     * output.c (output_gram): Include yyrhs in the same #if as yyprhs.
  335.  
  336. Tue Dec 15 18:29:16 1992  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)
  337.  
  338.         * output.c (output): output directives checking for __cplusplus as
  339.           well as __STDC__ to determine when to define "const" as an empty
  340.           token.  (Patch from Wolfgang Glunz <wogl@sun11a.zfe.siemens.de>)
  341.  
  342. Tue Dec  8 21:51:23 1992  David J. MacKenzie  (djm@kropotkin.gnu.ai.mit.edu)
  343.  
  344.     * system.h, conflicts.c: Replace USG with HAVE_STRING_H and
  345.     HAVE_MEMORY_H.
  346.  
  347. Sat Nov 21 00:37:16 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
  348.  
  349.     * Makefile.in: Set and use $(MAKEINFO).
  350.  
  351. Fri Nov 20 20:45:57 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  352.  
  353.     * files.c (done) [MSDOS]: Delete the tmpdefsfile with the rest.
  354.  
  355. Thu Oct  8 21:55:52 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  356.  
  357.     * Makefile.in (dist): Put configure.bat in the distribution.
  358.  
  359. Thu Oct  1 09:16:24 1992  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)
  360.  
  361.     * Makefile.in (install): cd to $(srcdir) before installing info files.
  362.  
  363. Wed Sep 30 17:18:39 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  364.  
  365.     * Makefile.in (files.o): Supply $(DEFS), and $(CPPFLAGS).
  366.  
  367. Fri Sep 25 18:06:28 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  368.  
  369.     * Version 1.19 released.
  370.  
  371.     * reader.c (parse_union_decl): Fix ending of C++ comment;
  372.     don't lose the char after the newline.
  373.  
  374.     * configure.bat: New file.
  375.  
  376. Thu Sep 24 16:23:15 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  377.  
  378.     * conflicts.c: Check for using alloca.h as getopt.c does.
  379.  
  380. Sun Sep  6 08:01:53 1992  Karl Berry  (karl@hayley)
  381.  
  382.         * files.c (openfiles): open `fdefines' after we have assigned a name
  383.           to `tmpdefsfile', and only if `definesflag' is set.
  384.         (done): only create the real .tab.h file if `definesflag' is set.
  385.         * reader.c (packsymbols): don't close `fdefines' here.
  386.  
  387. Sat Sep  5 15:02:11 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  388.  
  389.     * files.c (openfiles): Open fdefines as temp file, like ftable.
  390.     (done): Copy temp defines file to real one, like main output file.
  391.  
  392. Fri Aug 21 12:47:48 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  393.  
  394.     * Makefile.in (dist): Don't release mergedir.awk
  395.     (install): Use sed, not awk.  Don't depend on mergedir.awk.
  396.     * mergedir.awk: File effectively deleted.
  397.  
  398. Wed Jul 29 00:53:25 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  399.  
  400.     * bison.simple: Test __sparc along with __sparc__.
  401.  
  402. Sat Jul 11 14:08:33 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  403.  
  404.     * lex.c (skip_white_space): Count \n just once at end of c++ comment.
  405.  
  406. Fri Jun 26 00:00:30 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  407.  
  408.     * bison.simple: Comment fix; #line command updated.
  409.  
  410. Wed Jun 24 15:12:42 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  411.  
  412.     * Makefile.in (install): Specify full new file name for the executable.
  413.  
  414. Mon Jun 22 16:38:24 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  415.  
  416.     * Makefile.in (dist): Include bison.rnh in distribution.
  417.  
  418. Sun Jun 21 22:42:13 1992 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
  419.  
  420.     Clean up rough edges in VMS port of bison, add support for remaining
  421.     command line options.
  422.  
  423.     * bison.cld: Add /version, /yacc, /file_prefix, and /name_prefix
  424.     switches.
  425.  
  426.     * build.com: General cleanup:  add logic to automatically sense
  427.     which C compiler is present; add code to cwd to the directory
  428.     that contains bison sources; do not define XPFILE, XPFILE1
  429.     (correct defaults are applied in file.c).
  430.  
  431.     * files.c: Append _tab, not .tab when using /file_prefix under VMS.
  432.  
  433.     * system.h: Include string.h instead of strings.h (a la USG).
  434.  
  435.     * vmsgetargs.c: Add support for all switches added to bison.cld.
  436.  
  437. Sun Jun 21 15:53:26 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  438.  
  439.     * Makefile.in (install): Always specify new file name for install.
  440.     Redirect awk output to temp file and install that.
  441.  
  442. Wed May 27 22:27:50 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  443.  
  444.     * bison.simple (yyparse): Make yybackup and yyerrlab1 always be used.
  445.  
  446. Fri May 22 14:58:42 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  447.  
  448.     * Makefile.in (dist): Depend on bison.info
  449.     (bison.info): Delete spurious <.
  450.  
  451. Sun May 17 21:48:55 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  452.  
  453.     * Makefile.in (.c.o): New rule.  Use $(DEFS) directly.
  454.     (CFLAGS): Use just -g by default.
  455.     (CDEBUG): Variable deleted.
  456.  
  457. Thu May  7 00:03:37 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  458.  
  459.     * reader.c (copy_guard): Fix typo skipping comment.
  460.  
  461. Mon May  4 01:23:21 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  462.  
  463.     * Version 1.18.
  464.  
  465.     * getargs.c (getargs): Change '0' to 0 in case for long options.
  466.  
  467. Sun Apr 19 10:17:52 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  468.  
  469.     * reader.c (packsymbols): Handle -p when declaring yylval.
  470.  
  471. Sat Apr 18 18:18:48 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  472.  
  473.     * output.c (output_gram): Output #endif properly at end of decl.
  474.  
  475. Mon Mar 30 01:13:41 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  476.  
  477.     * Version 1.17.
  478.  
  479.     * Makefile.in (clean): Don't delete configuration files or TAGS.
  480.     (distclean): New target; do delete those.
  481.  
  482. Sat Mar 28 17:18:50 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  483.  
  484.     * output.c (output_gram): Conditionalize yyprhs on YYDEBUG.
  485.  
  486.     * LR0.c (augment_automaton): If copying sp->shifts to insert new
  487.     shift, handle case of inserting at end.
  488.  
  489. Sat Mar 21 23:25:47 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  490.  
  491.     * lex.c (skip_white_space): Handle C++ comments.
  492.     * reader.c (copy_definition, parse_union_decl, copy_guard):
  493.     (copy_action): Likewise.
  494.  
  495. Sun Mar  8 01:22:21 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  496.  
  497.     * bison.simple (YYPOPSTACK): Fix typo.
  498.  
  499. Sat Feb 29 03:53:06 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  500.  
  501.     * Makefile.in (install): Install bison.info* files one by one.
  502.  
  503. Fri Feb 28 19:55:30 1992  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)
  504.  
  505.     * bison.1: Document long options as starting with `--', not `+'.
  506.  
  507. Sat Feb  1 00:08:09 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  508.  
  509.     * getargs.c (getargs): Accept value 0 from getopt_long.
  510.  
  511. Thu Jan 30 23:39:15 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  512.  
  513.     * Makefile.in (mostlyclean): Renamed from `clean'.
  514.     (clean): Renamed from 'distclean'.  Dep on mostlyclean, not realclean.
  515.     (realclean): Dep on clean.
  516.  
  517. Mon Jan 27 21:59:19 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  518.  
  519.     * bison.simple: Use malloc, not xmalloc, and handle failure explicitly.
  520.  
  521. Sun Jan 26 22:40:04 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  522.  
  523.     * conflicts.c (total_conflicts): Delete unused arg to fprintf.
  524.  
  525. Tue Jan 21 23:17:44 1992  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
  526.  
  527.     * Version 1.16.
  528.  
  529. Mon Jan  6 16:50:11 1992  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  530.  
  531.     * Makefile (distclean): Depend on clean, not realclean.  Don't rm TAGS.
  532.     (realclean): rm TAGS here.
  533.  
  534.     * symtab.c (free_symtab): Don't free the type names.
  535.  
  536. Sun Dec 29 22:25:40 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  537.  
  538.     * machine.h: MSDOS has 32-bit ints if __GO32__.
  539.  
  540. Wed Dec 25 22:09:07 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  541.  
  542.     * bison.simple [_AIX]: Indent `#pragma alloca', so old C compilers
  543.     don't choke on it.
  544.  
  545. Mon Dec 23 02:10:16 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  546.  
  547.     * getopt.c, getopt1.c, getopt.h: Link them to standard source location.
  548.     * alloca.c: Likewise.
  549.     * Makefile.in (dist): Copy those files from current dir.
  550.  
  551.     * getargs.c: Update usage message.
  552.  
  553.     * LR0.c (augment_automaton): Put new shift in proper order.
  554.  
  555. Fri Dec 20 18:39:20 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  556.  
  557.     * conflicts.c: Use memcpy if ANSI C library.
  558.  
  559.     * closure.c (set_fderives): Delete redundant assignment to vrow.
  560.  
  561.     * closure.c (print_firsts): Fix bounds and offset checking tags.
  562.  
  563.     * closure.c (tags): Declare just once at start of file.
  564.  
  565.     * LR0.c (allocate_itemsets): Eliminate unused var max.
  566.     (augment_automaton): Test sp is non-null.
  567.  
  568.     * lalr.c (initialize_LA): Make the vectors at least 1 element long.
  569.  
  570.     * reader.c (readgram): Remove separate YYSTYPE default for MSDOS.
  571.  
  572. Wed Dec 18 02:40:32 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  573.  
  574.     * print.c (print_grammar): Don't print disabled rules.
  575.  
  576. Tue Dec 17 03:48:07 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  577.  
  578.     * lex.c (lex): Parse hex escapes properly.
  579.     Handle \v when filling token_buffer.
  580.  
  581.     * lex.c: Include new.h.
  582.     (token_buffer): Change to a pointer.
  583.     (init_lex): Allocate initial buffer.
  584.     (grow_token_buffer): New function.
  585.     (lex, parse_percent_token): Use that.
  586.  
  587.     * reader.c (read_declarations): Call open_extra_files just once.
  588.     (parse_token_decl): Don't free previous typename value.
  589.     Don't increment nvars if symbol is already a nonterminal.
  590.     (parse_union_decl): Catch unmatched close-brace.
  591.     (parse_expect_decl): Null-terminate buffer.
  592.     (copy_guard): Set brace_flag for {, not for }.
  593.  
  594.     * reader.c: Fix %% in calls to fatal.
  595.  
  596.     * reader.c (token_buffer): Just one extern decl, at top level.
  597.     Declare as pointer.
  598.  
  599.     * symtab.c (free_symtab): Free type_name fields.  Free symtab itself.
  600.  
  601. Mon Nov 25 23:04:31 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  602.  
  603.     * bison.simple: Handle alloca for AIX.
  604.  
  605.     * Makefile.in (mandir): Compute default using manext.
  606.  
  607. Sat Nov  2 21:39:32 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  608.  
  609.     * Update all files to GPL version 2.
  610.  
  611. Fri Sep  6 01:51:36 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  612.  
  613.     * bison.simple (__yy_bcopy): Use builtin if GCC version 2.
  614.  
  615. Mon Aug 26 22:09:12 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  616.  
  617.     * reader.c (parse_assoc_decl): Error if same symbol gets two precs.
  618.  
  619. Mon Aug 26 16:42:09 1991  David J. MacKenzie  (djm at pogo.gnu.ai.mit.edu)
  620.  
  621.     * Makefile.in, configure: Only put $< in Makefile if using VPATH,
  622.     because older makes don't understand it.
  623.  
  624. Fri Aug 23 00:05:54 1991  David J. MacKenzie  (djm at apple-gunkies)
  625.  
  626.     * conflicts.c [_AIX]: #pragma alloca.
  627.     * reduce.c: Don't define TRUE and FALSE if already defined.
  628.  
  629. Mon Aug 12 22:49:58 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  630.  
  631.     * Makefile.in: Add deps on system.h.
  632.     (install): Add some deps.
  633.  
  634. Fri Aug  2 12:19:20 1991  David J. MacKenzie  (djm at apple-gunkies)
  635.  
  636.     * Makefile.in (dist): Include texinfo.tex.
  637.  
  638.     * configure: Create config.status.  Remove it and Makefile if
  639.     interrupted while creating them.
  640.  
  641. Thu Aug  1 23:14:01 1991  David J. MacKenzie  (djm at apple-gunkies)
  642.  
  643.     * configure: Check for +srcdir etc. arg and look for
  644.     Makefile.in in that directory.  Set VPATH if srcdir is not `.'.
  645.     * Makefile.in (prefix): Renamed from DESTDIR. 
  646.  
  647. Wed Jul 31 21:29:47 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  648.  
  649.     * print.c (print_grammar): Make output prettier.  Break lines.
  650.  
  651. Tue Jul 30 22:38:01 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  652.  
  653.     * print.c (print_grammar): New function.
  654.     (verbose): Call it instead of printing token names here.
  655.  
  656. Mon Jul 22 16:39:54 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  657.  
  658.     * vmsgetargs.c (spec_name_prefix, spec_file_prefix): Define variables.
  659.  
  660. Wed Jul 10 01:38:25 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  661.  
  662.     * configure, Makefile.in: $(INSTALLPROG) -> $(INSTALL),
  663.     $(INSTALLTEXT) -> $(INSTALLDATA).
  664.  
  665. Tue Jul  9 00:53:58 1991  David J. MacKenzie  (djm at wookumz.gnu.ai.mit.edu)
  666.  
  667.     * bison.simple: Don't include malloc.h if __TURBOC__.
  668.  
  669. Sat Jul  6 15:18:12 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
  670.  
  671.     * Replace Makefile with configure and Makefile.in.
  672.     Update README with current compilation instructions.
  673.  
  674. Mon Jul  1 23:12:20 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  675.  
  676.     * reader.c (reader): Make the output define YYBISON.
  677.  
  678. Thu Jun 20 16:52:51 1991  David J. MacKenzie  (djm at geech.gnu.ai.mit.edu)
  679.  
  680.     * Makefile (MANDIR, MANEXT): Install man page in
  681.     /usr/local/man/man1/bison.1 by default, instead of
  682.     /usr/man/manl/bison.l, for consistency with other GNU programs.
  683.     * Makefile: Rename BINDIR et al. to lowercase to conform to
  684.     GNU coding standards.
  685.     (install): Make man page non-executable.
  686.  
  687. Fri May 31 23:22:13 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  688.  
  689.     * Makefile (bison.info): New target.
  690.     (realclean): New target.
  691.  
  692. Thu May  2 16:36:19 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  693.  
  694.     * bison.simple: Use YYPRINT to print a token, if it's defined.
  695.  
  696. Mon Apr 29 12:22:55 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  697.  
  698.     * lalr.c (transpose): Rename R to R_arg.
  699.     (initialize_LA): Avoid shadowing variable j.
  700.  
  701.     * reader.c (packsymbols): Avoid shadowing variable i.
  702.  
  703.     * files.c: Declare exit and perror.
  704.  
  705.     * machine.h: Define MAXSHORT and MINSHORT for the eta-10.
  706.  
  707. Tue Apr  2 20:49:12 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  708.  
  709.     * allocate.c (mallocate): Always allocate at least one byte.
  710.  
  711. Tue Mar 19 22:17:19 1991  Richard Stallman  (rms at mole.gnu.ai.mit.edu)
  712.  
  713.     * Makefile (dist): Put alloca.c into distribution.
  714.  
  715. Wed Mar  6 17:45:42 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  716.  
  717.     * print.c (print_actions): Nicer output for final states.
  718.  
  719. Thu Feb 21 20:39:53 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  720.  
  721.     * output.c (output_rule_data): Break lines in yytline based on hpos.
  722.  
  723. Thu Feb  7 12:54:36 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  724.  
  725.     * bison.simple (yyparse): Move decl of yylsa before use.
  726.  
  727. Tue Jan 15 23:41:33 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  728.  
  729.     * Version 1.14.
  730.  
  731.     * output.c (output_rule_data): Handle NULL in tags[i].
  732.  
  733. Fri Jan 11 17:27:24 1991  Richard Stallman  (rms at mole.ai.mit.edu)
  734.  
  735.     * bison.simple: On MSDOS, include malloc.h.
  736.  
  737. Sat Dec 29 19:59:55 1990  David J. MacKenzie  (djm at wookumz.ai.mit.edu)
  738.  
  739.     * files.c: Use `mallocate' instead of `xmalloc' so no extra decl is
  740.     needed. 
  741.  
  742. Wed Dec 19 18:31:21 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  743.  
  744.     * reader.c (readgram): Alternate YYSTYPE defn for MSDOS.
  745.     * files.c [MSDOS]: Declare xmalloc.
  746.  
  747. Thu Dec 13 12:45:54 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  748.  
  749.     * output.c (output_rule_data): Put all symbols in yytname.
  750.  
  751.     * bison.simple (yyparse): Delete extra fprintf arg
  752.     when printing a result of reduction.
  753.  
  754. Mon Dec 10 13:55:15 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  755.  
  756.     * reader.c (packsymbols): Don't declare yylval if pure_parser.
  757.  
  758. Tue Oct 30 23:38:09 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  759.  
  760.     * Version 1.12.
  761.  
  762.     * LR0.c (augment_automaton): Fix bugs adding sp2 to chain of shifts.
  763.  
  764. Tue Oct 23 17:41:49 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  765.  
  766.     * bison.simple: Don't define alloca if already defined.
  767.  
  768. Sun Oct 21 22:10:53 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  769.  
  770.     * getopt.c: On VMS, use string.h.
  771.  
  772.     * main.c (main): Return type int.
  773.  
  774. Mon Sep 10 16:59:01 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  775.  
  776.     * output.c (output_headers): Output macro defs for -p.
  777.  
  778.     * reader.c (readgram): Handle consecutive actions.
  779.  
  780.     * getargs.c (getargs): Rename -a to -p.
  781.     * files.c (openfiles): Change names used for -b.
  782.  
  783. Mon Aug 27 00:30:15 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  784.  
  785.     * reduce.c (reduce_grammar_tables): Don't map rlhs of disabled rule.
  786.  
  787. Sun Aug 26 13:43:32 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  788.  
  789.     * closure.c (print_firsts, print_fderives): Use BITISSET to test bits.
  790.  
  791. Thu Aug 23 22:13:40 1990  Richard Stallman  (rms at mole.ai.mit.edu)
  792.  
  793.     * closure.c (print_firsts): vrowsize => varsetsize.
  794.     (print_fderives): rrowsize => rulesetsize.
  795.  
  796. Fri Aug 10 15:32:11 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  797.  
  798.     * bison.simple (alloca): Don't define if already defined.
  799.     (__yy_bcopy): Alternate definition for C++.
  800.  
  801. Wed Jul 11 00:46:03 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
  802.  
  803.     * getargs.c (getargs): Mention +yacc in usage message.
  804.  
  805. Tue Jul 10 17:29:08 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  806.  
  807.     * reader.c (parse_token_decl, copy_action):
  808.     Set value_components_used if appropriate.
  809.     (readgram): Inhibit output of YYSTYPE definition in that case.
  810.  
  811. Sat Jun 30 13:47:57 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  812.  
  813.     * output.c (output_parser): Define YYPURE if pure, and not otherwise.
  814.     Don't define YYIMPURE.
  815.     * bison.simple: Adjust conditionals accordingly.
  816.     * bison.simple (YYLEX): If locations not in use, don't pass &yylloc.
  817.  
  818. Thu Jun 28 12:32:21 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  819.  
  820.     * getargs.c (longopts): Add `yacc'.
  821.  
  822. Thu Jun 28 00:40:21 1990  David J. MacKenzie  (djm at apple-gunkies)
  823.  
  824.     * getargs.c (getargs): Add long options.
  825.     * Makefile: Link with getopt1.o and add getopt1.c and getopt.h to
  826.     dist. 
  827.  
  828.     * Move version number and description back into version.c from
  829.     Makefile and getargs.c.
  830.     * Makefile (dist): Extract version number from version.c.
  831.  
  832. Tue Jun 26 13:16:35 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  833.  
  834.     * output.c (output): Always call output_gram.
  835.     * bison.simple (yyparse): Print rhs and lhs symbols of reduction rule.
  836.  
  837. Thu Jun 21 00:15:40 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
  838.  
  839.     * main.c: New global var `program_name' to hold argv[0] for error
  840.     messages.
  841.     * allocate.c, files.c, getargs.c, reader.c: Use `program_name'
  842.     in messages instead of hardcoded "bison".
  843.  
  844. Wed Jun 20 23:38:34 1990  David J. MacKenzie  (djm at albert.ai.mit.edu)
  845.  
  846.     * Makefile: Specify Bison version here.  Add rule to pass it to
  847.     version.c.  Encode it in distribution directory and tar file names.
  848.     * version.c: Use version number from Makefile.
  849.     * getargs.c (getargs): Print additional text that used to be part of
  850.     version_string in version.c.  Use -V instead of -version to print
  851.     Bison version info.  Print a usage message and exit if given an
  852.     invalid option.
  853.  
  854. Tue Jun 19 01:15:18 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  855.  
  856.     * bison.simple: Fix a #line.
  857.  
  858.     * Makefile (INSTALL): New parameter.
  859.     (install): Use that.
  860.     (CFLAGS): Move definition to top.
  861.  
  862. Sun Jun 17 17:10:21 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  863.  
  864.     * reader.c (parse_type_decl): Ignore semicolon.
  865.     Remove excess % from error messages.
  866.  
  867. Sat Jun 16 19:15:48 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  868.  
  869.     * Version 1.11.
  870.  
  871.     * Makefile (install): Ensure installed files readable.
  872.  
  873. Tue Jun 12 12:50:56 EDT 1990 Jay Fenlason (hack@ai.mit.edu)
  874.  
  875.     * getargs.c: Declare spec_file_prefix
  876.  
  877.     * lex.c (lex): \a is '\007' instead of '007'
  878.  
  879.     * reader.c: include machine.h
  880.  
  881.     * files.h: Declare extern spec_name_prefix.
  882.  
  883.     Trivial patch from Thorsten Ohl (td12@ddagsi3.bitnet)
  884.  
  885. Thu May 31 22:00:16 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  886.  
  887.     * Version 1.10.
  888.  
  889.     * bison.simple (YYBACKUP, YYRECOVERING): New macros.
  890.     (YYINITDEPTH): This is what used to be YYMAXDEPTH.
  891.     (YYMAXDEPTH): This is what used to be YYMAXLIMIT.
  892.     If the value is 0, use the default instead.
  893.     (yyparse): Return 2 on stack overflow.
  894.  
  895. Wed May 30 21:09:07 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  896.  
  897.     * bison.simple (YYERROR): Jump to new label; don't print error message.
  898.     (yyparse): Define label yyerrlab1.
  899.  
  900. Wed May 16 13:23:58 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  901.  
  902.     * files.c (openfiles): Support -b.
  903.     * getargs.c (getargs): Likewise.
  904.  
  905.     * reader.c (readgram): Error if too many symbols.
  906.  
  907.     * lex.c (lex): Handle \a.  Make error msgs more reliable.
  908.     * reader.c (read_declarations): Make error msgs more reliable.
  909.  
  910. Sun May 13 15:03:37 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  911.  
  912.     * Version 1.09.
  913.  
  914.     * reduce.c (reduce_grammar_tables): Fix backward test.
  915.  
  916. Sat May 12 21:05:34 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  917.  
  918.     * Makefile (bison-dist.*): Rename targets and files to bison.*.
  919.     (bison.tar): Make tar file to unpack into subdirectory named `bison'.
  920.  
  921. Mon Apr 30 03:46:58 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  922.  
  923.     * reduce.c (reduce_grammar_tables): Set rlhs to -1 for useless rules.
  924.     * nullable.c (set_nullable): Ignore those rules.
  925.     * derives.c (set_derives): Likewise.
  926.  
  927. Mon Apr 23 15:16:09 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  928.  
  929.     * bison.simple (yyparse): Mention rule number as well as line number.
  930.  
  931. Thu Mar 29 00:00:43 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  932.  
  933.     * bison.simple (__yy_bcopy): New function.
  934.     (yyparse): Use that, not bcopy.
  935.  
  936. Wed Mar 28 15:23:51 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  937.  
  938.     * print.c (print_actions): Don't alter i and j spuriously when errp==0.
  939.  
  940. Mon Mar 12 16:22:18 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
  941.  
  942.     * bison.simple [__GNUC__]: Use builtin_alloca.
  943.  
  944. Wed Mar  7 21:11:36 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  945.  
  946.     * Makefile (install): Use mergedir.awk to process bison.simple
  947.     for installation.
  948.  
  949.     * bison.simple (yyparse): New feature to include possible valid
  950.     tokens in parse error message.
  951.  
  952. Sat Mar  3 14:10:56 1990  Richard Stallman  (rms at geech)
  953.  
  954.     * Version 1.08.
  955.  
  956. Mon Feb 26 16:32:21 1990  Jim Kingdon  (kingdon at pogo.ai.mit.edu)
  957.  
  958.     * print.c (print_actions)
  959.     conflicts.c (print_reductions): Change "shift %d" to
  960.     "shift, and go to state %d" and "reduce %d" to "reduce using rule %d"
  961.     and "goto %d" to "go to state %d".
  962.     print.c (print_core): Change "(%d)" to "(rule %d)".
  963.  
  964. Tue Feb 20 14:22:47 EST 1990    Jay Fenlason (hack @ wookumz.ai.mit.edu)
  965.  
  966.     * bison.simple:  Comment out unused yyresume: label.
  967.  
  968. Fri Feb  9 16:14:34 EST 1990    Jay Fenlason (hack @ wookumz.ai.mit.edu)
  969.  
  970.     * bison.simple :  surround all declarations and (remaining) uses of
  971.     yyls* and yylloc with #ifdef YYLSP_NEEDED  This will significantly
  972.     cut down on stack usage, and gets rid of unused-variable msgs from
  973.     GCC.
  974.  
  975. Wed Jan 31 13:06:08 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  976.  
  977.     * files.c (done) [VMS]: Don't delete files that weren't used.
  978.     [VMS]: Let user override XPFILE and XPFILE1.
  979.  
  980. Wed Jan  3 15:52:28 1990  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  981.  
  982.     * Version 1.07.
  983.  
  984. Sat Dec 16 15:50:21 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  985.  
  986.     * gram.c (dummy): New function.
  987.  
  988.     * reader.c (readgram): Detect error if two consec actions.
  989.  
  990. Wed Nov 15 02:06:08 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  991.  
  992.     * reduce.c (reduce_grammar_tables): Update rline like other tables.
  993.  
  994.     * Makefile (install): Install the man page.
  995.  
  996. Sat Nov 11 03:21:58 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  997.  
  998.     * output.c (output_rule_data): Write #if YYDEBUG around yyrline.
  999.  
  1000. Wed Oct 18 13:07:55 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1001.  
  1002.     * Version 1.06.
  1003.  
  1004.     * vmsgetargs.c (getargs): Downcase specified output file name.
  1005.  
  1006. Fri Oct 13 17:48:14 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1007.  
  1008.     * reader.c (readgram): Warn if there is no default to use for $$
  1009.     and one is needed.
  1010.  
  1011. Fri Sep 29 12:51:53 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1012.  
  1013.     * Version 1.05.
  1014.  
  1015.     * vmsgetargs.h (getargs): Process outfile option.
  1016.  
  1017. Fri Sep  8 03:05:14 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1018.  
  1019.     * Version 1.04.
  1020.  
  1021.     * reader.c (parse_union_decl): Count newlines even in comments.
  1022.  
  1023. Wed Sep  6 22:03:19 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1024.  
  1025.     * files.c (openfiles): short_base_length was always == base_length.
  1026.  
  1027. Thu Aug 24 16:55:06 1989  Richard Stallman  (rms at apple-gunkies.ai.mit.edu)
  1028.  
  1029.     * Version 1.03.
  1030.  
  1031.     * files.c (openfiles): Write output into same dir as input, by default.
  1032.  
  1033. Wed Aug 23 15:03:07 1989  Jay Fenlason  (hack at gnu)
  1034.  
  1035.     * Makefile: Include system.h in bison-dist.tar
  1036.  
  1037. Tue Aug 15 22:30:42 1989  Richard Stallman  (rms at hobbes.ai.mit.edu)
  1038.  
  1039.     * version 1.03.
  1040.  
  1041.     * reader.c (reader): Output LTYPESTR to fdefines
  1042.     only after reading the grammar.
  1043.  
  1044. Sun Aug  6 16:55:23 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1045.  
  1046.     * reader.c (read_declarations): Put space before comment
  1047.     to avoid bug in Green Hills C compiler.
  1048.  
  1049. Mon Jun 19 20:14:01 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1050.  
  1051.     * allocate.c (xmalloc): New function.
  1052.  
  1053. Fri Jun 16 23:59:40 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1054.  
  1055.     * build.com: Compile and link reduce.c.
  1056.  
  1057. Fri Jun  9 23:00:54 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1058.  
  1059.     * reduce.c (reduce_grammar_tables): Adjust start_symbol when #s change.
  1060.  
  1061. Sat May 27 17:57:29 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1062.  
  1063.     * reader.c (copy_definition, copy_guard): Don't object to \-newline
  1064.     inside strings.
  1065.  
  1066. Mon May 22 12:30:59 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1067.  
  1068.     * files.c (openfiles): Alternate file names for MSDOS.
  1069.     (open_extra_files): Likewise.
  1070.     (done): On MSDOS, unlink temp files here, not in openfiles.
  1071.  
  1072.     * machine.h (BITS_PER_WORD): 16 on MSDOS.
  1073.     (MAXTABLE): Now defined in this file.
  1074.  
  1075.     * system.h: New file includes system-dependent headers.
  1076.     All relevant .c files include it.
  1077.  
  1078. Thu Apr 27 17:00:47 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1079.  
  1080.     * version.c: Version 1.01.
  1081.  
  1082. Tue Apr 18 12:46:05 1989  Randall Smith  (randy at apple-gunkies.ai.mit.edu)
  1083.  
  1084.     * conflicts.c (total_conflicts): Fixed typo in yacc style output;
  1085.     mention conflicts if > 0.
  1086.  
  1087. Sat Apr 15 17:36:18 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1088.  
  1089.     * reader.c (packsymbols): Start new symbols after 256.
  1090.  
  1091. Wed Apr 12 14:09:09 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1092.  
  1093.     * reader.c (reader): Always assign code 256 to `error' token.
  1094.     Always set `translations' to 1 so this code gets handled.
  1095.     * bison.simple (YYERRCODE): Define it.
  1096.  
  1097. Tue Apr 11 19:26:32 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1098.  
  1099.     * conflicts.c: If GNU C, use builtin alloca.
  1100.  
  1101.     * Makefile (install): Delete parser files before copying them.
  1102.  
  1103. Thu Mar 30 13:51:17 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1104.  
  1105.     * getargs.c (getargs): Turn off checking of name Bison was invoked by.
  1106.  
  1107.     * Makefile (dist): Include ChangeLog in distrib.
  1108.  
  1109. Thu Mar 23 15:19:41 1989  Jay Fenlason  (hack at apple-gunkies.ai.mit.edu)
  1110.  
  1111.     * LR0.c closure.c conflicts.c derives.c files.c getargs.c lalr.c
  1112.     lex.c main.c nullable.c output.c print.c reader.c reduce.c
  1113.     symtab.c warshall.c:  A first pass at getting gcc -Wall to shut up.
  1114.     Mostly declared    functions as void, etc.
  1115.  
  1116.     * reduce.c moved 'extern int fixed_outfiles;' into print_notices
  1117.     where it belongs.
  1118.  
  1119. Wed Mar  1 12:33:28 1989  Randall Smith  (randy at apple-gunkies.ai.mit.edu)
  1120.  
  1121.     * types.h, symtab.h, state.h, new.h, machine.h, lex.h, gram.h,
  1122.     files.h, closure.c, vmsgetargs.c, warshall.c, symtab.c, reduce.c,
  1123.     reader.c, print.c, output.c, nullable.c, main.c, lex.c, lalr.c,
  1124.     gram.c, getargs.c, files.c, derives.c, conflicts.c, allocate.c,
  1125.     LR0.c, Makefile, bison.simple: Changed copyright notices to be in
  1126.     accord with the new General Public License.
  1127.     * COPYING: Made a link to the new copying file.
  1128.  
  1129. Wed Feb 22 06:18:20 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1130.  
  1131.     * new.h (FREE): Alternate definition for __STDC__ avoids error
  1132.     if `free' returns void.
  1133.  
  1134. Tue Feb 21 15:03:34 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1135.  
  1136.     * reader.c (read_declarations): Double a `%' in a format string.
  1137.     (copy_definition, parse_start_decl, parse_token_decl): Likewise.
  1138.     (parse_type_decl, parse_union_decl, copy_guard, readgram, get_type).
  1139.     (copy_action): change a `fatal' to `fatals'.
  1140.  
  1141.     * lalr.c (map_goto): Initial high-end of binary search was off by 1.
  1142.  
  1143. Sat Feb 18 08:49:57 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1144.  
  1145.     * bison.simple [sparc]: Include alloca.h.
  1146.  
  1147. Wed Feb 15 06:24:36 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1148.  
  1149.     * reader.c (packsymbols): Write decl of yylval into .tab.h file.
  1150.  
  1151. Sat Jan 28 18:19:05 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1152.  
  1153.     * bison.simple: Avoid comments on `#line' lines.
  1154.  
  1155.     * reader.c (LTYPESTR): Rearrange to avoid whitespace after \-newline.
  1156.  
  1157. Mon Jan  9 18:43:08 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1158.  
  1159.     * conflicts.c (total_conflicts): if -y, use output syntax POSIX wants.
  1160.     * reduce.c (print_notices): likewise.
  1161.  
  1162.     * lex.c (lex): Handle \v, and \x hex escapes.
  1163.  
  1164.     * reader.c (reader): Merge output_ltype into here.
  1165.     Don't output YYLTYPE definition to .tab.h file
  1166.     unless the @ construct is used.
  1167.  
  1168.     * bison.simple: Define YYERROR, YYABORT, YYACCEPT here.
  1169.     * reader.c (output_ltype): Don't output them here.
  1170.  
  1171.     * bison.simple: YYDEBUG now should be 0 or 1.
  1172.     * output.c (output): For YYDEBUG, output conditional to define it
  1173.     only if not previously defined.
  1174.  
  1175. Mon Jan  2 11:29:55 1989  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1176.  
  1177.     * bison.simple (yyparse) [YYPURE]: Add local yynerrs.
  1178.     (yydebug): Declare global, but don't initialize, regardless of YYPURE.
  1179.     (yyparse): Don't declare yydebug here.
  1180.  
  1181. Thu Dec 22 22:01:22 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1182.  
  1183.     * reduce.c (print_notices): Typo in message.
  1184.  
  1185. Sun Dec 11 11:32:07 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1186.  
  1187.     * output.c (pack_table): Free only nonzero the elts of froms & tos.
  1188.  
  1189. Thu Dec  8 16:26:46 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1190.  
  1191.     * gram.c (rprecsym): New vector indicates the %prec symbol for a rule.
  1192.     * reader.c (packgram): Allocate it and fill it in.
  1193.     * reduce.c (inaccessable_symbols): Use it to set V1.
  1194.     * reduce.c (print_results): Don't complain about useless token
  1195.     if it's in V1.
  1196.  
  1197. Mon Dec  5 14:33:17 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1198.  
  1199.     * machine.h (RESETBIT, BITISSET): New macros.
  1200.     (SETBIT, WORDSIZE): Change to use BITS_PER_WORD.
  1201.  
  1202.     * reduce.c: New file, by David Bakin.  Reduces the grammar.
  1203.     * Makefile: Compile it, link it, put it in dist.
  1204.  
  1205.     * main.c (main): Call reduce_grammar (in reduce.c).
  1206.  
  1207. Thu Nov 17 18:33:04 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1208.  
  1209.     * conflicts.c: Don't declare alloca if including alloca.h.
  1210.  
  1211.     * bison.cld: Define qualifiers `nolines', `debug'.
  1212.     * vmsgetargs.c (getargs): Handle them.
  1213.  
  1214.     * output.c (output_program): Notice `nolinesflag'.
  1215.  
  1216.     * output.c (output_parser): Simplify logic for -l and #line.
  1217.     Avoid writing EOF char into output.
  1218.  
  1219. Wed Oct 12 18:00:03 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1220.  
  1221.     * Implement `-l' option.
  1222.     * getopt.c: Set flag `nolinesflag'.
  1223.     * reader.c (copy_definition, parse_union_decl, copy_guard, copy_action)
  1224.     Obey that flag; don't generate #line.
  1225.     * output.c (output_parser): Discard #line's when copying the parser.
  1226.  
  1227. Mon Sep 12 16:33:17 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1228.  
  1229.     * reader.c (copy_guard): Fix brace-counting for brace-surrounded guard.
  1230.  
  1231. Thu Sep  8 20:09:53 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1232.  
  1233.     * bison.simple: Correct number in #line command.
  1234.     (yyparse): Call YYABORT instead of YYERROR, due to last change in
  1235.     output_ltype.
  1236.  
  1237. Mon Sep  5 14:55:30 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1238.  
  1239.     * Makefile: New variable LIBS.  Alternatives for USG.
  1240.     * conflicts.c [USG]: Define bcopy.
  1241.     * symtab.c [USG]: Include string.h instead of strings.h.
  1242.  
  1243.     * conflicts.c [sparc]: Include alloca.h.
  1244.  
  1245. Tue Aug  2 08:38:38 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1246.  
  1247.     * reader.c (parse_token_decl): Ignore commas.
  1248.  
  1249. Sat Jun 25 10:29:20 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1250.  
  1251.     * reader.c (output_ltype): Make YYERROR yacc-compatible (like YYFAIL).
  1252.  
  1253. Fri Jun 24 11:25:11 1988  Richard Stallman  (rms at sugar-bombs.ai.mit.edu)
  1254.  
  1255.     * getargs.c (getargs): -t sets debugflag.
  1256.     Eliminate upper case duplicate options.
  1257.     * output.c (output): If debugflag, output `#define YYDEBUG'.
  1258.  
  1259. Thu May 26 06:04:21 1988  Richard Stallman  (rms at frosted-flakes.ai.mit.edu)
  1260.  
  1261.     * allocate.c (mallocate): New name for `allocate' (which loses in VMS).
  1262.     Calls changed in LR0.c, conflicts.c, symtab.c, new.h.
  1263.  
  1264.     * getargs.c (getargs): If argv[0] is "yacc", set fixed_outfiles.
  1265.  
  1266. Tue May 17 12:15:30 1988  Richard Stallman  (rms at frosted-flakes.ai.mit.edu)
  1267.  
  1268.     * conflicts.c: Declare alloca.
  1269.     * reader.c: Declare realloc.
  1270.     * warshall.c (TC): Fix one arithmetic op that was omitted last time.
  1271.  
  1272. Thu May  5 14:36:03 1988  Richard Stallman  (rms at frosted-flakes.ai.mit.edu)
  1273.  
  1274.     * bison.simple: Conditionalize most refs to yylsp on YYLSP_NEEDED.
  1275.     * reader.c (copy_guard, copy_action): Notice if `@' is used.
  1276.     (reader): If it was, output `#define YYLSP_NEEDED'.
  1277.  
  1278. Mon Apr 18 04:54:32 1988  Richard Stallman  (rms at rice-krispies.ai.mit.edu)
  1279.  
  1280.     * bison.simple: New variable yynerr counts calls to yyerror.
  1281.  
  1282.     * lex.c (lex, case '='): Update lineno when skipping a newline.
  1283.  
  1284.     * reader.c (parse_expect_decl): ungetc the char that ends the number;
  1285.     don't read any further.  This handles multi-line comments right
  1286.     and avoids incorrect lineno.
  1287.  
  1288.     * reader.c: Delete duplicate decl of symval.
  1289.  
  1290.     * warshall.c (RTC, TC): Cast ptrs to char *, not unsigned, for arith.
  1291.