]>
Commit | Line | Data |
---|---|---|
499daa50 AD |
1 | 2000-09-20 Akim Demaille <akim@epita.fr> |
2 | ||
3 | * src/acconfig.h: Don't protect config.h against multiple | |
4 | inclusion. | |
5 | Don't define PARAMS. | |
6 | * src/system.h: Define PARAMS. | |
7 | Remove some of the ad-hoc CPP magic for DOS, VMS etc.: this is the | |
8 | purpose of config.h. system.h must not try to fix wrong | |
9 | definitions in config.h. | |
10 | ||
cc84fd5d AD |
11 | 2000-09-20 Akim Demaille <akim@epita.fr> |
12 | ||
13 | * src/derives.h: New file. | |
14 | * src/main.c, src/derives.h: Use it. | |
15 | Formatting changes. | |
16 | * src/Makefile.am (noinst_HEADERS): Adjust. | |
17 | ||
db5b3a89 AD |
18 | 2000-09-20 Akim Demaille <akim@epita.fr> |
19 | ||
20 | * tests/atgeneral.m4: Update from Autoconf. | |
21 | * tests/calc.m4 (_AT_DATA_CALC_Y, AT_DATA_CALC_Y, _AT_CHECK_CALC) | |
22 | (AT_CHECK_CALC): New macros. | |
23 | Use these macros to test bison with options `', `--raw', | |
24 | `--debug', `--yacc', `--yacc --debug'. | |
25 | ||
ceed8467 AD |
26 | 2000-09-19 Akim Demaille <akim@epita.fr> |
27 | ||
28 | * src/output.c: Formatting changes. | |
29 | * src/machine.h: Remove, leaving its contents in... | |
30 | * src/system.h: here. | |
31 | Include stdio.h. | |
32 | Adjust all dependencies on stdio.h and machine.h. | |
33 | * src/getargs.h: New file. | |
34 | Let all `extern' declarations about getargs.c be replaced with | |
35 | inclusion of `getargs.h'. | |
36 | * src/Makefile.am (noinst_HEADERS): Adjust. | |
37 | ||
38 | * tests/calc.m4 (yyin): Be initialized in main, not on the global | |
39 | scope. | |
40 | (yyerror): Returns void, not int. | |
41 | * doc/bison.texinfo: Formatting changes. | |
42 | ||
05a1d24b AD |
43 | 2000-09-19 Akim Demaille <akim@epita.fr> |
44 | ||
45 | * tests/calc.m4 (calc.y): Do not assign to stdin, as it's not | |
46 | portable. | |
47 | ||
cbd25751 AD |
48 | 2000-09-18 Akim Demaille <akim@epita.fr> |
49 | ||
50 | * configure.in: Append WARNING_CFLAGS to CFLAGS. | |
51 | * src/Makefile.am (INCLUDES): Don't. | |
52 | Be ready to fetch headers in lib/. | |
53 | ||
13863333 AD |
54 | 2000-09-18 Akim Demaille <akim@epita.fr> |
55 | ||
56 | * doc/bison.texinfo: Update the copyright. | |
57 | ANSIfy and GNUify the examples. | |
58 | Remove the old menu. | |
59 | ||
0d533154 AD |
60 | 2000-09-18 Akim Demaille <akim@epita.fr> |
61 | ||
62 | First set of tests: use the `calc' example from the documentation. | |
63 | ||
64 | * src/bison.s1 (yyparse): Condition the code using `yytname' which | |
65 | is defined only when YYDEBUG is. | |
66 | * m4/atconfig.m4 (AT_CONFIG): Adjust to Autoconf 2.13. | |
67 | * src/files.c (tryopen, tryclose): Formatting changes. | |
68 | Move to the top and be static. | |
69 | * src/reader.c (read_signed_integer): Likewise. | |
70 | * tests/calc.m4: New file. | |
71 | * Makefile.am, suite.m4: Adjust. | |
72 | * m4/atconfig.m4: Set BISON_SIMPLE and BISON_HAIRY. | |
73 | ||
e79137ac AD |
74 | 2000-09-18 Akim Demaille <akim@epita.fr> |
75 | ||
76 | Add support for an Autotest test suite for Bison. | |
77 | ||
78 | * m4/m4.m4, m4/atconfig.m4: New files. | |
79 | * m4/Makefile.am (EXTRA_DIST): Adjust. | |
80 | * tests/suite.m4, tests/Makefile.am, tests/atgeneral.m4: New | |
81 | files. | |
82 | * src/getargs.c: Display a more standard --version message. | |
83 | * src/reader.c (reader): Formatting changes. | |
84 | No longer depend upon VERSION_STRING. | |
85 | * configure.in: No longer use `dnl'. | |
86 | Set up the test suite and the new directory `tests/. | |
87 | (VERSION_STRING): Remove. | |
88 | ||
27821bff AD |
89 | 2000-04-14 Akim Demaille <akim@epita.fr> |
90 | ||
91 | * src/reader.c (copy_comment2): New function, same as former | |
92 | `copy_comment', but outputs into two FILE *. | |
93 | (copy_comment): Use it. | |
94 | (parse_union_decl): Use it. | |
95 | (get_type, parse_start_decl): Use the same `invalid' message. | |
96 | (parse_start_decl, parse_union_decl): Use the same `multiple' | |
97 | message. | |
98 | (parse_union_decl, copy_guard, copy_action): Use the same | |
99 | `unmatched' message. | |
100 | * m4/Makefile.am (EXTRA_DIST): Add `warning.m4'. | |
101 | ||
cfe5fbc0 AD |
102 | 2000-03-31 Akim Demaille <akim@epita.fr> |
103 | ||
104 | * src/files.c (tryopen, tryclose): Move to the top. | |
105 | Be static. | |
106 | ||
cb7db13e AD |
107 | 2000-03-31 Akim Demaille <akim@epita.fr> |
108 | ||
109 | * src/main.c (main): Don't call `done', exit does it. | |
110 | ||
a0f6b076 AD |
111 | 2000-03-31 Akim Demaille <akim@epita.fr> |
112 | ||
36281465 AD |
113 | * allocate.c: s/return (foo)/return foo/. |
114 | * lalr.c: Likewise. | |
115 | * LR0.c: Likewise. | |
116 | * output.c: Likewise. | |
117 | * reader.c: Likewise. | |
118 | * symtab.c: Likewise. | |
119 | * vmsgetargs.c: Likewise. | |
120 | ||
121 | 2000-03-31 Akim Demaille <akim@epita.fr> | |
122 | ||
123 | Clean up the error reporting functions. | |
a0f6b076 AD |
124 | |
125 | * src/report.c: New file. | |
126 | * src/report.h: Likewise. | |
127 | * src/Makefile.am: Adjust. | |
128 | * m4/error.m4: New file. | |
129 | * m4/Makefile.am: Adjust. | |
130 | * configure.in (jm_PREREQ_ERROR): Call it. | |
131 | * src/main.c (int_to_string, banner, fatal_banner, warn_banner): | |
132 | Remove. | |
133 | (fatal, fatals): Remove. All callers use complain.c::fatal. | |
134 | (warn, warni, warns, warnss, warnss): Remove. All callers use | |
135 | complain.c::complain. | |
136 | (toomany): Remove, use fatal instead. | |
137 | * src/files.c (done): No argument, use complain_message_count. | |
138 | * src/main.c (main): Register `done' to `atexit'. | |
139 | ||
140 | * src/getargs.c (usage): More `fputs', less `fprintf'. | |
141 | ||
18539825 AD |
142 | 2000-03-28 Akim Demaille <akim@epita.fr> |
143 | ||
144 | * lib/: New directory. | |
145 | * Makefile.am (SUBDIRS): Adjust. | |
146 | * configure.in: Adjust. | |
147 | (LIBOBJS): Although not used yet, AC_SUBST it, otherwise it's | |
148 | useless. | |
149 | * src/alloca.c: Moved to lib/. | |
150 | * src/getopt.c: Likewise. | |
151 | * src/getopt1.c: Likewise. | |
152 | * src/getopt.h: Likewise. | |
153 | * src/ansi2knr.c: Likewise. | |
154 | * src/ansi2knr.1: Likewise. | |
155 | * src/Makefile.am: Adjust. | |
156 | * lib/Makefile.am: New file. | |
157 | ||
9f306f2a AD |
158 | 2000-03-28 Akim Demaille <akim@epita.fr> |
159 | ||
160 | * src/getargs.c (usage): Refresh the help message. | |
161 | ||
0ba347b6 AD |
162 | 2000-03-17 Akim Demaille <akim@epita.fr> |
163 | ||
164 | * src/getopt1.c: Updated from textutils 2.0e | |
165 | * src/getopt.c: Likewise. | |
166 | * src/getopt.h: Likewise. | |
167 | ||
dbe7f271 AD |
168 | 2000-03-17 Akim Demaille <akim@epita.fr> |
169 | ||
170 | * src/Makefile.am (bison.simple): Fix the awk program: quote only | |
171 | the file name, not the whole `#line LINE FILE'. | |
172 | ||
75bbe78d AD |
173 | 2000-03-17 Akim Demaille <akim@epita.fr> |
174 | ||
175 | On syntax errors, report the token on which we choked. | |
176 | ||
aa5fd0ee AD |
177 | * src/bison.s1 (yyparse): In the label yyerrlab, when |
178 | YYERROR_VERBOSE, add yychar in msg. | |
75bbe78d | 179 | |
7b306f52 AD |
180 | 2000-03-17 Akim Demaille <akim@epita.fr> |
181 | ||
aa5fd0ee | 182 | * src/reader.c (copy_at): New function. |
7b306f52 AD |
183 | (copy_guard): Use it. |
184 | (copy_action): Use it. | |
185 | ||
e87b5700 AD |
186 | 2000-03-17 Akim Demaille <akim@epita.fr> |
187 | ||
188 | Be kind to translators, save some useless translations. | |
189 | ||
aa5fd0ee | 190 | * src/main.c (banner): New function. |
e87b5700 AD |
191 | (fatal_banner): Use it. |
192 | (warn_banner): Use it. | |
193 | ||
ae3c3164 AD |
194 | 2000-03-17 Akim Demaille <akim@epita.fr> |
195 | ||
aa5fd0ee AD |
196 | * src/reader.c (copy_definition): Use copy_string and |
197 | copy_comment. Removed now unused `match', `ended', | |
198 | `cplus_comment'. | |
ae3c3164 AD |
199 | (copy_comment, copy_string): Moved, to be visible from |
200 | copy_definition. | |
201 | ||
4dc58e7c AD |
202 | 2000-03-17 Akim Demaille <akim@epita.fr> |
203 | ||
aa5fd0ee AD |
204 | * src/reader.c (copy_string): Declare `static inline'. No |
205 | problems with inline, since it is checked by configure. | |
4dc58e7c AD |
206 | (copy_comment): Likewise. |
207 | ||
0a6384c4 AD |
208 | 2000-03-17 Akim Demaille <akim@epita.fr> |
209 | ||
aa5fd0ee | 210 | * src/reader.c (packsymbols): Formatting changes. |
0a6384c4 | 211 | |
3cef001a AD |
212 | 2000-03-17 Akim Demaille <akim@epita.fr> |
213 | ||
aa5fd0ee | 214 | * src/reader.c (copy_comment): New function, factored out from: |
3cef001a AD |
215 | (copy_action): Use it. Removed now unused `match', `ended', |
216 | `cplus_comment'. | |
217 | (copy_guard): Likewise. | |
218 | ||
ca36d2ef AD |
219 | 2000-03-17 Akim Demaille <akim@epita.fr> |
220 | ||
aa5fd0ee | 221 | * src/reader.c (copy_string): New function, factored out from: |
ca36d2ef AD |
222 | (copy_action): Use it. |
223 | (copy_guard): Likewise. | |
224 | ||
6666f98f AD |
225 | 2000-03-17 Akim Demaille <akim@epita.fr> |
226 | ||
227 | Change the handling of @s so that they behave exactly like $s. | |
228 | There is now a pseudo variable @$ (readble and writable), location | |
229 | of the lhs of the rule (by default ranging from the location of | |
230 | the first symbol of the rhs, to the location of the last symbol, | |
231 | or, if the rhs is empty, YYLLOC). | |
232 | ||
233 | * src/bison.s1 [YYLSP_NEEDED] (yyloc): New variable, twin of | |
234 | yyval. | |
235 | (yyparse): When providing a default semantic action, provide a | |
236 | default location action. | |
237 | (after the $): No longer change `*YYLSP', just stack YYLOC the | |
238 | same way you stack YYVAL. | |
239 | * src/reader.c (read_declarations): Use warns. | |
240 | (copy_guard, case '@'): Also recognize `@$', expanded as `YYLOC'. | |
241 | (copy_action, case '@'): Likewise. | |
242 | Use a standard error message, to save useless work from | |
243 | translators. | |
244 | ||
41aca2e0 AD |
245 | 2000-03-17 Akim Demaille <akim@epita.fr> |
246 | ||
aa5fd0ee AD |
247 | * src/bison.s1: Formatting and cosmetics changes. |
248 | * src/reader.c: Likewise. | |
41aca2e0 AD |
249 | Update the Copyright notice. |
250 | ||
dc08c1d5 AD |
251 | 2000-03-17 Akim Demaille <akim@epita.fr> |
252 | ||
aa5fd0ee AD |
253 | * src/bison.s1 (#line): All set to `#line' only, since the |
254 | Makefile now handles them. | |
dc08c1d5 | 255 | |
9ee3c97b AD |
256 | 2000-03-16 Akim Demaille <akim@epita.fr> |
257 | ||
258 | * src/output.c (output_rule_data): Output the documentation of | |
259 | some of the tables. | |
260 | (Copyright notice): Update. | |
261 | Formatting changes. | |
262 | ||
0de741ca AD |
263 | 2000-03-16 Akim Demaille <akim@epita.fr> |
264 | ||
265 | * src/bison.s1 [!YYDEBUG]: Define yydebug to 0. This allows to | |
266 | remove most `#if YYDEBUG != 0', since `if (yydebug)' is enough. | |
267 | One `#if YYDEBUG' remains, since it uses variables which are | |
268 | defined only if `YYDEBUG != 0'. | |
269 | ||
bb10be54 AD |
270 | 2000-03-16 Akim Demaille <akim@epita.fr> |
271 | ||
272 | * src/bison.s1 (yyparse): Reorganize the definitions of the stacks | |
273 | and related variables so that the similarities are highlighted. | |
274 | ||
b07b484a AD |
275 | 2000-03-16 Akim Demaille <akim@epita.fr> |
276 | ||
277 | * src/bison.s1: Properly indent CPP directives. | |
278 | ||
361f60b3 AD |
279 | 2000-03-16 Akim Demaille <akim@epita.fr> |
280 | ||
281 | * src/bison.s1: Properly indent the `alloca' CPP section. | |
282 | ||
8c44d3ec AD |
283 | 2000-03-16 Akim Demaille <akim@epita.fr> |
284 | ||
285 | Do not hard code values of directories in `configure.in'. | |
286 | Update the `configure' tool chain. | |
287 | ||
288 | * configure.in (XPFILE, XPFILE1, LOCALEDIR): Remove, handled by | |
289 | src/makefile.am. | |
290 | (VERSION_STRING): Use the third arg of AC_DEFINE_UNQUOTED. | |
291 | (AC_OUTPUT): Add m4/Makefile. | |
292 | Bump to bison 1.28a, 1.29 has never been released. | |
293 | * acconfig.h (XPFILE, XPFILE1, LOCALEDIR): Remove, since they are | |
294 | handled via src/Makefile.am. | |
295 | (VERSION_STRING, PROTOTYPES, ENABLE_NLS, HAVE_CATGETS, | |
296 | HAVE_GETTEXT, HAVE_LC_MESSAGES, HAVE_STPCPY): Remove, handled by | |
297 | autoheader. | |
298 | * Makefile.am (SUBDIRS): Add m4. | |
299 | (ACLOCAL_AM_FLAGS): New variable. | |
300 | (AUTOMAKE_OPTIONS): Add check-news. | |
301 | * src/Makefile.am (bison.simple): Use awk to replace #line lines with | |
302 | the proper line number and file name. | |
303 | (DEFS): Propagate the location of bison library files and of the | |
304 | locale files. | |
305 | (INCLUDES): Added `-I ..' so that one can compile with srcdir != | |
306 | builddir. | |
307 | * acinclude.m4: Remove, replaced by the directory m4. | |
308 | * m4/Makefile.am (EXTRA_DIST): New variable. | |
309 | * m4/gettext.m4: New file, from the fileutils. | |
310 | * m4/lcmessage.m4: Likewise | |
311 | * m4/progtest.m4: Likewise. | |
312 | * m4/bison-decl.m4: New file, extracted from former acinclude.m4. | |
313 | ||
f95997e7 AD |
314 | 2000-03-10 Akim Demaille <akim@epita.fr> |
315 | ||
316 | * src/closure.c: | |
317 | Formatting changes of various comments. | |
318 | Respect the GNU coding standards at various places. | |
319 | Don't use `_()' when no translation is needed. | |
320 | ||
321 | 1999-12-13 Jesse Thilo <jthilo@gnu.org> | |
322 | ||
323 | * src/files.c: | |
324 | OS/2 honors TMPDIR environment variable. | |
325 | ||
326 | 1999-12-13 Jesse Thilo <jthilo@gnu.org> | |
327 | ||
328 | * doc/bison.texinfo: Tweaked spelling and grammar. | |
329 | Updated ISBN. | |
330 | Removed reference to price of printed copy. | |
331 | Mention BISON_SIMPLE and BISON_HAIRY. | |
332 | ||
333 | 1999-12-13 Jesse Thilo <jthilo@gnu.org> | |
334 | ||
335 | * configure.in, NEWS: | |
336 | Bison 1.29 released. | |
337 | ||
338 | 1999-10-27 Jesse Thilo <jthilo@gnu.org> | |
339 | ||
340 | * doc/.cvsignore, doc/Makefile.am, doc/refcard.tex: | |
341 | Added reference card. | |
342 | ||
343 | 1999-07-26 Jesse Thilo <jthilo@gnu.org> | |
344 | ||
345 | * po/ru.po: Added Russian translation. | |
346 | ||
347 | 1999-07-26 Jesse Thilo <jthilo@gnu.org> | |
348 | ||
349 | * configure.in: Added Russian translation. | |
350 | ||
351 | 1999-07-06 Jesse Thilo <jthilo@gnu.org> | |
352 | ||
353 | * configure.in, NEWS, README: | |
354 | Released version 1.28. | |
355 | ||
356 | 1999-06-14 Jesse Thilo <jthilo@gnu.org> | |
357 | ||
358 | * src/system.h: | |
359 | Squashed redefinition warning on some systems. | |
360 | ||
361 | * src/getargs.c, src/Makefile.am, src/reader.c, src/version.c: | |
362 | Have configure build version string instead of relying on ANSI string | |
363 | concatentation. | |
364 | ||
365 | 1999-06-14 Jesse Thilo <jthilo@gnu.org> | |
366 | ||
367 | * po/POTFILES.in: Got rid of version.c. | |
368 | ||
369 | 1999-06-14 Jesse Thilo <jthilo@gnu.org> | |
370 | ||
371 | * acconfig.h, configure.in: | |
372 | Have configure build version string instead of relying on ANSI string | |
373 | concatentation. | |
374 | ||
375 | 1999-06-08 Jesse Thilo <jthilo@gnu.org> | |
376 | ||
377 | * doc/bison.1: | |
378 | Dropped mention of `+' for long-named options. | |
379 | ||
380 | 1999-05-30 Jesse Thilo <jthilo@gnu.org> | |
381 | ||
382 | * src/files.c: Added <unistd.h> for unlink(). | |
383 | ||
384 | * src/Makefile.am, src/system.h: | |
385 | I18n fixes. | |
386 | ||
387 | 1999-05-30 Jesse Thilo <jthilo@gnu.org> | |
388 | ||
389 | * README: Added a FAQ list. | |
390 | ||
391 | * configure.in, acconfig.h: | |
392 | I18n fixes. | |
393 | ||
394 | 1999-05-30 Jesse Thilo <jthilo@gnu.org> | |
395 | ||
396 | * doc/FAQ, doc/Makefile.am: | |
397 | Added a FAQ list. | |
398 | ||
399 | 1999-05-19 Jesse Thilo <jthilo@gnu.org> | |
400 | ||
401 | * src/alloc.h, src/symtab.h, src/version.c: | |
402 | Protected inclusion of "config.h" with HAVE_CONFIG_H. | |
403 | ||
404 | 1999-04-18 Jesse Thilo <jthilo@gnu.org> | |
405 | ||
406 | * src/.cvsignore, src/Makefile.am: | |
407 | Reorganized: sources in `src', documentation in `doc'. | |
408 | ||
409 | * src/lex.c (literalchar): | |
410 | fixed the code for escaping double quotes (thanks | |
411 | Jonathan Czisny.) | |
412 | ||
413 | 1999-04-18 Jesse Thilo <jthilo@gnu.org> | |
414 | ||
415 | * po/de.po, po/es.po, po/fr.po, po/nl.po, po/POTFILES.in: | |
416 | Adjusted paths to reflect directory reorganization. | |
417 | ||
418 | 1999-04-18 Jesse Thilo <jthilo@gnu.org> | |
419 | ||
420 | * doc/.cvsignore, doc/Makefile.am: | |
421 | Reorganized: sources in `src', documentation in `doc'. | |
422 | ||
423 | 1999-04-18 Jesse Thilo <jthilo@gnu.org> | |
424 | ||
425 | * configure.in: | |
426 | Updated AC_INIT file to reflect directory reorganization. | |
427 | ||
428 | * configure.in, .cvsignore, Makefile.am, POTFILES.in: | |
429 | Reorganized: sources in `src', documentation in `doc'. | |
430 | ||
431 | 1999-04-13 Jesse Thilo <jthilo@gnu.org> | |
432 | ||
433 | * src/allocate.c: | |
434 | Don't declare calloc() and realloc() if not necessary. | |
435 | ||
436 | 1999-04-13 Jesse Thilo <jthilo@gnu.org> | |
437 | ||
438 | * configure.in, acconfig.h, acinclude.m4: | |
439 | Don't declare calloc() and realloc() if not necessary. | |
440 | ||
441 | 1999-03-23 Jesse Thilo <jthilo@gnu.org> | |
442 | ||
443 | * po/.cvsignore: Added i18n support. | |
444 | ||
445 | 1999-03-23 Jesse Thilo <jthilo@gnu.org> | |
446 | ||
447 | * acconfig.h, configure.in, Makefile.am: | |
448 | Added i18n support. | |
449 | ||
450 | 1999-03-22 Jesse Thilo <jthilo@gnu.org> | |
451 | ||
452 | * src/bison.s1: Fixed #line numbers. | |
453 | ||
454 | 1999-03-15 Jesse Thilo <jthilo@gnu.org> | |
455 | ||
456 | * po/es.po, po/fr.po, po/nl.po, po/de.po: | |
457 | Added PO files from Translation Project. | |
458 | ||
459 | 1999-03-03 Jesse Thilo <jthilo@gnu.org> | |
460 | ||
461 | * Makefile.am: | |
462 | Added support for non-ANSI compilers (ansi2knr). | |
463 | ||
464 | 1999-02-16 Jesse Thilo <jthilo@gnu.org> | |
465 | ||
466 | * configure.in: Bumped version number to 1.27. | |
467 | ||
468 | * Makefile.am: | |
469 | Added `bison.simple' to list of files removed by `make distclean'. | |
470 | ||
471 | 1999-02-12 Jesse Thilo <jthilo@gnu.org> | |
472 | ||
473 | * src/files.c, src/files.h: | |
474 | Defined locations of parser files in config.h instead of Makefile. | |
475 | ||
476 | 1999-02-12 Jesse Thilo <jthilo@gnu.org> | |
477 | ||
478 | * acconfig.h, acinclude.m4, configure.in, Makefile.am: | |
479 | Defined locations of parser files in config.h instead of Makefile. | |
480 | ||
481 | 1999-02-09 Jesse Thilo <jthilo@gnu.org> | |
482 | ||
483 | * Makefile.am: | |
484 | Removed inappropriate use of $< macro. | |
485 | ||
486 | 1999-02-05 Jesse Thilo <jthilo@gnu.org> | |
487 | ||
488 | * po/Makefile.in.in, po/POTFILES.in: | |
489 | Add `po' directory skeleton. | |
490 | ||
491 | 1999-01-27 Jesse Thilo <jthilo@gnu.org> | |
492 | ||
493 | * README: Document help-bison list. | |
494 | ||
495 | * configure.in: Add check for mkstemp(). | |
496 | ||
497 | 1999-01-20 Jesse Thilo <jthilo@gnu.org> | |
498 | ||
499 | * src/conflicts.c, src/LR0.c, src/output.c, src/reader.c: | |
500 | Hush a few compiler warnings. | |
501 | ||
502 | * src/files.c: | |
503 | Add tryclose(), which verifies that fclose was successful. | |
504 | Hush a couple of compiler warnings. | |
505 | ||
506 | 1999-01-20 Jesse Thilo <jthilo@gnu.org> | |
507 | ||
508 | * Makefile.am, OChangeLog: | |
509 | ChangeLog is now automatically generated. Include the old version as | |
510 | OChangeLog. | |
511 | ||
512 | 1999-01-14 Jesse Thilo <jthilo@gnu.org> | |
513 | ||
514 | * src/gram.h, src/lalr.c, src/lex.c, src/lex.h, src/machine.h, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/state.h, src/symtab.c, src/symtab.h, src/types.h, src/vmsgetargs.c, src/warshall.c, src/allocate.c, src/alloc.h, src/bison.s1, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/files.h, src/getargs.c, src/gram.c, src/LR0.c: | |
515 | Update FSF address. | |
516 | ||
517 | 1999-01-14 Jesse Thilo <jthilo@gnu.org> | |
518 | ||
519 | * doc/bison.texinfo: Fix formatting glitch. | |
520 | ||
521 | * doc/bison.texinfo: Update FSF address. | |
522 | ||
523 | 1999-01-14 Jesse Thilo <jthilo@gnu.org> | |
524 | ||
525 | * acconfig.h: Update FSF address. | |
526 | ||
527 | 1999-01-08 Jesse Thilo <jthilo@gnu.org> | |
528 | ||
529 | * src/system.h: | |
530 | Don't define PACKAGE here, since config.h defines it. | |
531 | ||
532 | 1998-12-30 Jesse Thilo <jthilo@gnu.org> | |
533 | ||
534 | * src/reader.c: Update copyright date. | |
535 | ||
536 | * src/main.c: | |
537 | Ditch sprintf to statically-sized buffers in fatal/warn functions in | |
538 | favor of output directly to stderr (avoids buffer overruns). | |
539 | ||
540 | * src/reader.c: Some checks for premature EOF. | |
541 | ||
542 | * src/allocate.c, src/alloc.h, src/closure.c, src/conflicts.c, src/derives.c, src/getargs.c, src/gram.c, src/lalr.c, src/lex.c, src/LR0.c, src/main.c, src/nullable.c, src/output.c, src/print.c, src/reduce.c, src/symtab.c, src/symtab.h, src/warshall.c: | |
543 | Use prototypes if the compiler understands them. | |
544 | ||
545 | * src/files.c: Honor TMPDIR on Unix hosts. | |
546 | Use prototypes if the compiler understands them. | |
547 | ||
548 | * src/reader.c: | |
549 | Fix a couple of buffer overrun bugs. | |
550 | Use prototypes if the compiler understands them. | |
551 | ||
552 | * src/system.h: Include unistd.h and ctype.h. | |
553 | Use #ifdef instead of #if for NLS symbols. | |
554 | ||
555 | 1998-12-30 Jesse Thilo <jthilo@gnu.org> | |
556 | ||
557 | * doc/bison.texinfo: | |
558 | Delete comment "consider using @set for edition number, etc..." since | |
559 | we now are doing so. | |
560 | ||
561 | 1998-12-30 Jesse Thilo <jthilo@gnu.org> | |
562 | ||
563 | * configure.in: | |
564 | Use prototypes if the compiler understands them. | |
565 | ||
566 | * NEWS: Document 1.26 highlights. | |
567 | ||
568 | * Makefile.am: Require Automake 1.3 or later. | |
569 | ||
570 | * acconfig.h: | |
571 | Use prototypes if the compiler understands them. | |
572 | ||
573 | 1998-12-29 Jesse Thilo <jthilo@gnu.org> | |
574 | ||
575 | * src/version.c: | |
576 | Use VERSION symbol from automake for version number. | |
577 | ||
578 | 1998-12-29 Jesse Thilo <jthilo@gnu.org> | |
579 | ||
580 | * acconfig.h, configure.in, version.cin: | |
581 | Use VERSION symbol from automake for version number. | |
582 | ||
583 | 1998-11-28 Jesse Thilo <jthilo@gnu.org> | |
584 | ||
585 | * Makefile.am: | |
586 | Distribute original version of simple parser (bison.s1), not built | |
587 | version (bison.simple). | |
588 | ||
589 | 1998-11-28 Jesse Thilo <jthilo@gnu.org> | |
590 | ||
591 | * doc/bison.texinfo: Add info dir entry. | |
592 | ||
593 | * doc/bison.texinfo: | |
594 | Let automake put version number into documentation. | |
595 | ||
596 | 1998-11-26 Jesse Thilo <jthilo@gnu.org> | |
597 | ||
598 | * src/bison.cld, src/build.com, src/vmshlp.mar: | |
599 | Add non-RCS files from /gd/gnu/bison. | |
600 | ||
601 | 1998-11-26 Jesse Thilo <jthilo@gnu.org> | |
602 | ||
603 | * doc/bison.1: | |
604 | Document the BISON_HAIRY and BISON_SIMPLE variables. | |
605 | ||
606 | 1998-11-25 Jesse Thilo <jthilo@gnu.org> | |
607 | ||
608 | * src/version.c: Build version.c automatically. | |
609 | ||
610 | * src/reader.c: | |
611 | Fix token numbering (used to start at 258, not 257). | |
612 | ||
613 | * src/system.h: Include config.h. | |
614 | ||
615 | * src/getargs.c: Update bug report address. | |
616 | ||
617 | * src/alloca.c, src/getopt1.c, src/getopt.c, src/getopt.h: | |
618 | Get latest copies of alloca.c, getopt.c, getopt.h, getopt1.c from gnu.org. | |
619 | ||
620 | 1998-11-25 Jesse Thilo <jthilo@gnu.org> | |
621 | ||
622 | * Makefile.am: | |
623 | Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1). | |
624 | ||
625 | * configure.in, version.cin: | |
626 | Build version.c automatically. | |
627 | ||
628 | * AUTHORS: Add AUTHORS file. | |
629 | ||
630 | * README: Update bug report address. | |
631 | ||
632 | * bison.simple: | |
633 | Rename bison.simple to bison.s1 (bison.simple is then built from bison.s1). | |
634 | ||
635 | * configure.in, Makefile.am, Makefile.in, stamp-h.in: | |
636 | Add automake stuff. | |
637 | ||
638 | 1998-11-25 Jesse Thilo <jthilo@gnu.org> | |
639 | ||
640 | * doc/bison.texinfo: Clean up some formatting. | |
641 | ||
642 | 1998-05-05 Richard Stallman <rms@gnu.org> | |
643 | ||
644 | * doc/bison.texinfo: | |
645 | Explain better why to make a pure parser. | |
646 | ||
647 | 1998-01-05 Richard Stallman <rms@gnu.org> | |
648 | ||
649 | * src/files.c (openfiles): | |
650 | [_WIN32 && !__CYGWIN32__] Use TEMP or Temp to | |
651 | find a temporary directory, if possible. Do not unlink files while | |
652 | they are open. | |
653 | ||
654 | 1997-08-25 Richard Stallman <rms@gnu.org> | |
655 | ||
656 | * src/reader.c (stack_offset;): | |
657 | Change some warni to warns. | |
658 | ||
659 | * src/lex.c (literalchar): Use warns, not warni. | |
660 | ||
661 | 1997-06-28 Richard Stallman <rms@gnu.org> | |
662 | ||
663 | * src/bison.s1: Add a Bison version comment. | |
664 | ||
665 | * src/main.c (fatal, warn, berror): | |
666 | Use program_name. | |
667 | ||
668 | 1997-06-28 Richard Stallman <rms@gnu.org> | |
669 | ||
670 | * Makefile.in (bison_version): New variable. | |
671 | (dist): Use that variable. | |
672 | (bison.s1): Substitute the Bison version into bison.simple. | |
673 | ||
674 | * bison.simple: Add a Bison version comment. | |
675 | ||
676 | 1997-06-18 Richard Stallman <rms@gnu.org> | |
677 | ||
678 | * src/main.c (fatal, warn, berror): | |
679 | Make error messages standard. | |
680 | (toomany): Improve error message text. | |
681 | ||
682 | * src/LR0.c, src/closure.c, src/conflicts.c, src/derives.c, src/files.c, src/lalr.c, src/lex.c, src/nullable.c, src/output.c, src/print.c, src/reader.c, src/reduce.c, src/symtab.c: | |
683 | new.h renamed to alloc.h. | |
684 | ||
685 | 1997-06-18 Richard Stallman <rms@gnu.org> | |
686 | ||
687 | * Makefile.in: new.h renamed to alloc.h. | |
688 | ||
689 | 1997-05-24 Richard Stallman <rms@gnu.org> | |
690 | ||
691 | * src/lex.c (literalchar): | |
692 | Fix the code for escaping \, " and '. | |
693 | ||
694 | (lex): Avoid trouble when there are many chars | |
695 | to discard in a char literal with just several chars in it. | |
696 | ||
697 | 1997-05-17 Richard Stallman <rms@gnu.org> | |
698 | ||
699 | * src/bison.s1: | |
700 | Use malloc, if using alloca is troublesome. | |
701 | (YYSTACK_USE_ALLOCA): New flag macro. | |
702 | Define it for some systems and compilers. | |
703 | (YYSTACK_ALLOC): New macro. | |
704 | (yyparse): Use YYSTACK_ALLOC to allocate stack. | |
705 | If it was malloc'd, free it. | |
706 | ||
707 | 1997-05-17 Richard Stallman <rms@gnu.org> | |
708 | ||
709 | * bison.simple: | |
710 | Use malloc, if using alloca is troublesome. | |
711 | (YYSTACK_USE_ALLOCA): New flag macro. | |
712 | Define it for some systems and compilers. | |
713 | (YYSTACK_ALLOC): New macro. | |
714 | (yyparse): Use YYSTACK_ALLOC to allocate stack. | |
715 | If it was malloc'd, free it. | |
716 | ||
717 | 1997-04-23 Richard Stallman <rms@gnu.org> | |
718 | ||
719 | * src/bison.s1: | |
720 | (alloca) [__hpux]: Always define as __builtin_alloca. | |
721 | ||
722 | 1997-04-23 Richard Stallman <rms@gnu.org> | |
723 | ||
724 | * bison.simple: | |
725 | (alloca) [__hpux]: Always define as __builtin_alloca. | |
726 | ||
727 | 1997-04-22 Richard Stallman <rms@gnu.org> | |
728 | ||
729 | * src/bison.s1: | |
730 | [__hpux]: Include alloca.h (right for HPUX 10) | |
731 | instead of declaring alloca (right for HPUX 9). | |
732 | ||
733 | * src/bison.s1 (__yy_memcpy): | |
734 | Declare arg `count' as unsigned int. | |
735 | (yyparse): Cast third arg to __yy_memcpy to unsigned int. | |
736 | ||
737 | 1997-04-22 Richard Stallman <rms@gnu.org> | |
738 | ||
739 | * bison.simple: | |
740 | [__hpux]: Include alloca.h (right for HPUX 10) | |
741 | instead of declaring alloca (right for HPUX 9). | |
742 | ||
743 | * bison.simple (__yy_memcpy): | |
744 | Declare arg `count' as unsigned int. | |
745 | (yyparse): Cast third arg to __yy_memcpy to unsigned int. | |
746 | ||
747 | 1997-01-03 Richard Stallman <rms@gnu.org> | |
748 | ||
749 | * src/allocate.c: [__STDC__ or _MSC_VER]: | |
750 | Declare calloc and realloc to return void *. | |
751 | ||
752 | 1997-01-02 Richard Stallman <rms@gnu.org> | |
753 | ||
754 | * src/system.h: | |
755 | [_MSC_VER]: Include stdlib.h and process.h. | |
756 | [_MSC_VER] (getpid): Define as macro--translate it to _getpid. | |
757 | ||
758 | * src/main.c (main): Return FAILURE as a value. | |
759 | (printable_version): Declare arg as int, not char. | |
760 | ||
761 | 1997-01-02 Richard Stallman <rms@gnu.org> | |
762 | ||
763 | * Makefile.in (dist): | |
764 | Explicitly check for symlinks, and copy them. | |
765 | ||
766 | 1996-12-19 Richard Stallman <rms@gnu.org> | |
767 | ||
768 | * src/files.c: | |
769 | [_MSC_VER] (XPFILE, XPFILE1): Define, if not already defined. | |
770 | ||
771 | 1996-12-18 Paul Eggert <eggert@gnu.org> | |
772 | ||
773 | * src/bison.s1 (yyparse): | |
774 | If __GNUC__ and YYPARSE_PARAM are both defined, | |
775 | declare yyparse to have a void * argument. | |
776 | ||
777 | 1996-12-18 Paul Eggert <eggert@gnu.org> | |
778 | ||
779 | * bison.simple (yyparse): | |
780 | If __GNUC__ and YYPARSE_PARAM are both defined, | |
781 | declare yyparse to have a void * argument. | |
782 | ||
783 | 1996-12-17 Richard Stallman <rms@gnu.org> | |
784 | ||
785 | * src/reduce.c (nbits): Add some casts. | |
786 | ||
787 | 1996-08-12 Richard Stallman <rms@gnu.org> | |
788 | ||
789 | * src/bison.s1: Test _MSDOS as well as _MSDOS_. | |
790 | ||
791 | 1996-08-12 Richard Stallman <rms@gnu.org> | |
792 | ||
793 | * bison.simple: Test _MSDOS as well as _MSDOS_. | |
794 | ||
795 | 1996-07-31 Richard Stallman <rms@gnu.org> | |
796 | ||
797 | * src/bison.s1: | |
798 | [__sun && __i386]: Include alloca.h. | |
799 | ||
800 | 1996-07-31 Richard Stallman <rms@gnu.org> | |
801 | ||
802 | * bison.simple: | |
803 | [__sun && __i386]: Include alloca.h. | |
804 | ||
805 | 1996-07-30 Richard Stallman <rms@gnu.org> | |
806 | ||
807 | * src/bison.s1: Comment change. | |
808 | ||
809 | * src/bison.s1: Test _MSDOS_, not MSDOS. | |
810 | ||
811 | 1996-07-30 Richard Stallman <rms@gnu.org> | |
812 | ||
813 | * bison.simple: Comment change. | |
814 | ||
815 | * bison.simple: Test _MSDOS_, not MSDOS. | |
816 | ||
817 | 1996-06-01 Richard Stallman <rms@gnu.org> | |
818 | ||
819 | * src/reduce.c, src/reader.c, src/print.c, src/output.c, src/nullable.c, src/lex.c, src/lalr.c, src/getargs.c, src/derives.c, src/conflicts.c, src/closure.c, src/allocate.c: | |
820 | Insert `_' macro around many string constants. | |
821 | ||
822 | * src/main.c: | |
823 | Insert `_' macro around many string constants. | |
824 | ||
825 | (main): Call setlocale, bindtextdomain and textdomain. | |
826 | ||
827 | * src/system.h: [HAVE_LOCALE_H]: Include locale.h. | |
828 | [! HAVE_LOCALE_H] (setlocale): Define as no-op. | |
829 | [ENABLE_NLS]: Include libintl.h. | |
830 | [ENABLE_NLS] (gettext): Define. | |
831 | [! ENABLE_NLS] (bintextdomain, textdomain, _): Consolation definitions. | |
832 | (N_, PACKAGE, LOCALEDIR): New macros. | |
833 | ||
834 | 1996-06-01 Richard Stallman <rms@gnu.org> | |
835 | ||
836 | * POTFILES.in: New file. | |
837 | ||
838 | * Makefile.in (allocate.o): | |
839 | Define target explicitly. | |
840 | ||
841 | * Makefile.in (CFLAGS): Set to @CFLAGS@. | |
842 | (LDFLAGS): Set to @LDFLAGS@. | |
843 | (configure): Run autoconf only if preceding `cd' succeeds. | |
844 | (bison.s1): Redirect output to temporary file then move the | |
845 | temporary to the target, rather than redirecting directly to bison.s1. | |
846 | (clean): Remove config.status and config.log. | |
847 | (distclean): Don't remove config.status here. | |
848 | ||
849 | 1996-05-12 Richard Stallman <rms@gnu.org> | |
850 | ||
851 | * src/bison.s1: | |
852 | (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t. | |
853 | ||
854 | 1996-05-12 Richard Stallman <rms@gnu.org> | |
855 | ||
856 | * bison.simple: | |
857 | (__yy_memcpy) [__cplusplus]: Reorder declarations of variables f and t. | |
858 | ||
859 | 1996-05-11 Richard Stallman <rms@gnu.org> | |
860 | ||
861 | * src/bison.s1 (__yy_memcpy): | |
862 | Really reorder the args, as was supposedly done on Feb 14 1995. | |
863 | (yyparse): Calls changed accordingly. | |
864 | ||
865 | 1996-05-11 Richard Stallman <rms@gnu.org> | |
866 | ||
867 | * Makefile.in (dist): Don't use $(srcdir). | |
868 | ||
869 | * bison.simple (__yy_memcpy): | |
870 | Really reorder the args, as was supposedly done on Feb 14 1995. | |
871 | (yyparse): Calls changed accordingly. | |
872 | ||
873 | 1996-01-27 Richard Stallman <rms@gnu.org> | |
874 | ||
875 | * src/output.c (output_rule_data): | |
876 | Test YYERROR_VERBOSE in the conditional | |
877 | around the definition of ttyname. | |
878 | ||
879 | 1995-12-29 Richard Stallman <rms@gnu.org> | |
880 | ||
881 | * src/bison.s1: | |
882 | Fix line numbers in #line commands. | |
883 | ||
884 | 1995-12-29 Richard Stallman <rms@gnu.org> | |
885 | ||
886 | * bison.simple: | |
887 | Fix line numbers in #line commands. | |
888 | ||
889 | 1995-12-27 Richard Stallman <rms@gnu.org> | |
890 | ||
891 | * src/bison.s1 (YYPARSE_PARAM_DECL): | |
892 | In C++, make it always null. | |
893 | (YYPARSE_PARAM_ARG): New macro. | |
894 | (yyparse): Use YYPARSE_PARAM_ARG. | |
895 | ||
896 | 1995-12-27 Richard Stallman <rms@gnu.org> | |
897 | ||
898 | * bison.simple (YYPARSE_PARAM_DECL): | |
899 | In C++, make it always null. | |
900 | (YYPARSE_PARAM_ARG): New macro. | |
901 | (yyparse): Use YYPARSE_PARAM_ARG. | |
902 | ||
903 | 1995-11-29 Richard Stallman <rms@gnu.org> | |
904 | ||
905 | * doc/bison.texinfo: | |
906 | Describe literal string tokens, %raw, %no_lines, %token_table. | |
907 | ||
908 | 1995-11-29 Daniel Hagerty <hag@gnu.org> | |
909 | ||
910 | * doc/bison.texinfo: Fixed update date | |
911 | ||
912 | 1995-10-16 Richard Stallman <rms@gnu.org> | |
913 | ||
914 | * src/version.c: Version 1.25. | |
915 | ||
916 | 1995-10-16 Richard Stallman <rms@gnu.org> | |
917 | ||
918 | * NEWS: *** empty log message *** | |
919 | ||
920 | 1995-10-16 Richard Stallman <rms@gnu.org> | |
921 | ||
922 | * doc/bison.1, doc/bison.rnh: | |
923 | Add new options. | |
924 | ||
925 | 1995-10-15 Richard Stallman <rms@gnu.org> | |
926 | ||
927 | * src/vmsgetargs.c, src/getargs.c: | |
928 | Added -n, -k, and -raw switches. | |
929 | (noparserflag, toknumflag, rawtoknumflag): New variables. | |
930 | ||
931 | * src/symtab.h (SALIAS): | |
932 | New #define for adding aliases to %token. | |
933 | (struct bucket): Added `alias' field. | |
934 | ||
935 | * src/reduce.c (reduce_grammar): | |
936 | Revise error message. | |
937 | (print_notices): Remove final `.' from error message. | |
938 | ||
939 | * src/reader.c (reader_output_yylsp): | |
940 | New function. | |
941 | (readgram): Use `#if 0' around code that accepted %command | |
942 | inside grammar rules: The documentation doesn't allow it, | |
943 | and it will fail since the %command processors scan for the next %. | |
944 | (parse_token_decl): Extended the %token | |
945 | declaration to allow a multi-character symbol as an alias. | |
946 | (parse_thong_decl): New function. | |
947 | (read_declarations): Added %thong declarations. | |
948 | (read_declarations): Handle NOOP to deal with allowing | |
949 | % declarations as another means to specify the flags. | |
950 | (readgram): Allow %prec prior to semantics embedded in a rule. | |
951 | (skip_to_char, read_declarations, copy_definition) | |
952 | (parse_token_decl, parse_start_decl, parse_type_decl) | |
953 | (parse_assoc_decl, parse_union_decl, parse_expect_decl) | |
954 | (get_type_name, copy_guard, copy_action, readgram) | |
955 | (get_type, packsymbols): Revised most error messages. | |
956 | Changed `fatal' to `warnxxx' to avoid aborting for error. | |
957 | Revised and use multiple warnxxx functions to avoid using VARARGS1. | |
958 | (read_declarations): Improve the error message for | |
959 | an invalid character. Do not abort. | |
960 | (read_declarations, copy_guard, copy_action): Use | |
961 | printable_version to avoid unprintable characters in printed output. | |
962 | (parse_expect_decl): Error if argument to %expect exceeds 10 digits. | |
963 | (parse_token_decl, parse_assoc_decl, parse_type_decl, get_type): | |
964 | Allow the type of a non-terminal can be given | |
965 | more than once, as long as all specifications give the same type. | |
966 | ||
967 | * src/output.c: | |
968 | (output_headers, output_trailers, output, output_gram) | |
969 | (output_rule_data): Implement noparserflag variable. | |
970 | Implement toknumflag variable. | |
971 | (output): Call reader_output_yylsp to output LTYPESTR. | |
972 | ||
973 | * src/main.c (main): | |
974 | If reader sees an error, don't process the grammar. | |
975 | (fatals): Updated to not use VARARGS1. | |
976 | (printable_version, int_to_string, warn, warni, warns, warnss) | |
977 | (warnsss): New error reporting functions. Avoid abort for error. | |
978 | ||
979 | * src/lex.h: | |
980 | Added THONG and NOOP for alias processing. | |
981 | Added SETOPT for the new code that allows setting options with %flags. | |
982 | ||
983 | * src/lex.c: | |
984 | Include getopt.h. Add some extern decls. | |
985 | (safegetc): New function to deal with EOF gracefully. | |
986 | (literalchar); new function to deal with reading \ escapes. | |
987 | (lex): Use literalchar. | |
988 | (lex): Implemented "..." tokens. | |
989 | (literalchar, lex, parse_percent_token): Made tokenbuffer | |
990 | always contain the token. This includes growing the token | |
991 | buffer while reading an integer. | |
992 | (parse_percent_token): Replaced if-else statement with percent_table. | |
993 | (parse_percent_token): Added % declarations as another | |
994 | way to specify the flags -n, -l, and -r. Also added hooks for | |
995 | -d, -k, -y, -v, -t, -p, -b, -o, but implementation requires | |
996 | major changes to files.c. | |
997 | (lex) Retain in the incoming stream a character following | |
998 | an incorrect '/'. | |
999 | (skip_white_space, lex): Revised most error messages | |
1000 | and changed fatal to warn to avoid aborting. | |
1001 | (percent_table): Added %thong declarations. | |
1002 | ||
1003 | * src/gram.h: Comment changes. | |
1004 | ||
1005 | * src/files.c (openfiles, open_extra_files, done): | |
1006 | Add faction flag | |
1007 | and actfile file. Handle noparserflag. Both for -n switch. | |
1008 | ||
1009 | * src/conflicts.c (resolve_sr_conflict): | |
1010 | Remove use of alloca. | |
1011 | ||
1012 | 1995-06-01 Jim Meyering <meyering@gnu.org> | |
1013 | ||
1014 | * doc/bison.texinfo: *** empty log message *** | |
1015 | ||
1016 | 1995-05-06 Richard Stallman <rms@gnu.org> | |
1017 | ||
1018 | * src/bison.s1: Comment change. | |
1019 | ||
1020 | 1995-05-06 Richard Stallman <rms@gnu.org> | |
1021 | ||
1022 | * bison.simple: Comment change. | |
1023 | ||
1024 | 1995-05-03 Richard Stallman <rms@gnu.org> | |
1025 | ||
1026 | * src/version.c: Version now 1.24. | |
1027 | ||
1028 | * src/bison.s1: Change distribution terms. | |
1029 | ||
1030 | * src/version.c: Version now 1.23. | |
1031 | ||
1032 | 1995-05-03 Richard Stallman <rms@gnu.org> | |
1033 | ||
1034 | * doc/bison.texinfo: | |
1035 | Rewrite "Conditions for Using Bison". | |
1036 | Update version to 1.24. | |
1037 | ||
1038 | 1995-05-03 Richard Stallman <rms@gnu.org> | |
1039 | ||
1040 | * bison.simple: Change distribution terms. | |
1041 | ||
1042 | 1995-02-23 Richard Stallman <rms@gnu.org> | |
1043 | ||
1044 | * src/files.c: Test __VMS_POSIX as well as VMS. | |
1045 | ||
1046 | 1995-02-14 Jim Meyering <meyering@gnu.org> | |
1047 | ||
1048 | * src/bison.s1 (__yy_memcpy): | |
1049 | Renamed from __yy_bcopy to avoid | |
1050 | confusion. Reverse FROM and TO arguments to be consistent with | |
1051 | those of memcpy. | |
1052 | ||
1053 | 1995-02-14 Jim Meyering <meyering@gnu.org> | |
1054 | ||
1055 | * bison.simple (__yy_memcpy): | |
1056 | Renamed from __yy_bcopy to avoid | |
1057 | confusion. Reverse FROM and TO arguments to be consistent with | |
1058 | those of memcpy. | |
1059 | ||
1060 | 1994-11-10 David J. MacKenzie <djm@gnu.org> | |
1061 | ||
1062 | * NEWS: reformat | |
1063 | ||
1064 | * NEWS: New file. | |
1065 | ||
1066 | * Makefile.in (DISTFILES): Include NEWS. | |
1067 | ||
1068 | * Makefile.in (DISTFILES): | |
1069 | Include install-sh, not install.sh. | |
1070 | ||
1071 | * configure.in: Update to Autoconf v2 macro names. | |
1072 | ||
1073 | 1994-10-05 David J. MacKenzie <djm@gnu.org> | |
1074 | ||
1075 | * Makefile.in: fix typo | |
1076 | ||
1077 | * Makefile.in (prefix, exec_prefix): | |
1078 | Let configure set them. | |
1079 | ||
1080 | 1994-09-28 David J. MacKenzie <djm@gnu.org> | |
1081 | ||
1082 | * Makefile.in: Set datadir to $(prefix)/share. | |
1083 | ||
1084 | 1994-09-15 Richard Stallman <rms@gnu.org> | |
1085 | ||
1086 | * src/bison.s1: | |
1087 | Update copyright notice and GPL version. | |
1088 | ||
1089 | 1994-09-15 Richard Stallman <rms@gnu.org> | |
1090 | ||
1091 | * bison.simple: | |
1092 | Update copyright notice and GPL version. | |
1093 | ||
1094 | 1994-07-12 Richard Stallman <rms@gnu.org> | |
1095 | ||
1096 | * src/reduce.c, src/reader.c: | |
1097 | entered into RCS | |
1098 | ||
1099 | 1994-05-05 David J. MacKenzie <djm@gnu.org> | |
1100 | ||
1101 | * Makefile.in: entered into RCS | |
1102 | ||
1103 | 1994-03-26 Richard Stallman <rms@gnu.org> | |
1104 | ||
1105 | * src/bison.s1: entered into RCS | |
1106 | ||
1107 | 1994-03-26 Richard Stallman <rms@gnu.org> | |
1108 | ||
1109 | * bison.simple: entered into RCS | |
1110 | ||
1111 | 1994-03-25 Richard Stallman <rms@gnu.org> | |
1112 | ||
1113 | * src/main.c: entered into RCS | |
1114 | ||
1115 | 1994-03-24 Richard Stallman <rms@gnu.org> | |
1116 | ||
1117 | * src/conflicts.c: entered into RCS | |
1118 | ||
1119 | 1994-01-02 Richard Stallman <rms@gnu.org> | |
1120 | ||
1121 | * Makefile.in: *** empty log message *** | |
1122 | ||
1123 | 1993-11-21 Richard Stallman <rms@gnu.org> | |
1124 | ||
1125 | * src/bison.s1: *** empty log message *** | |
1126 | ||
1127 | 1993-11-21 Richard Stallman <rms@gnu.org> | |
1128 | ||
1129 | * doc/bison.texinfo: entered into RCS | |
1130 | ||
1131 | * doc/bison.texinfo: *** empty log message *** | |
1132 | ||
1133 | 1993-11-21 Richard Stallman <rms@gnu.org> | |
1134 | ||
1135 | * bison.simple: *** empty log message *** | |
1136 | ||
1137 | 1993-10-25 David J. MacKenzie <djm@gnu.org> | |
1138 | ||
1139 | * doc/bison.texinfo: *** empty log message *** | |
1140 | ||
1141 | 1993-10-19 Richard Stallman <rms@gnu.org> | |
1142 | ||
1143 | * src/bison.s1: *** empty log message *** | |
1144 | ||
1145 | 1993-10-19 Richard Stallman <rms@gnu.org> | |
1146 | ||
1147 | * bison.simple: *** empty log message *** | |
1148 | ||
1149 | 1993-10-14 Richard Stallman <rms@gnu.org> | |
1150 | ||
1151 | * src/bison.s1: *** empty log message *** | |
1152 | ||
1153 | 1993-10-14 Richard Stallman <rms@gnu.org> | |
1154 | ||
1155 | * bison.simple: *** empty log message *** | |
1156 | ||
1157 | 1993-09-14 David J. MacKenzie <djm@gnu.org> | |
1158 | ||
1159 | * doc/bison.texinfo: *** empty log message *** | |
1160 | ||
1161 | 1993-09-13 Noah Friedman <friedman@gnu.org> | |
1162 | ||
1163 | * Makefile.in: *** empty log message *** | |
1164 | ||
1165 | 1993-09-10 Richard Stallman <rms@gnu.org> | |
1166 | ||
1167 | * src/conflicts.c: *** empty log message *** | |
1168 | ||
1169 | * src/system.h: entered into RCS | |
1170 | ||
1171 | 1993-09-10 Richard Stallman <rms@gnu.org> | |
1172 | ||
1173 | * doc/bison.1: entered into RCS | |
1174 | ||
1175 | 1993-09-06 Noah Friedman <friedman@gnu.org> | |
1176 | ||
1177 | * src/version.c: entered into RCS | |
1178 | ||
1179 | 1993-09-06 Noah Friedman <friedman@gnu.org> | |
1180 | ||
1181 | * Makefile.in: *** empty log message *** | |
1182 | ||
1183 | 1993-07-30 David J. MacKenzie <djm@gnu.org> | |
1184 | ||
1185 | * Makefile.in: *** empty log message *** | |
1186 | ||
1187 | 1993-07-24 Richard Stallman <rms@gnu.org> | |
1188 | ||
1189 | * src/bison.s1: *** empty log message *** | |
1190 | ||
1191 | 1993-07-24 Richard Stallman <rms@gnu.org> | |
1192 | ||
1193 | * bison.simple: *** empty log message *** | |
1194 | ||
1195 | 1993-07-08 David J. MacKenzie <djm@gnu.org> | |
1196 | ||
1197 | * Makefile.in: *** empty log message *** | |
1198 | ||
1199 | 1993-07-04 Richard Stallman <rms@gnu.org> | |
1200 | ||
1201 | * src/bison.s1: *** empty log message *** | |
1202 | ||
1203 | 1993-07-04 Richard Stallman <rms@gnu.org> | |
1204 | ||
1205 | * bison.simple: *** empty log message *** | |
1206 | ||
1207 | 1993-06-26 David J. MacKenzie <djm@gnu.org> | |
1208 | ||
1209 | * src/getargs.c: entered into RCS | |
1210 | ||
1211 | 1993-06-26 David J. MacKenzie <djm@gnu.org> | |
1212 | ||
1213 | * doc/bison.texinfo: *** empty log message *** | |
1214 | ||
1215 | * doc/bison.1: New file. | |
1216 | ||
1217 | 1993-06-25 Richard Stallman <rms@gnu.org> | |
1218 | ||
1219 | * src/getargs.c: New file. | |
1220 | ||
1221 | 1993-06-16 Richard Stallman <rms@gnu.org> | |
1222 | ||
1223 | * src/bison.s1: *** empty log message *** | |
1224 | ||
1225 | 1993-06-16 Richard Stallman <rms@gnu.org> | |
1226 | ||
1227 | * bison.simple: *** empty log message *** | |
1228 | ||
1229 | 1993-06-03 Richard Stallman <rms@gnu.org> | |
1230 | ||
1231 | * src/bison.s1: New file. | |
1232 | ||
1233 | 1993-06-03 Richard Stallman <rms@gnu.org> | |
1234 | ||
1235 | * doc/bison.texinfo: *** empty log message *** | |
1236 | ||
1237 | 1993-06-03 Richard Stallman <rms@gnu.org> | |
1238 | ||
1239 | * bison.simple: New file. | |
1240 | ||
1241 | 1993-05-19 Richard Stallman <rms@gnu.org> | |
1242 | ||
1243 | * doc/bison.texinfo: New file. | |
1244 | ||
1245 | 1993-05-07 Noah Friedman <friedman@gnu.org> | |
1246 | ||
1247 | * Makefile.in: *** empty log message *** | |
1248 | ||
1249 | 1993-04-28 Noah Friedman <friedman@gnu.org> | |
1250 | ||
1251 | * src/reader.c: *** empty log message *** | |
1252 | ||
1253 | 1993-04-23 Noah Friedman <friedman@gnu.org> | |
1254 | ||
1255 | * src/alloc.h: entered into RCS | |
1256 | ||
1257 | 1993-04-20 David J. MacKenzie <djm@gnu.org> | |
1258 | ||
1259 | * src/version.c: *** empty log message *** | |
1260 | ||
1261 | * src/files.c, src/allocate.c: | |
1262 | entered into RCS | |
1263 | ||
1264 | * src/reader.c: *** empty log message *** | |
1265 | ||
1266 | * src/lex.c: entered into RCS | |
1267 | ||
1268 | * src/conflicts.c: New file. | |
1269 | ||
1270 | * src/symtab.c: entered into RCS | |
1271 | ||
1272 | * src/alloc.h: New file. | |
1273 | ||
1274 | * src/LR0.c: entered into RCS | |
1275 | ||
1276 | 1993-04-18 Noah Friedman <friedman@gnu.org> | |
1277 | ||
1278 | * src/reader.c: New file. | |
1279 | ||
1280 | * src/version.c: *** empty log message *** | |
1281 | ||
1282 | 1993-04-18 Noah Friedman <friedman@gnu.org> | |
1283 | ||
1284 | * Makefile.in: *** empty log message *** | |
1285 | ||
1286 | 1993-04-17 Noah Friedman <friedman@gnu.org> | |
1287 | ||
1288 | * Makefile.in: *** empty log message *** | |
1289 | ||
1290 | 1993-04-15 Richard Stallman <rms@gnu.org> | |
1291 | ||
1292 | * src/main.c, src/files.c: | |
1293 | New file. | |
1294 | ||
1295 | 1993-04-15 Noah Friedman <friedman@gnu.org> | |
1296 | ||
1297 | * configure.in: entered into RCS | |
1298 | ||
1299 | * configure.in: *** empty log message *** | |
1300 | ||
1301 | * configure.in: New file. | |
1302 | ||
1303 | 1993-04-14 Richard Stallman <rms@gnu.org> | |
1304 | ||
1305 | * Makefile.in: New file. | |
1306 | ||
1307 | 1993-04-13 Richard Stallman <rms@gnu.org> | |
1308 | ||
1309 | * src/version.c: New file. | |
1310 | ||
1311 | 1993-03-25 Richard Stallman <rms@gnu.org> | |
1312 | ||
1313 | * src/output.c: entered into RCS | |
1314 | ||
1315 | 1992-09-25 Richard Stallman <rms@gnu.org> | |
1316 | ||
1317 | * configure.bat: entered into RCS | |
1318 | ||
1319 | 1992-06-22 Richard Stallman <rms@gnu.org> | |
1320 | ||
1321 | * src/vmsgetargs.c: entered into RCS | |
1322 | ||
1323 | 1992-06-22 Richard Stallman <rms@gnu.org> | |
1324 | ||
1325 | * doc/bison.rnh: entered into RCS | |
1326 | ||
1327 | 1992-04-20 David J. MacKenzie <djm@gnu.org> | |
1328 | ||
1329 | * README: entered into RCS | |
1330 | ||
1331 | 1992-01-22 Richard Stallman <rms@gnu.org> | |
1332 | ||
1333 | * src/machine.h: entered into RCS | |
1334 | ||
1335 | 1991-12-21 Richard Stallman <rms@gnu.org> | |
1336 | ||
1337 | * src/lalr.c, src/closure.c: | |
1338 | entered into RCS | |
1339 | ||
1340 | 1991-12-20 Richard Stallman <rms@gnu.org> | |
1341 | ||
1342 | * src/state.h: entered into RCS | |
1343 | ||
1344 | 1991-12-18 Richard Stallman <rms@gnu.org> | |
1345 | ||
1346 | * src/print.c, src/nullable.c, src/derives.c: | |
1347 | entered into RCS | |
1348 | ||
1349 | 1991-11-03 David J. MacKenzie <djm@gnu.org> | |
1350 | ||
1351 | * src/warshall.c, src/types.h, src/symtab.h, src/lex.h, src/gram.c, src/gram.h, src/files.h: | |
1352 | entered into RCS | |
1353 | ||
1354 | 1988-09-09 Richard Stallman <rms@gnu.org> | |
1355 | ||
1356 | * src/bison.hairy: entered into RCS | |
1357 | ||
1358 | 1987-12-16 Richard Stallman <rms@gnu.org> | |
1359 | ||
1360 | * REFERENCES: entered into RCS |