ChangeLog 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168
  1. Changes between 1.19-6 and 1.21-8
  2. - cosmetics...
  3. - bison.cc, bison.h : generalize MSDOS to WINDOWS and alike....
  4. - bison.cc, bison.h : WINDOWS: simulate alloca with malloc, via macro
  5. Changes between 1.19-6 and 1.21-7
  6. - bison.cc, bison.h : use macro to simulate goto in yyparse. for sun c++.
  7. - bison.cc : mismatch in #if between YY_USE_CLASS and compatibility just
  8. before including #define tokens. added a #endif and a #ifndef YY_USE_CLASS
  9. - generate enum to replace enventually the static const
  10. - output.c, files.c : manage to put #line in generated code, such that the generated code is correctly indicated in the output file.
  11. Changes between 1.19-5 and 1.21-6
  12. - bison.h : parameter name forgotten in
  13. 'virtual void YY_@_ERROR(char *) YY_@_ERROR_BODY;' so inline cannot use
  14. the parameter. just add the name 'msg' as parameter.
  15. Changes between 1.19-3 and 1.21-5
  16. - send on internet as patch 5
  17. - patch according to release 1.21 of bison :
  18. > Mon Sep 6 15:32:32 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  19. >
  20. > * Version 1.22 released.
  21. >
  22. > * mkinstalldirs: New file.
  23. >
  24. > * Makefile.in (dist): Use .gz for extension, not .z.
  25. > (DISTFILES): New variable.
  26. > (dist): Use it instead of explicit file list.
  27. > Try to link each file separately, then copy file if ln fails.
  28. > (installdirs): Use mkinstalldirs script.
  29. >
  30. > Thu Jul 29 20:35:02 1993 David J. MacKenzie (djm@wookumz.gnu.ai.mit.edu)
  31. >
  32. > * Makefile.in (config.status): Run config.status --recheck, not
  33. > configure, to get the right args passed.
  34. >
  35. > Sat Jul 24 04:00:52 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  36. >
  37. > * bison.simple (yyparse): Init yychar1 to avoid warning.
  38. >
  39. > Sun Jul 4 16:05:58 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  40. >
  41. > * bison.simple (yyparse): Don't set yyval when yylen is 0.
  42. >
  43. > Sat Jun 26 15:54:04 1993 David J. MacKenzie (djm@wookumz.gnu.ai.mit.edu)
  44. >
  45. > * getargs.c (getargs): Exit after printing the version number.
  46. > Add --help and -h options.
  47. > (usage): New function.
  48. >
  49. > Fri Jun 25 15:11:25 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  50. >
  51. > * getargs.c (longopts): Allow `output' as an alternative.
  52. >
  53. > Wed Jun 16 17:02:37 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  54. >
  55. > * bison.simple (yyparse): Conditionalize the entire call to yyoverflow,
  56. > not just two arguments in it.
  57. >
  58. > Thu Jun 3 13:07:19 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  59. >
  60. > * bison.simple [__hpux] (alloca): Don't specify arg types.
  61. >
  62. > Fri May 7 05:53:17 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  63. >
  64. > * Makefile.in (install): Depend on `uninstall' and `installdirs'.
  65. > (installdirs): New target.
  66. >
  67. > Wed Apr 28 15:15:15 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  68. >
  69. > * reader.c: Remove declaration of atoi.
  70. >
  71. > Fri Apr 23 12:29:20 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  72. >
  73. > * new.h [!__STDC__] (FREE): Check x != 0.
  74. > Make expr to call `free' evaluate to 0.
  75. >
  76. > Tue Apr 20 01:43:44 1993 David J. MacKenzie (djm@kropotkin.gnu.ai.mit.edu)
  77. >
  78. > * files.c [MSDOS]: Use xmalloc, not malloc.
  79. > * allocate.c (xmalloc): Renamed from mallocate. Remove old wrapper.
  80. > * conflicts.c, symtab.c, files.c, LR0.c, new.h: Change callers.
  81. > * allocate.c (xrealloc): New function.
  82. > * new.h: Declare it.
  83. > * lex.c, reader.c: Use it.
  84. >
  85. > Sun Apr 18 00:45:56 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  86. >
  87. > * Version 1.21 released.
  88. >
  89. > * reader.c : Don't declare `realloc'.
  90. >
  91. > * Makefile.in (bison.s1): use `rm -f' since it's quieter.
  92. > (dist): make gzipped tar file.
  93. >
  94. > Fri Apr 16 21:24:10 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  95. >
  96. > * Makefile.in (Makefile, config.status, configure): New targets.
  97. >
  98. > Thu Apr 15 15:37:28 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  99. >
  100. > * main.c: Don't declare `abort'.
  101. >
  102. > * files.c: Don't declare `exit'.
  103. >
  104. > Thu Apr 15 02:42:38 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  105. >
  106. > * configure.in: Add AC_CONST.
  107. >
  108. > Wed Apr 14 00:51:17 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  109. >
  110. > * Makefile.in (all): Depend on bison.s1.
  111. >
  112. > Tue Apr 13 14:52:32 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  113. >
  114. > * Version 1.20 released.
  115. >
  116. > Wed Mar 24 21:45:47 1993 Richard Stallman (rms@wookumz.gnu.ai.mit.edu)
  117. >
  118. > * output.c (output_headers): Rename yynerrs if -p.
  119. >
  120. > Thu Mar 18 00:02:17 1993 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  121. >
  122. > * system.h: Don't try to include stdlib.h unless HAVE_STDLIB_H is
  123. > defined.
  124. >
  125. > * configure.in: Check for stdlib.h.
  126. >
  127. > Wed Mar 17 14:44:27 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  128. >
  129. > * bison.simple [__hpux, not __GNUC__]: Declare alloca.
  130. > (yyparse): When printing the expected token types for an error,
  131. > Avoid negative indexes in yycheck and yytname.
  132. >
  133. > Sat Mar 13 23:31:25 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  134. >
  135. > * Makefile.in (files.o, .c.o): Put CPPFLAGS and CFLAGS last.
  136. >
  137. > Mon Mar 1 17:49:08 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  138. >
  139. > * bison.simple: Test __sgi like __sparc.
  140. >
  141. > Wed Feb 17 00:04:13 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  142. >
  143. > * conflicts.c (resolve_sr_conflict): Add extra parens in alloca call.
  144. >
  145. > * bison.simple [__GNUC__] (yyparse): Declare with prototype.
  146. >
  147. > Fri Jan 15 13:15:17 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  148. >
  149. > * conflicts.c (print_reduction): Near end, increment fp2 when mask
  150. > recycles.
  151. >
  152. > Wed Jan 13 04:15:03 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  153. >
  154. > * Makefile.in (bison.s1): New target. Modifies bison.simple.
  155. > (install): Install bison.s1, without changing it.
  156. > (clean): Delete bison.s1.
  157. >
  158. > Mon Jan 4 20:35:58 1993 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  159. >
  160. > * reader.c (reader): Put Bison version in comment in output file.
  161. >
  162. > Tue Dec 22 19:00:58 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  163. >
  164. > * files.c (openfiles): Use .output, not .out, for outfile,
  165. > regardless of spec_name_prefix.
  166. >
  167. > Tue Dec 15 19:22:11 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  168. >
  169. > * output.c (output_gram): Include yyrhs in the same #if as yyprhs.
  170. >
  171. > Tue Dec 15 18:29:16 1992 Noah Friedman (friedman@nutrimat.gnu.ai.mit.edu)
  172. >
  173. > * output.c (output): output directives checking for __cplusplus as
  174. > well as __STDC__ to determine when to define "const" as an empty
  175. > token. (Patch from Wolfgang Glunz <wogl@sun11a.zfe.siemens.de>)
  176. >
  177. > Tue Dec 8 21:51:23 1992 David J. MacKenzie (djm@kropotkin.gnu.ai.mit.edu)
  178. >
  179. > * system.h, conflicts.c: Replace USG with HAVE_STRING_H and
  180. > HAVE_MEMORY_H.
  181. >
  182. > Sat Nov 21 00:37:16 1992 David J. MacKenzie (djm@goldman.gnu.ai.mit.edu)
  183. >
  184. > * Makefile.in: Set and use $(MAKEINFO).
  185. >
  186. > Fri Nov 20 20:45:57 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  187. >
  188. > * files.c (done) [MSDOS]: Delete the tmpdefsfile with the rest.
  189. >
  190. > Thu Oct 8 21:55:52 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  191. >
  192. > * Makefile.in (dist): Put configure.bat in the distribution.
  193. >
  194. > Thu Oct 1 09:16:24 1992 David J. MacKenzie (djm@goldman.gnu.ai.mit.edu)
  195. >
  196. > * Makefile.in (install): cd to $(srcdir) before installing info files.
  197. >
  198. > Wed Sep 30 17:18:39 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  199. >
  200. > * Makefile.in (files.o): Supply $(DEFS), and $(CPPFLAGS).
  201. >
  202. Changes between 2.2 and 1.19-3
  203. - version.c : change version name to (bison version-bison++ release), ie bison++-1.19-3
  204. - Notes.txt : creation of this file, with mail transaction
  205. version 2.2 sent to compiler.ieec.com
  206. 4 may 93 A Coetmeur (coetmeur@icdc.fr). patch 2.2
  207. *system.h getopt.c bison.cc : define _MSDOS if old fashionned MSDOS if defined
  208. *bison.cc: define _MSDOS if turbo C __MSDOS__
  209. *bison.cc : include malloc.h if turboC
  210. *file.c : use _tempname instead of mktemp on DOS
  211. *file.c : delete forgoten temp file on DOS and VMS
  212. 3 may 93 A Coetmeur (coetmeur@icdc.fr). patch 2.1
  213. *bison.h bison.cc:pb with YY_@_PARSE_PARAM, never defaultly-defined
  214. in c++/class, neither in stdc. Same change in bison.h and .cc.
  215. *files.c: -S option, and -H option inoperant because test is stupidely inverted. corrected.
  216. *files.h reader.c output.c : backquote not quoted in filename (dos). created function -> quoted_filename().
  217. *reader.c : (int)0 passed to set_parser, instead of NULL, caused bug on DOS 16bit. Corrected in parse_define().
  218. *bison.cc bison.h : %define LLOC not defined by default
  219. 24 Feb 93 Alain Coetmeur (coetmeur@icdc.fr )
  220. *modifying all to support C++, and generate classes...
  221. *Option -H and -S to impose skeleton and header skeleton
  222. *use a header skeleton.
  223. *cut the 2 skeletons in many section separated by $
  224. *put much output from reader to output.c
  225. *prefix shoul not be used with classes, though do work in C
  226. *semantic parser not to be used, not supported
  227. *version 2.0 alpha, proposed ???
  228. *bison++.1 manpage made. modification are descripted.
  229. * C++ comment supported
  230. * #line automaticaly added in skeleton
  231. * coherent with flex++ version proposed by same author
  232. Fri Sep 25 18:06:28 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  233. * Version 1.19 released.
  234. * reader.c (parse_union_decl): Fix ending of C++ comment;
  235. don't lose the char after the newline.
  236. * configure.bat: New file.
  237. Thu Sep 24 16:23:15 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  238. * conflicts.c: Check for using alloca.h as getopt.c does.
  239. Sun Sep 6 08:01:53 1992 Karl Berry (karl@hayley)
  240. * files.c (openfiles): open `fdefines' after we have assigned a name
  241. to `tmpdefsfile', and only if `definesflag' is set.
  242. (done): only create the real .tab.h file if `definesflag' is set.
  243. * reader.c (packsymbols): don't close `fdefines' here.
  244. Sat Sep 5 15:02:11 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  245. * files.c (openfiles): Open fdefines as temp file, like ftable.
  246. (done): Copy temp defines file to real one, like main output file.
  247. Fri Aug 21 12:47:48 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  248. * Makefile.in (dist): Don't release mergedir.awk
  249. (install): Use sed, not awk. Don't depend on mergedir.awk.
  250. * mergedir.awk: File effectively deleted.
  251. Wed Jul 29 00:53:25 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  252. * bison.simple: Test __sparc along with __sparc__.
  253. Sat Jul 11 14:08:33 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  254. * lex.c (skip_white_space): Count \n just once at end of c++ comment.
  255. Fri Jun 26 00:00:30 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  256. * bison.simple: Comment fix; #line command updated.
  257. Wed Jun 24 15:12:42 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  258. * Makefile.in (install): Specify full new file name for the executable.
  259. Mon Jun 22 16:38:24 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  260. * Makefile.in (dist): Include bison.rnh in distribution.
  261. Sun Jun 21 22:42:13 1992 Eric Youngdale (youngdale@v6550c.nrl.navy.mil)
  262. Clean up rough edges in VMS port of bison, add support for remaining
  263. command line options.
  264. * bison.cld: Add /version, /yacc, /file_prefix, and /name_prefix
  265. switches.
  266. * build.com: General cleanup: add logic to automatically sense
  267. which C compiler is present; add code to cwd to the directory
  268. that contains bison sources; do not define XPFILE, XPFILE1
  269. (correct defaults are applied in file.c).
  270. * files.c: Append _tab, not .tab when using /file_prefix under VMS.
  271. * system.h: Include string.h instead of strings.h (a la USG).
  272. * vmsgetargs.c: Add support for all switches added to bison.cld.
  273. Sun Jun 21 15:53:26 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  274. * Makefile.in (install): Always specify new file name for install.
  275. Redirect awk output to temp file and install that.
  276. Wed May 27 22:27:50 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  277. * bison.simple (yyparse): Make yybackup and yyerrlab1 always be used.
  278. Fri May 22 14:58:42 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  279. * Makefile.in (dist): Depend on bison.info
  280. (bison.info): Delete spurious <.
  281. Sun May 17 21:48:55 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  282. * Makefile.in (.c.o): New rule. Use $(DEFS) directly.
  283. (CFLAGS): Use just -g by default.
  284. (CDEBUG): Variable deleted.
  285. Thu May 7 00:03:37 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  286. * reader.c (copy_guard): Fix typo skipping comment.
  287. Mon May 4 01:23:21 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  288. * Version 1.18.
  289. * getargs.c (getargs): Change '0' to 0 in case for long options.
  290. Sun Apr 19 10:17:52 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  291. * reader.c (packsymbols): Handle -p when declaring yylval.
  292. Sat Apr 18 18:18:48 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  293. * output.c (output_gram): Output #endif properly at end of decl.
  294. Mon Mar 30 01:13:41 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  295. * Version 1.17.
  296. * Makefile.in (clean): Don't delete configuration files or TAGS.
  297. (distclean): New target; do delete those.
  298. Sat Mar 28 17:18:50 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  299. * output.c (output_gram): Conditionalize yyprhs on YYDEBUG.
  300. * LR0.c (augment_automaton): If copying sp->shifts to insert new
  301. shift, handle case of inserting at end.
  302. Sat Mar 21 23:25:47 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  303. * lex.c (skip_white_space): Handle C++ comments.
  304. * reader.c (copy_definition, parse_union_decl, copy_guard):
  305. (copy_action): Likewise.
  306. Sun Mar 8 01:22:21 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  307. * bison.simple (YYPOPSTACK): Fix typo.
  308. Sat Feb 29 03:53:06 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  309. * Makefile.in (install): Install bison.info* files one by one.
  310. Fri Feb 28 19:55:30 1992 David J. MacKenzie (djm@wookumz.gnu.ai.mit.edu)
  311. * bison.1: Document long options as starting with `--', not `+'.
  312. Sat Feb 1 00:08:09 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  313. * getargs.c (getargs): Accept value 0 from getopt_long.
  314. Thu Jan 30 23:39:15 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  315. * Makefile.in (mostlyclean): Renamed from `clean'.
  316. (clean): Renamed from 'distclean'. Dep on mostlyclean, not realclean.
  317. (realclean): Dep on clean.
  318. Mon Jan 27 21:59:19 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  319. * bison.simple: Use malloc, not xmalloc, and handle failure explicitly.
  320. Sun Jan 26 22:40:04 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  321. * conflicts.c (total_conflicts): Delete unused arg to fprintf.
  322. Tue Jan 21 23:17:44 1992 Richard Stallman (rms@mole.gnu.ai.mit.edu)
  323. * Version 1.16.
  324. Mon Jan 6 16:50:11 1992 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  325. * Makefile (distclean): Depend on clean, not realclean. Don't rm TAGS.
  326. (realclean): rm TAGS here.
  327. * symtab.c (free_symtab): Don't free the type names.
  328. Sun Dec 29 22:25:40 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  329. * machine.h: MSDOS has 32-bit ints if __GO32__.
  330. Wed Dec 25 22:09:07 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
  331. * bison.simple [_AIX]: Indent `#pragma alloca', so old C compilers
  332. don't choke on it.
  333. Mon Dec 23 02:10:16 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  334. * getopt.c, getopt1.c, getopt.h: Link them to standard source location.
  335. * alloca.c: Likewise.
  336. * Makefile.in (dist): Copy those files from current dir.
  337. * getargs.c: Update usage message.
  338. * LR0.c (augment_automaton): Put new shift in proper order.
  339. Fri Dec 20 18:39:20 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  340. * conflicts.c: Use memcpy if ANSI C library.
  341. * closure.c (set_fderives): Delete redundant assignment to vrow.
  342. * closure.c (print_firsts): Fix bounds and offset checking tags.
  343. * closure.c (tags): Declare just once at start of file.
  344. * LR0.c (allocate_itemsets): Eliminate unused var max.
  345. (augment_automaton): Test sp is non-null.
  346. * lalr.c (initialize_LA): Make the vectors at least 1 element long.
  347. * reader.c (readgram): Remove separate YYSTYPE default for MSDOS.
  348. Wed Dec 18 02:40:32 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  349. * print.c (print_grammar): Don't print disabled rules.
  350. Tue Dec 17 03:48:07 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  351. * lex.c (lex): Parse hex escapes properly.
  352. Handle \v when filling token_buffer.
  353. * lex.c: Include new.h.
  354. (token_buffer): Change to a pointer.
  355. (init_lex): Allocate initial buffer.
  356. (grow_token_buffer): New function.
  357. (lex, parse_percent_token): Use that.
  358. * reader.c (read_declarations): Call open_extra_files just once.
  359. (parse_token_decl): Don't free previous typename value.
  360. Don't increment nvars if symbol is already a nonterminal.
  361. (parse_union_decl): Catch unmatched close-brace.
  362. (parse_expect_decl): Null-terminate buffer.
  363. (copy_guard): Set brace_flag for {, not for }.
  364. * reader.c: Fix %% in calls to fatal.
  365. * reader.c (token_buffer): Just one extern decl, at top level.
  366. Declare as pointer.
  367. * symtab.c (free_symtab): Free type_name fields. Free symtab itself.
  368. Mon Nov 25 23:04:31 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  369. * bison.simple: Handle alloca for AIX.
  370. * Makefile.in (mandir): Compute default using manext.
  371. Sat Nov 2 21:39:32 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
  372. * Update all files to GPL version 2.
  373. Fri Sep 6 01:51:36 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  374. * bison.simple (__yy_bcopy): Use builtin if GCC version 2.
  375. Mon Aug 26 22:09:12 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  376. * reader.c (parse_assoc_decl): Error if same symbol gets two precs.
  377. Mon Aug 26 16:42:09 1991 David J. MacKenzie (djm at pogo.gnu.ai.mit.edu)
  378. * Makefile.in, configure: Only put $< in Makefile if using VPATH,
  379. because older makes don't understand it.
  380. Fri Aug 23 00:05:54 1991 David J. MacKenzie (djm at apple-gunkies)
  381. * conflicts.c [_AIX]: #pragma alloca.
  382. * reduce.c: Don't define TRUE and FALSE if already defined.
  383. Mon Aug 12 22:49:58 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  384. * Makefile.in: Add deps on system.h.
  385. (install): Add some deps.
  386. Fri Aug 2 12:19:20 1991 David J. MacKenzie (djm at apple-gunkies)
  387. * Makefile.in (dist): Include texinfo.tex.
  388. * configure: Create config.status. Remove it and Makefile if
  389. interrupted while creating them.
  390. Thu Aug 1 23:14:01 1991 David J. MacKenzie (djm at apple-gunkies)
  391. * configure: Check for +srcdir etc. arg and look for
  392. Makefile.in in that directory. Set VPATH if srcdir is not `.'.
  393. * Makefile.in (prefix): Renamed from DESTDIR.
  394. Wed Jul 31 21:29:47 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  395. * print.c (print_grammar): Make output prettier. Break lines.
  396. Tue Jul 30 22:38:01 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  397. * print.c (print_grammar): New function.
  398. (verbose): Call it instead of printing token names here.
  399. Mon Jul 22 16:39:54 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  400. * vmsgetargs.c (spec_name_prefix, spec_file_prefix): Define variables.
  401. Wed Jul 10 01:38:25 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
  402. * configure, Makefile.in: $(INSTALLPROG) -> $(INSTALL),
  403. $(INSTALLTEXT) -> $(INSTALLDATA).
  404. Tue Jul 9 00:53:58 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
  405. * bison.simple: Don't include malloc.h if __TURBOC__.
  406. Sat Jul 6 15:18:12 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
  407. * Replace Makefile with configure and Makefile.in.
  408. Update README with current compilation instructions.
  409. Mon Jul 1 23:12:20 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  410. * reader.c (reader): Make the output define YYBISON.
  411. Thu Jun 20 16:52:51 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
  412. * Makefile (MANDIR, MANEXT): Install man page in
  413. /usr/local/man/man1/bison.1 by default, instead of
  414. /usr/man/manl/bison.l, for consistency with other GNU programs.
  415. * Makefile: Rename BINDIR et al. to lowercase to conform to
  416. GNU coding standards.
  417. (install): Make man page non-executable.
  418. Fri May 31 23:22:13 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  419. * Makefile (bison.info): New target.
  420. (realclean): New target.
  421. Thu May 2 16:36:19 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  422. * bison.simple: Use YYPRINT to print a token, if it's defined.
  423. Mon Apr 29 12:22:55 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  424. * lalr.c (transpose): Rename R to R_arg.
  425. (initialize_LA): Avoid shadowing variable j.
  426. * reader.c (packsymbols): Avoid shadowing variable i.
  427. * files.c: Declare exit and perror.
  428. * machine.h: Define MAXSHORT and MINSHORT for the eta-10.
  429. Tue Apr 2 20:49:12 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  430. * allocate.c (mallocate): Always allocate at least one byte.
  431. Tue Mar 19 22:17:19 1991 Richard Stallman (rms at mole.gnu.ai.mit.edu)
  432. * Makefile (dist): Put alloca.c into distribution.
  433. Wed Mar 6 17:45:42 1991 Richard Stallman (rms at mole.ai.mit.edu)
  434. * print.c (print_actions): Nicer output for final states.
  435. Thu Feb 21 20:39:53 1991 Richard Stallman (rms at mole.ai.mit.edu)
  436. * output.c (output_rule_data): Break lines in yytline based on hpos.
  437. Thu Feb 7 12:54:36 1991 Richard Stallman (rms at mole.ai.mit.edu)
  438. * bison.simple (yyparse): Move decl of yylsa before use.
  439. Tue Jan 15 23:41:33 1991 Richard Stallman (rms at mole.ai.mit.edu)
  440. * Version 1.14.
  441. * output.c (output_rule_data): Handle NULL in tags[i].
  442. Fri Jan 11 17:27:24 1991 Richard Stallman (rms at mole.ai.mit.edu)
  443. * bison.simple: On MSDOS, include malloc.h.
  444. Sat Dec 29 19:59:55 1990 David J. MacKenzie (djm at wookumz.ai.mit.edu)
  445. * files.c: Use `mallocate' instead of `xmalloc' so no extra decl is
  446. needed.
  447. Wed Dec 19 18:31:21 1990 Richard Stallman (rms at mole.ai.mit.edu)
  448. * reader.c (readgram): Alternate YYSTYPE defn for MSDOS.
  449. * files.c [MSDOS]: Declare xmalloc.
  450. Thu Dec 13 12:45:54 1990 Richard Stallman (rms at mole.ai.mit.edu)
  451. * output.c (output_rule_data): Put all symbols in yytname.
  452. * bison.simple (yyparse): Delete extra fprintf arg
  453. when printing a result of reduction.
  454. Mon Dec 10 13:55:15 1990 Richard Stallman (rms at mole.ai.mit.edu)
  455. * reader.c (packsymbols): Don't declare yylval if pure_parser.
  456. Tue Oct 30 23:38:09 1990 Richard Stallman (rms at mole.ai.mit.edu)
  457. * Version 1.12.
  458. * LR0.c (augment_automaton): Fix bugs adding sp2 to chain of shifts.
  459. Tue Oct 23 17:41:49 1990 Richard Stallman (rms at mole.ai.mit.edu)
  460. * bison.simple: Don't define alloca if already defined.
  461. Sun Oct 21 22:10:53 1990 Richard Stallman (rms at mole.ai.mit.edu)
  462. * getopt.c: On VMS, use string.h.
  463. * main.c (main): Return type int.
  464. Mon Sep 10 16:59:01 1990 Richard Stallman (rms at mole.ai.mit.edu)
  465. * output.c (output_headers): Output macro defs for -p.
  466. * reader.c (readgram): Handle consecutive actions.
  467. * getargs.c (getargs): Rename -a to -p.
  468. * files.c (openfiles): Change names used for -b.
  469. Mon Aug 27 00:30:15 1990 Richard Stallman (rms at mole.ai.mit.edu)
  470. * reduce.c (reduce_grammar_tables): Don't map rlhs of disabled rule.
  471. Sun Aug 26 13:43:32 1990 Richard Stallman (rms at mole.ai.mit.edu)
  472. * closure.c (print_firsts, print_fderives): Use BITISSET to test bits.
  473. Thu Aug 23 22:13:40 1990 Richard Stallman (rms at mole.ai.mit.edu)
  474. * closure.c (print_firsts): vrowsize => varsetsize.
  475. (print_fderives): rrowsize => rulesetsize.
  476. Fri Aug 10 15:32:11 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  477. * bison.simple (alloca): Don't define if already defined.
  478. (__yy_bcopy): Alternate definition for C++.
  479. Wed Jul 11 00:46:03 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
  480. * getargs.c (getargs): Mention +yacc in usage message.
  481. Tue Jul 10 17:29:08 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  482. * reader.c (parse_token_decl, copy_action):
  483. Set value_components_used if appropriate.
  484. (readgram): Inhibit output of YYSTYPE definition in that case.
  485. Sat Jun 30 13:47:57 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  486. * output.c (output_parser): Define YYPURE if pure, and not otherwise.
  487. Don't define YYIMPURE.
  488. * bison.simple: Adjust conditionals accordingly.
  489. * bison.simple (YYLEX): If locations not in use, don't pass &yylloc.
  490. Thu Jun 28 12:32:21 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  491. * getargs.c (longopts): Add `yacc'.
  492. Thu Jun 28 00:40:21 1990 David J. MacKenzie (djm at apple-gunkies)
  493. * getargs.c (getargs): Add long options.
  494. * Makefile: Link with getopt1.o and add getopt1.c and getopt.h to
  495. dist.
  496. * Move version number and description back into version.c from
  497. Makefile and getargs.c.
  498. * Makefile (dist): Extract version number from version.c.
  499. Tue Jun 26 13:16:35 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  500. * output.c (output): Always call output_gram.
  501. * bison.simple (yyparse): Print rhs and lhs symbols of reduction rule.
  502. Thu Jun 21 00:15:40 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
  503. * main.c: New global var `program_name' to hold argv[0] for error
  504. messages.
  505. * allocate.c, files.c, getargs.c, reader.c: Use `program_name'
  506. in messages instead of hardcoded "bison".
  507. Wed Jun 20 23:38:34 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
  508. * Makefile: Specify Bison version here. Add rule to pass it to
  509. version.c. Encode it in distribution directory and tar file names.
  510. * version.c: Use version number from Makefile.
  511. * getargs.c (getargs): Print additional text that used to be part of
  512. version_string in version.c. Use -V instead of -version to print
  513. Bison version info. Print a usage message and exit if given an
  514. invalid option.
  515. Tue Jun 19 01:15:18 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  516. * bison.simple: Fix a #line.
  517. * Makefile (INSTALL): New parameter.
  518. (install): Use that.
  519. (CFLAGS): Move definition to top.
  520. Sun Jun 17 17:10:21 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  521. * reader.c (parse_type_decl): Ignore semicolon.
  522. Remove excess % from error messages.
  523. Sat Jun 16 19:15:48 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  524. * Version 1.11.
  525. * Makefile (install): Ensure installed files readable.
  526. Tue Jun 12 12:50:56 EDT 1990 Jay Fenlason (hack@ai.mit.edu)
  527. * getargs.c: Declare spec_file_prefix
  528. * lex.c (lex): \a is '\007' instead of '007'
  529. * reader.c: include machine.h
  530. * files.h: Declare extern spec_name_prefix.
  531. Trivial patch from Thorsten Ohl (td12@ddagsi3.bitnet)
  532. Thu May 31 22:00:16 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  533. * Version 1.10.
  534. * bison.simple (YYBACKUP, YYRECOVERING): New macros.
  535. (YYINITDEPTH): This is what used to be YYMAXDEPTH.
  536. (YYMAXDEPTH): This is what used to be YYMAXLIMIT.
  537. If the value is 0, use the default instead.
  538. (yyparse): Return 2 on stack overflow.
  539. Wed May 30 21:09:07 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  540. * bison.simple (YYERROR): Jump to new label; don't print error message.
  541. (yyparse): Define label yyerrlab1.
  542. Wed May 16 13:23:58 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  543. * files.c (openfiles): Support -b.
  544. * getargs.c (getargs): Likewise.
  545. * reader.c (readgram): Error if too many symbols.
  546. * lex.c (lex): Handle \a. Make error msgs more reliable.
  547. * reader.c (read_declarations): Make error msgs more reliable.
  548. Sun May 13 15:03:37 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  549. * Version 1.09.
  550. * reduce.c (reduce_grammar_tables): Fix backward test.
  551. Sat May 12 21:05:34 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  552. * Makefile (bison-dist.*): Rename targets and files to bison.*.
  553. (bison.tar): Make tar file to unpack into subdirectory named `bison'.
  554. Mon Apr 30 03:46:58 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  555. * reduce.c (reduce_grammar_tables): Set rlhs to -1 for useless rules.
  556. * nullable.c (set_nullable): Ignore those rules.
  557. * derives.c (set_derives): Likewise.
  558. Mon Apr 23 15:16:09 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  559. * bison.simple (yyparse): Mention rule number as well as line number.
  560. Thu Mar 29 00:00:43 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  561. * bison.simple (__yy_bcopy): New function.
  562. (yyparse): Use that, not bcopy.
  563. Wed Mar 28 15:23:51 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  564. * print.c (print_actions): Don't alter i and j spuriously when errp==0.
  565. Mon Mar 12 16:22:18 1990 Jim Kingdon (kingdon at pogo.ai.mit.edu)
  566. * bison.simple [__GNUC__]: Use builtin_alloca.
  567. Wed Mar 7 21:11:36 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  568. * Makefile (install): Use mergedir.awk to process bison.simple
  569. for installation.
  570. * bison.simple (yyparse): New feature to include possible valid
  571. tokens in parse error message.
  572. Sat Mar 3 14:10:56 1990 Richard Stallman (rms at geech)
  573. * Version 1.08.
  574. Mon Feb 26 16:32:21 1990 Jim Kingdon (kingdon at pogo.ai.mit.edu)
  575. * print.c (print_actions)
  576. conflicts.c (print_reductions): Change "shift %d" to
  577. "shift, and go to state %d" and "reduce %d" to "reduce using rule %d"
  578. and "goto %d" to "go to state %d".
  579. print.c (print_core): Change "(%d)" to "(rule %d)".
  580. Tue Feb 20 14:22:47 EST 1990 Jay Fenlason (hack @ wookumz.ai.mit.edu)
  581. * bison.simple: Comment out unused yyresume: label.
  582. Fri Feb 9 16:14:34 EST 1990 Jay Fenlason (hack @ wookumz.ai.mit.edu)
  583. * bison.simple : surround all declarations and (remaining) uses of
  584. yyls* and yylloc with #ifdef YYLSP_NEEDED This will significantly
  585. cut down on stack usage, and gets rid of unused-variable msgs from
  586. GCC.
  587. Wed Jan 31 13:06:08 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  588. * files.c (done) [VMS]: Don't delete files that weren't used.
  589. [VMS]: Let user override XPFILE and XPFILE1.
  590. Wed Jan 3 15:52:28 1990 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  591. * Version 1.07.
  592. Sat Dec 16 15:50:21 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  593. * gram.c (dummy): New function.
  594. * reader.c (readgram): Detect error if two consec actions.
  595. Wed Nov 15 02:06:08 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  596. * reduce.c (reduce_grammar_tables): Update rline like other tables.
  597. * Makefile (install): Install the man page.
  598. Sat Nov 11 03:21:58 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  599. * output.c (output_rule_data): Write #if YYDEBUG around yyrline.
  600. Wed Oct 18 13:07:55 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  601. * Version 1.06.
  602. * vmsgetargs.c (getargs): Downcase specified output file name.
  603. Fri Oct 13 17:48:14 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  604. * reader.c (readgram): Warn if there is no default to use for $$
  605. and one is needed.
  606. Fri Sep 29 12:51:53 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  607. * Version 1.05.
  608. * vmsgetargs.h (getargs): Process outfile option.
  609. Fri Sep 8 03:05:14 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  610. * Version 1.04.
  611. * reader.c (parse_union_decl): Count newlines even in comments.
  612. Wed Sep 6 22:03:19 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  613. * files.c (openfiles): short_base_length was always == base_length.
  614. Thu Aug 24 16:55:06 1989 Richard Stallman (rms at apple-gunkies.ai.mit.edu)
  615. * Version 1.03.
  616. * files.c (openfiles): Write output into same dir as input, by default.
  617. Wed Aug 23 15:03:07 1989 Jay Fenlason (hack at gnu)
  618. * Makefile: Include system.h in bison-dist.tar
  619. Tue Aug 15 22:30:42 1989 Richard Stallman (rms at hobbes.ai.mit.edu)
  620. * version 1.03.
  621. * reader.c (reader): Output LTYPESTR to fdefines
  622. only after reading the grammar.
  623. Sun Aug 6 16:55:23 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  624. * reader.c (read_declarations): Put space before comment
  625. to avoid bug in Green Hills C compiler.
  626. Mon Jun 19 20:14:01 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  627. * allocate.c (xmalloc): New function.
  628. Fri Jun 16 23:59:40 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  629. * build.com: Compile and link reduce.c.
  630. Fri Jun 9 23:00:54 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  631. * reduce.c (reduce_grammar_tables): Adjust start_symbol when #s change.
  632. Sat May 27 17:57:29 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  633. * reader.c (copy_definition, copy_guard): Don't object to \-newline
  634. inside strings.
  635. Mon May 22 12:30:59 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  636. * files.c (openfiles): Alternate file names for MSDOS.
  637. (open_extra_files): Likewise.
  638. (done): On MSDOS, unlink temp files here, not in openfiles.
  639. * machine.h (BITS_PER_WORD): 16 on MSDOS.
  640. (MAXTABLE): Now defined in this file.
  641. * system.h: New file includes system-dependent headers.
  642. All relevant .c files include it.
  643. Thu Apr 27 17:00:47 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  644. * version.c: Version 1.01.
  645. Tue Apr 18 12:46:05 1989 Randall Smith (randy at apple-gunkies.ai.mit.edu)
  646. * conflicts.c (total_conflicts): Fixed typo in yacc style output;
  647. mention conflicts if > 0.
  648. Sat Apr 15 17:36:18 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  649. * reader.c (packsymbols): Start new symbols after 256.
  650. Wed Apr 12 14:09:09 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  651. * reader.c (reader): Always assign code 256 to `error' token.
  652. Always set `translations' to 1 so this code gets handled.
  653. * bison.simple (YYERRCODE): Define it.
  654. Tue Apr 11 19:26:32 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  655. * conflicts.c: If GNU C, use builtin alloca.
  656. * Makefile (install): Delete parser files before copying them.
  657. Thu Mar 30 13:51:17 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  658. * getargs.c (getargs): Turn off checking of name Bison was invoked by.
  659. * Makefile (dist): Include ChangeLog in distrib.
  660. Thu Mar 23 15:19:41 1989 Jay Fenlason (hack at apple-gunkies.ai.mit.edu)
  661. * LR0.c closure.c conflicts.c derives.c files.c getargs.c lalr.c
  662. lex.c main.c nullable.c output.c print.c reader.c reduce.c
  663. symtab.c warshall.c: A first pass at getting gcc -Wall to shut up.
  664. Mostly declared functions as void, etc.
  665. * reduce.c moved 'extern int fixed_outfiles;' into print_notices()
  666. where it belongs.
  667. Wed Mar 1 12:33:28 1989 Randall Smith (randy at apple-gunkies.ai.mit.edu)
  668. * types.h, symtab.h, state.h, new.h, machine.h, lex.h, gram.h,
  669. files.h, closure.c, vmsgetargs.c, warshall.c, symtab.c, reduce.c,
  670. reader.c, print.c, output.c, nullable.c, main.c, lex.c, lalr.c,
  671. gram.c, getargs.c, files.c, derives.c, conflicts.c, allocate.c,
  672. LR0.c, Makefile, bison.simple: Changed copyright notices to be in
  673. accord with the new General Public License.
  674. * COPYING: Made a link to the new copying file.
  675. Wed Feb 22 06:18:20 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  676. * new.h (FREE): Alternate definition for __STDC__ avoids error
  677. if `free' returns void.
  678. Tue Feb 21 15:03:34 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  679. * reader.c (read_declarations): Double a `%' in a format string.
  680. (copy_definition, parse_start_decl, parse_token_decl): Likewise.
  681. (parse_type_decl, parse_union_decl, copy_guard, readgram, get_type).
  682. (copy_action): change a `fatal' to `fatals'.
  683. * lalr.c (map_goto): Initial high-end of binary search was off by 1.
  684. Sat Feb 18 08:49:57 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  685. * bison.simple [sparc]: Include alloca.h.
  686. Wed Feb 15 06:24:36 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  687. * reader.c (packsymbols): Write decl of yylval into .tab.h file.
  688. Sat Jan 28 18:19:05 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  689. * bison.simple: Avoid comments on `#line' lines.
  690. * reader.c (LTYPESTR): Rearrange to avoid whitespace after \-newline.
  691. Mon Jan 9 18:43:08 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  692. * conflicts.c (total_conflicts): if -y, use output syntax POSIX wants.
  693. * reduce.c (print_notices): likewise.
  694. * lex.c (lex): Handle \v, and \x hex escapes.
  695. * reader.c (reader): Merge output_ltype into here.
  696. Don't output YYLTYPE definition to .tab.h file
  697. unless the @ construct is used.
  698. * bison.simple: Define YYERROR, YYABORT, YYACCEPT here.
  699. * reader.c (output_ltype): Don't output them here.
  700. * bison.simple: YYDEBUG now should be 0 or 1.
  701. * output.c (output): For YYDEBUG, output conditional to define it
  702. only if not previously defined.
  703. Mon Jan 2 11:29:55 1989 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  704. * bison.simple (yyparse) [YYPURE]: Add local yynerrs.
  705. (yydebug): Declare global, but don't initialize, regardless of YYPURE.
  706. (yyparse): Don't declare yydebug here.
  707. Thu Dec 22 22:01:22 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  708. * reduce.c (print_notices): Typo in message.
  709. Sun Dec 11 11:32:07 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  710. * output.c (pack_table): Free only nonzero the elts of froms & tos.
  711. Thu Dec 8 16:26:46 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  712. * gram.c (rprecsym): New vector indicates the %prec symbol for a rule.
  713. * reader.c (packgram): Allocate it and fill it in.
  714. * reduce.c (inaccessable_symbols): Use it to set V1.
  715. * reduce.c (print_results): Don't complain about useless token
  716. if it's in V1.
  717. Mon Dec 5 14:33:17 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  718. * machine.h (RESETBIT, BITISSET): New macros.
  719. (SETBIT, WORDSIZE): Change to use BITS_PER_WORD.
  720. * reduce.c: New file, by David Bakin. Reduces the grammar.
  721. * Makefile: Compile it, link it, put it in dist.
  722. * main.c (main): Call reduce_grammar (in reduce.c).
  723. Thu Nov 17 18:33:04 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  724. * conflicts.c: Don't declare alloca if including alloca.h.
  725. * bison.cld: Define qualifiers `nolines', `debug'.
  726. * vmsgetargs.c (getargs): Handle them.
  727. * output.c (output_program): Notice `nolinesflag'.
  728. * output.c (output_parser): Simplify logic for -l and #line.
  729. Avoid writing EOF char into output.
  730. Wed Oct 12 18:00:03 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  731. * Implement `-l' option.
  732. * getopt.c: Set flag `nolinesflag'.
  733. * reader.c (copy_definition, parse_union_decl, copy_guard, copy_action)
  734. Obey that flag; don't generate #line.
  735. * output.c (output_parser): Discard #line's when copying the parser.
  736. Mon Sep 12 16:33:17 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  737. * reader.c (copy_guard): Fix brace-counting for brace-surrounded guard.
  738. Thu Sep 8 20:09:53 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  739. * bison.simple: Correct number in #line command.
  740. (yyparse): Call YYABORT instead of YYERROR, due to last change in
  741. output_ltype.
  742. Mon Sep 5 14:55:30 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  743. * Makefile: New variable LIBS. Alternatives for USG.
  744. * conflicts.c [USG]: Define bcopy.
  745. * symtab.c [USG]: Include string.h instead of strings.h.
  746. * conflicts.c [sparc]: Include alloca.h.
  747. Tue Aug 2 08:38:38 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  748. * reader.c (parse_token_decl): Ignore commas.
  749. Sat Jun 25 10:29:20 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  750. * reader.c (output_ltype): Make YYERROR yacc-compatible (like YYFAIL).
  751. Fri Jun 24 11:25:11 1988 Richard Stallman (rms at sugar-bombs.ai.mit.edu)
  752. * getargs.c (getargs): -t sets debugflag.
  753. Eliminate upper case duplicate options.
  754. * output.c (output): If debugflag, output `#define YYDEBUG'.
  755. Thu May 26 06:04:21 1988 Richard Stallman (rms at frosted-flakes.ai.mit.edu)
  756. * allocate.c (mallocate): New name for `allocate' (which loses in VMS).
  757. Calls changed in LR0.c, conflicts.c, symtab.c, new.h.
  758. * getargs.c (getargs): If argv[0] is "yacc", set fixed_outfiles.
  759. Tue May 17 12:15:30 1988 Richard Stallman (rms at frosted-flakes.ai.mit.edu)
  760. * conflicts.c: Declare alloca.
  761. * reader.c: Declare realloc.
  762. * warshall.c (TC): Fix one arithmetic op that was omitted last time.
  763. Thu May 5 14:36:03 1988 Richard Stallman (rms at frosted-flakes.ai.mit.edu)
  764. * bison.simple: Conditionalize most refs to yylsp on YYLSP_NEEDED.
  765. * reader.c (copy_guard, copy_action): Notice if `@' is used.
  766. (reader): If it was, output `#define YYLSP_NEEDED'.
  767. Mon Apr 18 04:54:32 1988 Richard Stallman (rms at rice-krispies.ai.mit.edu)
  768. * bison.simple: New variable yynerr counts calls to yyerror.
  769. * lex.c (lex, case '='): Update lineno when skipping a newline.
  770. * reader.c (parse_expect_decl): ungetc the char that ends the number;
  771. don't read any further. This handles multi-line comments right
  772. and avoids incorrect lineno.
  773. * reader.c: Delete duplicate decl of symval.
  774. * warshall.c (RTC, TC): Cast ptrs to char *, not unsigned, for arith.
  775. Local Variables:
  776. mode: indented-text
  777. left-margin: 8
  778. fill-column: 76
  779. version-control: never
  780. End: