diff options
Diffstat (limited to 'src/regex.c')
-rw-r--r-- | src/regex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c index eb0e3b9..264bfeb 100644 --- a/src/regex.c +++ b/src/regex.c @@ -232,7 +232,7 @@ static void regex_symbol(t_regex *x, t_symbol *s, int argc, t_atom*argv) if(match[i].rm_so!=-1){ /* output the matches */ if(i>0 && (match[i].rm_so==match[i-1].rm_so) && (match[i].rm_eo==match[i-1].rm_eo)){ - // duplicate matches + /* duplicate matches */ } else { SETFLOAT(ap2+0, (t_float)i); SETFLOAT(ap2+1, (t_float)match[i].rm_so); |