From: Paul Eggert Date: Tue, 22 Oct 2002 04:41:25 +0000 (+0000) Subject: se C99-style bool instead of our own style. X-Git-Tag: BISON-1_875~410 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/637c4b283c0c39542f241644dc4dd733ba94ce1b se C99-style bool instead of our own style. --- diff --git a/src/gram.c b/src/gram.c index ebb7e739..74fd5d57 100644 --- a/src/gram.c +++ b/src/gram.c @@ -201,7 +201,7 @@ grammar_rules_partial_print (FILE *out, const char *title, rule_filter_t filter) { int r; - bool first = TRUE; + bool first = true; symbol_t *previous_lhs = NULL; /* rule # : LHS -> RHS */ @@ -213,7 +213,7 @@ grammar_rules_partial_print (FILE *out, const char *title, fprintf (out, "%s\n\n", title); else if (previous_lhs && previous_lhs != rules[r].lhs) fputc ('\n', out); - first = FALSE; + first = false; rule_lhs_print (&rules[r], previous_lhs, out); rule_rhs_print (&rules[r], out); previous_lhs = rules[r].lhs;