]> Savannah Git Hosting - gnulib.git/commitdiff
Move USE_HEURISTIC comment.
authorBruno Haible <bruno@clisp.org>
Sat, 7 Oct 2006 16:52:38 +0000 (16:52 +0000)
committerBruno Haible <bruno@clisp.org>
Sat, 7 Oct 2006 16:52:38 +0000 (16:52 +0000)
lib/fstrcmp.c

index 2ba6cf4aadb98a6248dd878edc3e58c1a5326b2e..9ff07366f5c73cae04f1fc65d11ea088ed99b4d6 100644 (file)
@@ -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 @@ struct context
   #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