diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-21 01:21:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-21 01:21:41 +0000 |
commit | 2f3ca5943bd369554ca9d604462d643d62934add (patch) | |
tree | bb9b7ecfc8d72b1fa73f20627a8543b59659d490 /regexec.c | |
parent | 3fb91a5e46aea49ba3ce96c8d95ff739f2fc0307 (diff) | |
download | perl-2f3ca5943bd369554ca9d604462d643d62934add.tar.gz |
workaround C<"foo" "bar"> catenation-intolerant compilers
p4raw-id: //depot/perl@1587
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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; } |