changeset 7435:483a70ceec47

Move USE_HEURISTIC comment.
author Bruno Haible <bruno@clisp.org>
date Sat, 07 Oct 2006 16:52:38 +0000
parents 2ee32ecdec9d
children bea4f38a0f8d
files lib/fstrcmp.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lib/fstrcmp.c	Sat Oct 07 16:40:41 2006 +0000
+++ b/lib/fstrcmp.c	Sat Oct 07 16:52:38 2006 +0000
@@ -63,6 +63,8 @@
 #define ELEMENT char
 #define EQUAL(x,y) ((x) == (y))
 #define OFFSET int
+/* We don't need USE_HEURISTIC, since it is unlikely in typical uses of
+   fstrcmp().  */
 
 /* Before including this file, you need to define:
      ELEMENT                 The element type of the sequences being compared.
@@ -110,9 +112,7 @@
   #ifdef USE_HEURISTIC
   /* This corresponds to the diff -H flag.  With this heuristic, for
      vectors with a constant small density of changes, the algorithm is
-     linear in the vectors size.  This is unlikely in typical uses of
-     fstrcmp, and so is usually compiled out.  Besides, there is no
-     interface to set it true.  */
+     linear in the vectors size.  */
   int heuristic;
   #endif