platform/upstream/bison.git
21 years ago(Type Clashes): Expect warnings, not complaints.
Paul Eggert [Sat, 30 Nov 2002 09:51:50 +0000 (09:51 +0000)]
(Type Clashes): Expect warnings, not complaints.

21 years agofund -> found
Paul Eggert [Sat, 30 Nov 2002 09:25:06 +0000 (09:25 +0000)]
fund -> found

21 years agoAdd Yacc Library.
Paul Eggert [Sat, 30 Nov 2002 09:20:52 +0000 (09:20 +0000)]
Add Yacc Library.
gram_error is static.
yylex and yyerror must be declared.

21 years agoDescribe Yacc library, lex-param and parse-param changes.
Paul Eggert [Sat, 30 Nov 2002 09:18:34 +0000 (09:18 +0000)]
Describe Yacc library, lex-param and parse-param changes.

21 years ago(gram_error): Now static. Add static decl.
Paul Eggert [Sat, 30 Nov 2002 09:16:54 +0000 (09:16 +0000)]
(gram_error): Now static.  Add static decl.
(print_token_value): Omit parameter names from forward decl,
for consistency.

21 years ago(gram_error): Remove decl.
Paul Eggert [Sat, 30 Nov 2002 09:16:32 +0000 (09:16 +0000)]
(gram_error): Remove decl.

21 years ago(Yacc Library): New node. Regenerate top menu.
Paul Eggert [Sat, 30 Nov 2002 09:11:30 +0000 (09:11 +0000)]
(Yacc Library): New node.  Regenerate top menu.

21 years ago(lib_LIBRARIES, liby_a_SOURCES): New macros.
Paul Eggert [Sat, 30 Nov 2002 09:10:55 +0000 (09:10 +0000)]
(lib_LIBRARIES, liby_a_SOURCES): New macros.

21 years agolib/main.c, lib/yyerror.c: New files.
Paul Eggert [Sat, 30 Nov 2002 09:10:20 +0000 (09:10 +0000)]
lib/main.c, lib/yyerror.c: New files.

21 years agoEmphasize that yylex and yyerror must be declared before being used.
Paul Eggert [Sat, 30 Nov 2002 07:42:37 +0000 (07:42 +0000)]
Emphasize that yylex and yyerror must be declared before being used.
E.g., one should typically declare them in the prologue.  Use GNU
coding style in examples.  Put "const" consistently after the type it
modifies.  Mention that C99 supports "inline".  Mention that yyerror
traditionally returns "int".

21 years ago[a-f] -> [abcdef], so that we don't assume the C locale.
Paul Eggert [Fri, 29 Nov 2002 09:03:16 +0000 (09:03 +0000)]
[a-f] -> [abcdef], so that we don't assume the C locale.

21 years ago%parse-param and %lex-param now take just one argument, the
Paul Eggert [Fri, 29 Nov 2002 08:45:33 +0000 (08:45 +0000)]
%parse-param and %lex-param now take just one argument, the
declaration; the argument name is deduced from the declaration.

21 years ago(Simple LALR Calculator): Adopt new convention for %parse-param
Paul Eggert [Fri, 29 Nov 2002 08:45:14 +0000 (08:45 +0000)]
(Simple LALR Calculator): Adopt new convention for %parse-param
and %lex-param.

21 years ago"," now elicits a warning, rather than being
Paul Eggert [Fri, 29 Nov 2002 08:44:40 +0000 (08:44 +0000)]
"," now elicits a warning, rather than being
a token; this is more compatible with byacc.

21 years ago(add_param): New function.
Paul Eggert [Fri, 29 Nov 2002 08:44:04 +0000 (08:44 +0000)]
(add_param): New function.
(COMMA): Remove.
(declaration): Implement new rule for %parse-param and %lex-param.

