diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 1998-06-26 22:55:26 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-28 21:09:48 +0000 |
commit | 34636d8225beb20b07fd0f6cb46615be6e0ed089 (patch) | |
tree | fba77924a69fae7095030b314eb5e20f98b74006 /t/op/re_tests | |
parent | b368a1164641a81d0a5e4c4d27c5982ce64cf445 (diff) | |
download | perl-34636d8225beb20b07fd0f6cb46615be6e0ed089.tar.gz |
applied patch, tweaked doc, and regen regnodes.h
Message-Id: <199806270655.CAA29144@monk.mps.ohio-state.edu>
Subject: [PATCH 5.004_68] \z in RE
p4raw-id: //depot/perl@1250
Diffstat (limited to 't/op/re_tests')
-rw-r--r-- | t/op/re_tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/op/re_tests b/t/op/re_tests index b506306dbb..dd54a2a5b5 100644 --- a/t/op/re_tests +++ b/t/op/re_tests @@ -439,3 +439,8 @@ $(?<=^(a)) a y $1 a ((?>[^()]+)|\([^()]*\))+ ((abc(ade)ufh()()x y $& abc(ade)ufh()()x (?<=x+)y - c - /(?<=x+)y/: variable length lookbehind not implemented a{37,17} - c - /a{37,17}/: Can't do {n,m} with n > m +a\Z a\nb\n n - - +b\Z a\nb\n y - - +b\z a\nb\n n - - +b\Z a\nb y - - +b\z a\nb y - - |