diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-02 04:49:32 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-02 04:49:32 +0000 |
commit | cb5d145d207493f0263c99601c0457a4af696821 (patch) | |
tree | f21e6e0a739480e3256d7f96278cb07ed88ee54e /regexec.c | |
parent | d5fdf557bafa0b62e5137b7e9cc0d2d0d7c86735 (diff) | |
download | perl-cb5d145d207493f0263c99601c0457a4af696821.tar.gz |
rename duplicate warning in regexec.c
p4raw-id: //depot/maint-5.005/perl@1695
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1246,7 +1246,9 @@ regmatch(regnode *prog) } if (PL_dowarn && n >= REG_INFTY && !(PL_reg_flags & RF_warned)) { PL_reg_flags |= RF_warned; - warn("count exceeded %d", REG_INFTY - 1); + warn("%s limit (%d) exceeded", + "Complex regular subexpression recursion", + REG_INFTY - 1); } /* Failed deeper matches of scan, so see if this one works. */ |