From 266acde342227a699e0639c53a04fbf1490f4435 Mon Sep 17 00:00:00 2001 From: Seth Hall Date: Thu, 9 Dec 2010 16:01:19 -0500 Subject: [PATCH] Removed an accidental debugging printf. --- src/strings.bif | 1 - 1 file changed, 1 deletion(-) diff --git a/src/strings.bif b/src/strings.bif index d3c1ca2e5d..253709e858 100644 --- a/src/strings.bif +++ b/src/strings.bif @@ -224,7 +224,6 @@ Val* do_split(StringVal* str_val, RE_Matcher* re, TableVal* other_sep, while ( n > 0 && (end_of_match = re->MatchPrefix(&s[offset], n)) <= 0 ) { - printf("character %d\n", offset); // Move on to next character. ++offset; --n;