21 years ago(Parser Function, Pure Calling, Error Reporting, Table of Symbols):
Paul Eggert [Fri, 29 Nov 2002 08:43:12 +0000 (08:43 +0000)]
(Parser Function, Pure Calling, Error Reporting, Table of Symbols):
%parse-param and %lex-param now take just one argument, the
declaration; the argument name is deduced from the declaration.

21 years ago(reader): Remove gram_control; it wasn't being used.
Paul Eggert [Fri, 29 Nov 2002 05:59:59 +0000 (05:59 +0000)]
(reader): Remove gram_control; it wasn't being used.

21 years agoSync with gnulib.
Paul Eggert [Thu, 28 Nov 2002 00:42:28 +0000 (00:42 +0000)]
Sync with gnulib.

21 years agoRename identifiers to avoid real and potential collisions.
Paul Eggert [Wed, 27 Nov 2002 18:36:41 +0000 (18:36 +0000)]
Rename identifiers to avoid real and potential collisions.

21 years ago(STEP): Renamed from YY_STEP. All uses changed.
Paul Eggert [Wed, 27 Nov 2002 18:34:14 +0000 (18:34 +0000)]
(STEP): Renamed from YY_STEP.  All uses changed.
(STRING_GROW): Renamed from YY_OBS_GROW.  All uses changed.
(STRING_FINISH): Renamed from YY_OBS_FINISH.  All uses changed.
(STRING_FREE): Renamed from YY_OBS_FREE.  All uses changed.

21 years ago(struct gram_control_s, gram_control_t): Remove.
Paul Eggert [Wed, 27 Nov 2002 18:33:42 +0000 (18:33 +0000)]
(struct gram_control_s, gram_control_t): Remove.
(YY_DECL): Don't use "yy" at start of local variables.
All uses changed, e.g., yylloc -> loc.

21 years ago(print_token_value): Renamed from yyprint.
Paul Eggert [Wed, 27 Nov 2002 18:33:18 +0000 (18:33 +0000)]
(print_token_value): Renamed from yyprint.
All uses changed.
(YYPARSE_PARAM, YYLEX_PARAM, yycontrol): Remove.  All uses changed.
The name "yycontrol" violates the name space rules, and this stuff
wasn't being used anyway.
(input): Remove action; this stuff wasn't being used.
(gram_error): Rename local variable yylloc -> loc.

21 years agoyyprint -> print_token_value
Paul Eggert [Wed, 27 Nov 2002 18:32:12 +0000 (18:32 +0000)]
yyprint -> print_token_value

21 years ago(_AT_CHECK_PRINTER_AND_DESTRUCTOR): yyout -> yyoutput,
Paul Eggert [Wed, 27 Nov 2002 18:31:27 +0000 (18:31 +0000)]
(_AT_CHECK_PRINTER_AND_DESTRUCTOR): yyout -> yyoutput,
to avoid collision with lex macro described by Bruce Lilly in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.

21 years ago(b4_yysymprint_generate): yyout -> yyoutput,
Paul Eggert [Wed, 27 Nov 2002 18:30:50 +0000 (18:30 +0000)]
(b4_yysymprint_generate): yyout -> yyoutput,
to avoid collision with lex macro described by Bruce Lilly in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001929.html>.

21 years agoUpdate version to 1.75d.
Paul Eggert [Mon, 25 Nov 2002 08:21:40 +0000 (08:21 +0000)]
Update version to 1.75d.

21 years agoRegenerate.
Paul Eggert [Mon, 25 Nov 2002 08:05:09 +0000 (08:05 +0000)]
Regenerate.

21 years agoVersion 1.75c.
Paul Eggert [Mon, 25 Nov 2002 07:56:44 +0000 (07:56 +0000)]
Version 1.75c.

21 years agoSync with gnulib.
Paul Eggert [Mon, 25 Nov 2002 07:50:25 +0000 (07:50 +0000)]
Sync with gnulib.

