This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d5fdf55
)
rename duplicate warning in regexec.c
author
Gurusamy Sarathy
<gsar@cpan.org>
Sun, 2 Aug 1998 04:49:32 +0000
(
04:49
+0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Sun, 2 Aug 1998 04:49:32 +0000
(
04:49
+0000)
p4raw-id: //depot/maint-5.005/perl@1695
regexec.c
patch
|
blob
|
blame
|
history
diff --git
a/regexec.c
b/regexec.c
index
13675cc
..
f8c5e7e
100644
(file)
--- a/
regexec.c
+++ b/
regexec.c
@@
-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. */