summaryrefslogtreecommitdiff
path: root/src/gram.h
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2019-01-23 06:53:02 +0100
committerAkim Demaille <akim.demaille@gmail.com>2019-01-26 16:16:47 +0100
commita11463a02fc069563bd62951f9d0b7096182ad73 (patch)
tree1ef275579d645a6aa53e732bc1bc3c7dd42da377 /src/gram.h
parent8023b3153a493245c4d7334445fb025996c8c20f (diff)
downloadbison-a11463a02fc069563bd62951f9d0b7096182ad73.tar.gz
style: comment changes in gram.h
* src/gram.h: Shorten comments.
Diffstat (limited to 'src/gram.h')
-rw-r--r--src/gram.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gram.h b/src/gram.h
index 83dd8aac..3210b494 100644
--- a/src/gram.h
+++ b/src/gram.h
@@ -75,7 +75,7 @@
RULES[R].line -- the line where R was defined.
- RULES[R].useful -- true iff the rule is used (i.e., false if thrown
+ RULES[R].useful -- whether the rule is used (i.e., false if thrown
away by reduce).
The right hand side is stored as symbol numbers in a portion of
@@ -210,15 +210,15 @@ extern rule *rules;
/* A function that selects a rule. */
typedef bool (*rule_filter) (rule const *);
-/* Return true IFF the rule has a 'number' smaller than NRULES. That is, it is
- useful in the grammar. */
+/* Whether the rule has a 'number' smaller than NRULES. That is, it
+ is useful in the grammar. */
bool rule_useful_in_grammar_p (rule const *r);
-/* Return true IFF the rule has a 'number' higher than NRULES. That is, it is
+/* Whether the rule has a 'number' higher than NRULES. That is, it is
useless in the grammar. */
bool rule_useless_in_grammar_p (rule const *r);
-/* Return true IFF the rule is not flagged as useful but is useful in the
+/* Whether the rule is not flagged as useful but is useful in the
grammar. In other words, it was discarded because of conflicts. */
bool rule_useless_in_parser_p (rule const *r);
@@ -229,7 +229,7 @@ void rule_lhs_print (rule const *r, sym_content const *previous_lhs,
FILE *out);
void rule_lhs_print_xml (rule const *r, FILE *out, int level);
-/* Return the length of the RHS. */
+/* The length of the RHS. */
size_t rule_rhs_length (rule const *r);
/* Print this rule's RHS on OUT. */
@@ -252,7 +252,7 @@ extern int max_user_token_number;
/* Dump RITEM for traces. */
void ritem_print (FILE *out);
-/* Return the size of the longest rule RHS. */
+/* The size of the longest rule RHS. */
size_t ritem_longest_rhs (void);
/* Print the grammar's rules that match FILTER on OUT under TITLE. */