]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Move USE_HEURISTIC comment.
authorBruno Haible <bruno@clisp.org>
Mon, 18 Dec 2006 12:48:30 +0000 (12:48 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:14:31 +0000 (12:14 +0200)
gnulib-local/lib/fstrcmp.c

index a5732ac92bff69228cb2a534f2ab29350c686930..e9a4b3bb2766a3ac97776f04c34b449feb969839 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.  */
   bool heuristic;
   #endif