21 years ago(Actions after errors): Use an output format
Paul Eggert [Mon, 25 Nov 2002 07:36:54 +0000 (07:36 +0000)]
(Actions after errors): Use an output format
more similar to that of the Printers and Destructors test.
Test the position of the ';' token too.
(Printers and Destructors): Likewise.
(Printers and Destructors: %glr-parser): Remove for now, to avoid
unnecessarily alarming people when the test fails.

21 years ago(yyerrlab1): Move this label down, so that the
Paul Eggert [Mon, 25 Nov 2002 06:42:10 +0000 (06:42 +0000)]
(yyerrlab1): Move this label down, so that the
parser does not discard the lookahead token if the user code
invokes YYERROR.  This change is required for POSIX conformance.

21 years agoSync with gnulib.
Paul Eggert [Sat, 23 Nov 2002 07:25:41 +0000 (07:25 +0000)]
Sync with gnulib.

21 years agoSync with gnulib again.
Paul Eggert [Fri, 22 Nov 2002 00:30:58 +0000 (00:30 +0000)]
Sync with gnulib again.

21 years agoSync with gnulib.
Paul Eggert [Thu, 21 Nov 2002 19:14:24 +0000 (19:14 +0000)]
Sync with gnulib.

21 years ago* lib/argmatch.c, lib/argmatch.h: Sync with gnulib.
Paul Eggert [Thu, 21 Nov 2002 07:37:24 +0000 (07:37 +0000)]
* lib/argmatch.c, lib/argmatch.h: Sync with gnulib.

Avoid use of <assert.h>, as the GNU Coding Standards hint that one
should use `if (! x) abort ();' rather than `assert (x);', and
anyway it's one less thing to worry about configuring.

21 years agoSync with gnulib.
Paul Eggert [Thu, 21 Nov 2002 07:35:58 +0000 (07:35 +0000)]
Sync with gnulib.

21 years ago(_AT_TEST_GLR_CXXTYPES): Do not include <assert.h>.
Paul Eggert [Thu, 21 Nov 2002 05:28:44 +0000 (05:28 +0000)]
(_AT_TEST_GLR_CXXTYPES): Do not include <assert.h>.
Replace all instances of assert with abort.

21 years ago(_AT_DATA_CALC_Y): Do not include <assert.h>.
Paul Eggert [Thu, 21 Nov 2002 05:28:09 +0000 (05:28 +0000)]
(_AT_DATA_CALC_Y): Do not include <assert.h>.
Replace all instances of assert with abort.

21 years ago(_AT_CHECK_PRINTER_AND_DESTRUCTOR): Do not include <assert.h>.
Paul Eggert [Thu, 21 Nov 2002 05:27:28 +0000 (05:27 +0000)]
(_AT_CHECK_PRINTER_AND_DESTRUCTOR): Do not include <assert.h>.

