Removed the check.
authorFrancois Fleuret <francois@fleuret.org>
Fri, 10 Feb 2012 10:38:49 +0000 (11:38 +0100)
committerFrancois Fleuret <francois@fleuret.org>
Fri, 10 Feb 2012 10:38:49 +0000 (11:38 +0100)
selector.c

index cf90315..06c43e3 100644 (file)
@@ -410,25 +410,6 @@ int match(struct matcher *matcher, char *string, int *nb_switches, int *switches
           *nb_switches = add_interval(*nb_switches, switches,
                                       (int) (where - string),
                                       (int) (where - string) + strlen(matcher->patterns[n]));
-#warning CHECK THE INTERVALS
-          {
-            /* int i; */
-            /* FILE *out = fopen("/tmp/intervals", "w"); */
-            /* for(k = 0; k < (*nb_switches)/2; k++) { */
-            /* i = 0; */
-            /* for(; i < switches[2 * k]; i++) fprintf(out, "-"); */
-            /* for(; i < switches[2 * k + 1]; i++) fprintf(out, "%c", string[i]); */
-            /* for(; i < strlen(string); i++) fprintf(out, "-"); */
-            /* fprintf(out, "\n"); */
-            /* } */
-            /* fclose(out); */
-            int k;
-            for(k = 0; k < *nb_switches - 1; k++) {
-              if(switches[k] > switches[k+1]) {
-                abort();
-              }
-            }
-          }
         }
       }
     }