changeset 7430:f53f84143fe3

Update comments for use of 'bool'.
author Bruno Haible <bruno@clisp.org>
date Sat, 07 Oct 2006 15:54:15 +0000
parents 5c6e946feae3
children 4be22146f91d
files lib/diffseq.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/diffseq.h
+++ b/lib/diffseq.h
@@ -54,7 +54,7 @@
 struct partition
 {
   OFFSET xmid, ymid;	/* Midpoints of this partition.  */
-  bool lo_minimal;	/* Nonzero if low half will be analyzed minimally.  */
+  bool lo_minimal;	/* True if low half will be analyzed minimally.  */
   bool hi_minimal;	/* Likewise for high half.  */
 };
 
@@ -66,7 +66,7 @@
    When the two searches meet, we have found the midpoint of the shortest
    edit sequence.
 
-   If FIND_MINIMAL is nonzero, find the minimal edit script regardless
+   If FIND_MINIMAL is true, find the minimal edit script regardless
    of expense.  Otherwise, if the search is too expensive, use
    heuristics to stop the search and report a suboptimal answer.