Removed an accidental debugging printf.

This commit is contained in:
Seth Hall 2010-12-09 16:01:19 -05:00
parent 61c99176ad
commit 266acde342

View file

@ -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;