21 years ago(get_color_str, get_textmode_str, get_shape_str,
Paul Eggert [Thu, 21 Nov 2002 05:26:41 +0000 (05:26 +0000)]
(get_color_str, get_textmode_str, get_shape_str,
get_layoutalgorithm_str, get_decision_str, get_orientation_str,
get_node_alignement_str, get_arrow_mode_str, get_crossing_type_str,
get_view_str, get_linestyle_str, get_arrowstyle_str): Use abort rather
than assert.

21 years ago(conflict_row, pack_vector): Use abort rather than assert.
Paul Eggert [Thu, 21 Nov 2002 05:25:55 +0000 (05:25 +0000)]
(conflict_row, pack_vector): Use abort rather than assert.
(tables_generate): Use verify rather than assert.

21 years agoDo not include <assert.h>.
Paul Eggert [Thu, 21 Nov 2002 05:24:53 +0000 (05:24 +0000)]
Do not include <assert.h>.
(verify): New macro.

21 years ago(symbol_user_token_number_set, symbol_make_alias, symbol_pack):
Paul Eggert [Thu, 21 Nov 2002 05:23:46 +0000 (05:23 +0000)]
(symbol_user_token_number_set, symbol_make_alias, symbol_pack):
Use abort rather than assert.

21 years ago(struniq_assert): Now returns void, and aborts if the assertion is false.
Paul Eggert [Thu, 21 Nov 2002 05:22:29 +0000 (05:22 +0000)]
(struniq_assert): Now returns void, and aborts if the assertion is false.

21 years ago(state_new, state_free, state_transitions_set, state_reduction_find):
Paul Eggert [Thu, 21 Nov 2002 05:21:35 +0000 (05:21 +0000)]
(state_new, state_free, state_transitions_set, state_reduction_find):
Use abort rather than assert.

21 years ago(packgram, reader): Use abort rather than assert.
Paul Eggert [Thu, 21 Nov 2002 05:20:49 +0000 (05:20 +0000)]
(packgram, reader): Use abort rather than assert.

21 years ago(prepare_rules, token_definitions_output): Use abort rather than assert.
Paul Eggert [Thu, 21 Nov 2002 05:20:05 +0000 (05:20 +0000)]
(prepare_rules, token_definitions_output): Use abort rather than assert.

21 years ago(nullable_compute): Use abort rather than assert.
Paul Eggert [Thu, 21 Nov 2002 05:18:57 +0000 (05:18 +0000)]
(nullable_compute): Use abort rather than assert.

21 years ago(set_goto_map, map_goto): Use abort rather than assert.
Paul Eggert [Thu, 21 Nov 2002 05:18:08 +0000 (05:18 +0000)]
(set_goto_map, map_goto): Use abort rather than assert.

21 years ago(trace_argmatch, report_argmatch): Use verify rather than assert.
Paul Eggert [Thu, 21 Nov 2002 05:17:21 +0000 (05:17 +0000)]
(trace_argmatch, report_argmatch): Use verify rather than assert.

21 years ago(resolve_sr_conflict): Use abort rather than assert.
Paul Eggert [Thu, 21 Nov 2002 05:16:36 +0000 (05:16 +0000)]
(resolve_sr_conflict): Use abort rather than assert.

21 years agoDo not include <assert.h>.
Paul Eggert [Thu, 21 Nov 2002 05:15:52 +0000 (05:15 +0000)]
Do not include <assert.h>.
(hash_lookup, hash_get_first, hash_get_next,
hash_find_entry, hash_rehash, hash_insert): Likewise.

21 years ago(ARRAY_CARDINALITY): Do not bother to #undef.
Paul Eggert [Thu, 21 Nov 2002 05:12:27 +0000 (05:12 +0000)]
(ARRAY_CARDINALITY): Do not bother to #undef.
(ARGMATCH_CONSTRAINT): New macro.
(ARGMATCH_ASSERT): Use it.

21 years agoDo not include <assert.h>.
Paul Eggert [Thu, 21 Nov 2002 05:11:29 +0000 (05:11 +0000)]
Do not include <assert.h>.
(yydoAction, yyglrReduce, yysplitStack, yyresolveStates,
yyresolveAction, yyprocessOneStack): Use abort rather than assert.

21 years ago* data/glr.c (yygetLRActions): Replace `yyindex' with
Paul Eggert [Tue, 19 Nov 2002 09:33:21 +0000 (09:33 +0000)]
* data/glr.c (yygetLRActions): Replace `yyindex' with
`yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
This fixes the regression with Sun ONE Studio 7 cc that I reported in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001892.html>.

21 years ago(yygetLRActions): Replace `yyindex' with
Paul Eggert [Tue, 19 Nov 2002 07:35:29 +0000 (07:35 +0000)]
(yygetLRActions): Replace `yyindex' with
`yytable[yyindex]' to fix typo introduced in my 2002-11-09 patch.
This fixes the regression with Sun ONE Studio 7 cc that I reported in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001892.html>.

21 years agoPacify Sun ONE Studio 7 lint. Also, rename "ParseError"
Paul Eggert [Mon, 18 Nov 2002 20:08:57 +0000 (20:08 +0000)]
Pacify Sun ONE Studio 7 lint.  Also, rename "ParseError"
to "SyntaxError" for consistency with my 2002-11-15 change.

21 years ago* doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
Akim Demaille [Mon, 18 Nov 2002 09:33:22 +0000 (09:33 +0000)]
* doc/bison.texinfo (Tracing): `yyprint' shouldn't prepend a
space.
From Tim Van Holder.

21 years ago(_AT_DATA_CALC_Y): Make vars static instead of
Paul Eggert [Mon, 18 Nov 2002 07:52:13 +0000 (07:52 +0000)]
(_AT_DATA_CALC_Y): Make vars static instead of
extern when possible.  Remove unused initializations.

21 years ago(YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do not define to
Paul Eggert [Mon, 18 Nov 2002 07:51:47 +0000 (07:51 +0000)]
(YYDPRINTF, YYDSYMPRINT, YYDSYMPRINTF) [!YYDEBUG]: Do not define to
{}, since this breaks the common use of `YYDPRINTF ((...));' if a
single statement is desired (e.g. before `else').  Work around GCC
warnings by surrounding corresponding calls with {} if needed.
(yyhasResolvedValue): Remove unused function.
(yymergeOptionSets, yyresolvStack): Use `continue;' for empty
loop body.
(yyreportSyntaxError): Renamed from yyreportParseError.
(yyrecoverSyntaxError): Renamed from yyrecoverParseError.
All uses changed.

21 years agoReally remove it.
Akim Demaille [Sat, 16 Nov 2002 12:36:30 +0000 (12:36 +0000)]
Really remove it.

21 years agoAugment the similarity between GLR and LALR traces.
Akim Demaille [Sat, 16 Nov 2002 12:32:27 +0000 (12:32 +0000)]
Augment the similarity between GLR and LALR traces.
* data/yacc.c (yy_stack_print, YY_STACK_PRINT, yy_reduce_print)
(YY_REDUCE_PRINT): New.
(yyparse): Use them.
* data/glr.c (yy_reduce_print): Use YYFPRINTF, no need for
YYDPRINT here.
(yyglrReduce, yyrecoverParseError, yyparse): Don't report the
state reached after the reduction/recovery, since...
(yyparse, yyprocessOneStack): Report the state we are entering in.

21 years ago* src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
Akim Demaille [Sat, 16 Nov 2002 12:31:36 +0000 (12:31 +0000)]
* src/getargs.h, src/getargs.c (trace_e, trace_args, trace_types):
Add support for --trace=skeleton.
* src/scan-skel.l: %option debug.
Scan strings of non-@ or n instead of character by character.
(scan_skel): Handle trace_skeleton.
(QPUTS): New.
(@output_parser_name@, @output_header_name@): ``Restore'' their
support (used to be M4 macros).
* data/yacc.c: Quote larger chunks, a la glr.c.
* data/lalr1.cc: Likewise.
The header guards are no longer available, so use some other
string than `YYLSP_NEEDED'.

21 years agoMake the ``Printers and Destructors'' test more verbose, taking
Akim Demaille [Sat, 16 Nov 2002 12:30:23 +0000 (12:30 +0000)]
Make the ``Printers and Destructors'' test more verbose, taking
`yacc.c''s behavior as (possibly wrong) reference.
* tests/actions.at (_AT_CHECK_PRINTER_AND_DESTRUCTOR): Use printf
instead of fprint on stdout.
Set and report the last_line of the symbols.
Consistently display values and locations.

21 years ago* data/yacc.c: Avoid over-quoting of __line__ and __file__.
Paul Eggert [Sat, 16 Nov 2002 08:14:23 +0000 (08:14 +0000)]
* data/yacc.c: Avoid over-quoting of __line__ and __file__.

21 years agoAvoid over-quoting of __line__ and __file.
Paul Eggert [Sat, 16 Nov 2002 08:13:40 +0000 (08:13 +0000)]
Avoid over-quoting of __line__ and __file.

21 years ago* tests/actions.at (Actions after errors): New test case.
Paul Eggert [Sat, 16 Nov 2002 07:32:09 +0000 (07:32 +0000)]
* tests/actions.at (Actions after errors): New test case.

21 years ago(Actions after errors): New test case.
Paul Eggert [Sat, 16 Nov 2002 07:31:35 +0000 (07:31 +0000)]
(Actions after errors): New test case.

21 years agoRegenerate.
Paul Eggert [Fri, 15 Nov 2002 20:58:07 +0000 (20:58 +0000)]
Regenerate.

21 years ago* data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
Paul Eggert [Fri, 15 Nov 2002 20:32:21 +0000 (20:32 +0000)]
* data/glr.c, data/lalr1.cc, data/yacc.cc, doc/bison.texinfo,
src/conflicts.c, src/parse-gram.y, src/tables.c, src/tables.h,
tests/action.at, tests/calc.at, tests/conflicts.at,
tests/cxx-type.at, tests/regression.at:
"parse error" -> "syntax error" for POSIX compatibility.
"parsing stack overflow..." -> "parser stack overflow" so
that code matches Bison documentation.

21 years ago* src/parse-gram.y (declaration): Have %parse-param and %lex-param
Akim Demaille [Fri, 15 Nov 2002 16:42:16 +0000 (16:42 +0000)]
* src/parse-gram.y (declaration): Have %parse-param and %lex-param
take two BRACED_CODE, not two string_content.
Free the scanner's obstack when we are done.
(code_content): New.
* tests/calc.at: Adjust.
* doc/bison.texinfo: Adjust.
Also, make sure to include the `,' for these declarations.

21 years ago* m4/prereq.m4: Removed the commented jm_PREREQ_HASH
Akim Demaille [Fri, 15 Nov 2002 16:30:37 +0000 (16:30 +0000)]
* m4/prereq.m4: Removed the commented jm_PREREQ_HASH
definition; avoids potential autoreconf problems.

21 years ago2002-11-15 Tim Van Holder <tim.van.holder@pandora.be>
Akim Demaille [Fri, 15 Nov 2002 09:04:37 +0000 (09:04 +0000)]
2002-11-15  Tim Van Holder  <tim.van.holder@pandora.be>

* src/.cvsignore: Add src-gram.c.
* tests/.cvsignore: Add atlocal.
* config/.cvsignore, m4/.cvsignore, po/.cvsignore:
Add several files that autoreconf may bring in during
bootstrap.

21 years agoAlways check the value returned by yyparse.
Akim Demaille [Fri, 15 Nov 2002 08:56:40 +0000 (08:56 +0000)]
Always check the value returned by yyparse.
* tests/calc.at (_AT_DATA_CALC_Y): Have `main' exit with the value
returned by yyparse.
(_AT_CHECK_CALC_ERROR): Take the expected exit value as argument.
Adjust calls.
* tests/glr-regr1.at (glr-regr1.y): Have `main' exit with the value
returned by yyparse.

21 years ago(AT_TEST_CPP_GUARD_H): Compile with -I., as Forte 7 C requires it,
Paul Eggert [Fri, 15 Nov 2002 01:57:23 +0000 (01:57 +0000)]
(AT_TEST_CPP_GUARD_H): Compile with -I., as Forte 7 C requires it,
and it shouldn't hurt on other compilers.

21 years ago* src/output.c (output_skeleton): Call xfopen instead of
Paul Eggert [Fri, 15 Nov 2002 01:29:53 +0000 (01:29 +0000)]
* src/output.c (output_skeleton): Call xfopen instead of
duplicating xfopen's body.

21 years ago(output_skeleton): Call xfopen instead of duplicating xfopen's body.
Paul Eggert [Fri, 15 Nov 2002 01:28:40 +0000 (01:28 +0000)]
(output_skeleton): Call xfopen instead of duplicating xfopen's body.

21 years ago* data/glr.c (yyFail): Always set yyerrflag. Corrects regression
Paul Hilfinger [Thu, 14 Nov 2002 23:18:55 +0000 (23:18 +0000)]
* data/glr.c (yyFail): Always set yyerrflag.  Corrects regression
 on input.at test.

21 years agoMention the bugs fixed by the latest change.
Paul Eggert [Thu, 14 Nov 2002 23:11:11 +0000 (23:11 +0000)]
Mention the bugs fixed by the latest change.

21 years ago* tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
Paul Eggert [Thu, 14 Nov 2002 23:08:27 +0000 (23:08 +0000)]
* tests/headers.at (AT_TEST_CPP_GUARD_H): Don't assume that
"$CC -E foo.h" is allowed, as this doesn't work with the Portland
Group compiler.  Instead, use "$CC -E bar.c".  Include the .h
file twice in the grammar, as an extra check.

* tests/input.at (Torturing the Scanner): Surround the
backslash-newline tests with "#if 0", to make it less likely that
we'll run into compiler bugs.  Bring back solitary \ inside
comment, but add a closing comment to work around HP C bug.  Don't
test backslash-newline in C character constant.  This should fix
the input.at bug reported by Nelson H. F. Beebe in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.

21 years ago(AT_TEST_CPP_GUARD_H): Don't assume that "$CC -E foo.h" is allowed, as
Paul Eggert [Thu, 14 Nov 2002 23:08:01 +0000 (23:08 +0000)]
(AT_TEST_CPP_GUARD_H): Don't assume that "$CC -E foo.h" is allowed, as
this doesn't work with the Portland Group compiler.  Instead, use "$CC
-E bar.c".  Include the .h file twice in the grammar, as an extra
check.

21 years ago(Torturing the Scanner): Surround the backslash-newline tests with
Paul Eggert [Thu, 14 Nov 2002 22:53:47 +0000 (22:53 +0000)]
(Torturing the Scanner): Surround the backslash-newline tests with
"#if 0", to make it less likely that we'll run into compiler bugs.
Bring back solitary \ inside comment, but add a closing comment to
work around HP C bug.  Don't test backslash-newline in C character
constant.  This should fix the input.at bug reported by Nelson
H. F. Beebe in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001893.html>.

21 years ago* tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
Akim Demaille [Thu, 14 Nov 2002 11:09:51 +0000 (11:09 +0000)]
* tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
status of the compiler.
Calling `exit 1' is no longer needed.
Reported by Nelson H. F. Beebe.

21 years ago* tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
Akim Demaille [Thu, 14 Nov 2002 11:07:00 +0000 (11:07 +0000)]
* tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit
status of the compiler.
Reported by Nelson H. F. Beebe.

21 years ago* tests/atlocal.in (CPPFLAGS): We have config.h.
Akim Demaille [Thu, 14 Nov 2002 09:58:01 +0000 (09:58 +0000)]
* tests/atlocal.in (CPPFLAGS): We have config.h.
* tests/testsuite.at (AT_DATA_GRAMMAR_PROLOGUE, AT_DATA_GRAMMAR):
New.
* tests/actions.at, tests/calc.at, tests/conflicts.at,
* tests/cxx-type.at, tests/glr-regr1.at, tests/headers.at,
* tests/regression.at, tests/torture.at: Use them for all the
grammars that are to be compiled.
* tests/cxx-type.at (_AT_TEST_GLR_CALC): Rename as...
* tests/cxx-type.at (_AT_TEST_GLR_CXXTYPES): this.
* doc/bison.texinfo (GLR Parsers): Document `inline'.

21 years ago* doc/bison.texinfo: Various formatting changes (alignments in
Akim Demaille [Thu, 14 Nov 2002 08:32:10 +0000 (08:32 +0000)]
* doc/bison.texinfo: Various formatting changes (alignments in
samples, additional @group/@end group, GCS in samples.
Use @deffn instead of simple @table to define the directives,
macros, variables etc.

21 years agoFix some bugs reported by Albert Chin-A-Young in
Paul Eggert [Thu, 14 Nov 2002 01:24:12 +0000 (01:24 +0000)]
Fix some bugs reported by Albert Chin-A-Young in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001881.html>.

21 years ago(export YYLTYPE): Don't invoke "cc a.c b.c -o c"; the HP-UX 11i C
Paul Eggert [Thu, 14 Nov 2002 00:36:03 +0000 (00:36 +0000)]
(export YYLTYPE): Don't invoke "cc a.c b.c -o c"; the HP-UX 11i C
compiler chatters during compilation.  Instead, invoke "cc -c a.c -o
a.o; cc -c b.c -o b.o; cc a.o b.o -o c".

21 years ago(Torturing the Scanner): Don't invoke "cc a.c b.c
Paul Eggert [Thu, 14 Nov 2002 00:35:27 +0000 (00:35 +0000)]
(Torturing the Scanner): Don't invoke "cc a.c b.c
-o c"; the HP-UX 11i C compiler chatters during compilation.
Instead, invoke "cc -c a.c -o a.o; cc -c b.c -o b.o; cc a.o b.o -o c".

21 years ago(Torturing the Scanner): Remove lines containing
Paul Eggert [Thu, 14 Nov 2002 00:26:45 +0000 (00:26 +0000)]
(Torturing the Scanner): Remove lines containing
solitary backslashes, as they tickle a bug in the HP-UX 11i C
compiler.

21 years ago* tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
Paul Eggert [Thu, 14 Nov 2002 00:04:57 +0000 (00:04 +0000)]
* tests/glr-regr1.at (Badly Collapsed GLR States): Avoid //
comments, since they're not portable.  Use GNU coding style.

21 years ago(Badly Collapsed GLR States): Avoid //
Paul Eggert [Wed, 13 Nov 2002 23:20:52 +0000 (23:20 +0000)]
(Badly Collapsed GLR States): Avoid //
comments, since they're not portable.  Use GNU coding style.

21 years agoBump to 1.75c.
Akim Demaille [Wed, 13 Nov 2002 15:17:35 +0000 (15:17 +0000)]
Bump to 1.75c.

21 years ago* data/yacc.c: Leave bigger chunks of quoted text.
Akim Demaille [Wed, 13 Nov 2002 09:49:49 +0000 (09:49 +0000)]
* data/yacc.c: Leave bigger chunks of quoted text.
(YYDSYMPRINTF): New.
Use it to report symbol activities.
* data/glr.c (YYDSYMPRINTF): New.
Use it.

21 years ago(AC_INIT): Bump version to 1.75c.
Paul Eggert [Wed, 13 Nov 2002 09:06:47 +0000 (09:06 +0000)]
(AC_INIT): Bump version to 1.75c.

21 years agoRegenerate.
Paul Eggert [Wed, 13 Nov 2002 08:34:23 +0000 (08:34 +0000)]
Regenerate.

21 years agoVersion 1.75b.
Paul Eggert [Wed, 13 Nov 2002 08:32:08 +0000 (08:32 +0000)]
Version 1.75b.

21 years ago(yydoAction): Return YYRESULTTAG, not int.
Paul Eggert [Wed, 13 Nov 2002 07:46:19 +0000 (07:46 +0000)]
(yydoAction): Return YYRESULTTAG, not int.
(yyglrReduce): Return yyok, not 0.
This should avoid the enumerated-type warnings reported
by Nelson H. F. Beebe in
<http://mail.gnu.org/pipermail/bug-bison/2002-November/001872.html>.

21 years ago[! BITSET_INLINE]: Remove.
Paul Eggert [Wed, 13 Nov 2002 07:02:51 +0000 (07:02 +0000)]
[! BITSET_INLINE]: Remove.
(bitset_set, bitset_reset, bitset_test): Rename local vars
to avoid shadowing warnings by GCC.

21 years ago(BITSET_INLINE): Remove.
Paul Eggert [Wed, 13 Nov 2002 07:02:13 +0000 (07:02 +0000)]
(BITSET_INLINE): Remove.