]> git.saurik.com Git - bison.git/commitdiff
Use C99-style bool instead of our own style.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Oct 2002 04:45:51 +0000 (04:45 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Oct 2002 04:45:51 +0000 (04:45 +0000)
(comment change only)

src/gram.h
src/symtab.h

index 14f54b52be7e59ac63c92ba9b9d39796df26b846..1667169f515639b0039387c3e87b1a6e83bf8f6e 100644 (file)
@@ -76,7 +76,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 -- true iff 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
index 7ad6333330f2e17e7620831e747e2a5fbc7aa5d1..61bd4017904b59ede7d50ca0401523281b075ee3 100644 (file)
@@ -143,8 +143,8 @@ void symbols_new (void);
 /* A function to apply to each symbol. */
 typedef bool (*symbol_processor) (symbol_t *);
 
-/* Apply PROCESSOR to all the symbols.  PROCESSOR must return TRUE: on
-   FALSE, the processing stops.  */
+/* Apply PROCESSOR to all the symbols.  PROCESSOR must return true: on
+   false, the processing stops.  */
 void symbols_do (symbol_processor processor, void *processor_data);
 
 /* Free all the memory allocated for symbols.  */