summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-21 01:21:41 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-21 01:21:41 +0000
commit2f3ca5943bd369554ca9d604462d643d62934add (patch)
treebb9b7ecfc8d72b1fa73f20627a8543b59659d490 /regexec.c
parent3fb91a5e46aea49ba3ce96c8d95ff739f2fc0307 (diff)
downloadperl-2f3ca5943bd369554ca9d604462d643d62934add.tar.gz
workaround C<"foo" "bar"> catenation-intolerant compilers
p4raw-id: //depot/perl@1587
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/regexec.c b/regexec.c
index 9e90699ec8..47ece6a14b 100644
--- a/regexec.c
+++ b/regexec.c
@@ -1188,8 +1188,9 @@ regmatch(regnode *prog)
if (PL_dowarn && n >= REG_INFTY
&& !(PL_reg_flags & RF_warned)) {
PL_reg_flags |= RF_warned;
- warn("Complex regular subexpression recursion "
- "limit (%d) exceeded", REG_INFTY - 1);
+ warn("%s limit (%d) exceeded",
+ "Complex regular subexpression recursion",
+ REG_INFTY - 1);
}
sayNO;
}