summaryrefslogtreecommitdiff
path: root/regcomp_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'regcomp_debug.c')
-rw-r--r--regcomp_debug.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/regcomp_debug.c b/regcomp_debug.c
index b90fe92532..6410f5e2da 100644
--- a/regcomp_debug.c
+++ b/regcomp_debug.c
@@ -464,6 +464,8 @@ Perl_regprop(pTHX_ const regexp *prog, SV *sv, const regnode *o, const regmatch_
}
} else if (k == CURLY) {
U32 lo = ARG1(o), hi = ARG2(o);
+ if (ARG3(o) || ARG4(o))
+ Perl_sv_catpvf(aTHX_ sv, "<%d:%d>", ARG3(o),ARG4(o)); /* paren before, paren after */
if (op == CURLYM || op == CURLYN || op == CURLYX)
Perl_sv_catpvf(aTHX_ sv, "[%d]", o->flags); /* Parenth number */
Perl_sv_catpvf(aTHX_ sv, "{%u,", (unsigned) lo);