mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-22 02:33:03 +00:00
style: pacify syntax-check
* doc/.gitignore, src/complain.c, src/getargs.c, * src/output.c: here.
This commit is contained in:
2
gnulib
2
gnulib
Submodule gnulib updated: ac7fd66617...fffc876545
@@ -107,7 +107,7 @@ flush (FILE *out)
|
|||||||
| --warnings's handling. |
|
| --warnings's handling. |
|
||||||
`------------------------*/
|
`------------------------*/
|
||||||
|
|
||||||
ARGMATCH_DEFINE_GROUP(warning, warnings)
|
ARGMATCH_DEFINE_GROUP (warning, warnings)
|
||||||
|
|
||||||
static const argmatch_warning_doc argmatch_warning_docs[] =
|
static const argmatch_warning_doc argmatch_warning_docs[] =
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -166,7 +166,7 @@ enum color
|
|||||||
color_auto
|
color_auto
|
||||||
};
|
};
|
||||||
|
|
||||||
ARGMATCH_DEFINE_GROUP(color, enum color)
|
ARGMATCH_DEFINE_GROUP (color, enum color)
|
||||||
|
|
||||||
static const argmatch_color_doc argmatch_color_docs[] =
|
static const argmatch_color_doc argmatch_color_docs[] =
|
||||||
{
|
{
|
||||||
@@ -202,7 +202,7 @@ const argmatch_color_group_type argmatch_color_group =
|
|||||||
| --report's handling. |
|
| --report's handling. |
|
||||||
`----------------------*/
|
`----------------------*/
|
||||||
|
|
||||||
ARGMATCH_DEFINE_GROUP(report, enum report)
|
ARGMATCH_DEFINE_GROUP (report, enum report)
|
||||||
|
|
||||||
static const argmatch_report_doc argmatch_report_docs[] =
|
static const argmatch_report_doc argmatch_report_docs[] =
|
||||||
{
|
{
|
||||||
@@ -240,7 +240,7 @@ const argmatch_report_group_type argmatch_report_group =
|
|||||||
| --trace's handling. |
|
| --trace's handling. |
|
||||||
`---------------------*/
|
`---------------------*/
|
||||||
|
|
||||||
ARGMATCH_DEFINE_GROUP(trace, enum trace)
|
ARGMATCH_DEFINE_GROUP (trace, enum trace)
|
||||||
|
|
||||||
static const argmatch_trace_doc argmatch_trace_docs[] =
|
static const argmatch_trace_doc argmatch_trace_docs[] =
|
||||||
{
|
{
|
||||||
@@ -299,7 +299,7 @@ const argmatch_trace_group_type argmatch_trace_group =
|
|||||||
| --feature's handling. |
|
| --feature's handling. |
|
||||||
`-----------------------*/
|
`-----------------------*/
|
||||||
|
|
||||||
ARGMATCH_DEFINE_GROUP(feature, enum feature)
|
ARGMATCH_DEFINE_GROUP (feature, enum feature)
|
||||||
|
|
||||||
static const argmatch_feature_doc argmatch_feature_docs[] =
|
static const argmatch_feature_doc argmatch_feature_docs[] =
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -369,7 +369,8 @@ user_actions_output (FILE *out)
|
|||||||
for (rule_number r = 0; r < nrules; ++r)
|
for (rule_number r = 0; r < nrules; ++r)
|
||||||
if (rules[r].action)
|
if (rules[r].action)
|
||||||
{
|
{
|
||||||
fprintf (out, "%s(%d, [",
|
/* The useless "" is there to pacify syntax-check. */
|
||||||
|
fprintf (out, "%s""(%d, [",
|
||||||
rules[r].is_predicate ? "b4_predicate_case" : "b4_case",
|
rules[r].is_predicate ? "b4_predicate_case" : "b4_case",
|
||||||
r + 1);
|
r + 1);
|
||||||
if (!no_lines_flag)
|
if (!no_lines_flag)
|
||||||
|
|||||||
Reference in New Issue
Block a user