From 25f684f718f20320d62ba2370f2f4341a3b159e7 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Tue, 11 Jul 2006 14:55:17 +0000 Subject: [PATCH] Revert bogus fix for bug #27940, which wasn't really a bug, and a new test item, as found and suggested by Sadahiro Tomoyuki. p4raw-id: //depot/perl@28548 --- t/op/pat.t | 3 ++- toke.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/t/op/pat.t b/t/op/pat.t index aeab0f7..e4ba07f 100755 --- a/t/op/pat.t +++ b/t/op/pat.t @@ -7,7 +7,7 @@ $| = 1; # please update note at bottom of file when you change this -print "1..1211\n"; +print "1..1212\n"; BEGIN { chdir 't' if -d 't'; @@ -3312,6 +3312,7 @@ ok("abc" =~ /[^\cA-\cB]/, '\cA in negated character class range'); ok("a\cBb" =~ /[\cA-\cC]/, '\cB in character class range'); ok("a\cCbc" =~ /[^\cA-\cB]/, '\cC in negated character class range'); ok("a\cAb" =~ /(??{"\cA"})/, '\cA in ??{} pattern'); +ok("ab" !~ /a\cIb/x, '\cI in pattern'); # perl #28532: optional zero-width match at end of string is ignored ok(("abc" =~ /^abc(\z)?/) && defined($1), diff --git a/toke.c b/toke.c index f4e4499..ddaf421 100644 --- a/toke.c +++ b/toke.c @@ -1785,7 +1785,7 @@ S_scan_const(pTHX_ char *start) const char * const leaveit = /* set of acceptably-backslashed characters */ PL_lex_inpat - ? "\\.^$@AGZdDwWsSbBpPXC+*?|()-nrtfeaxz0123456789[{]} \t\n\r\f\v#" + ? "\\.^$@AGZdDwWsSbBpPXC+*?|()-nrtfeaxcz0123456789[{]} \t\n\r\f\v#" : ""; if (PL_lex_inwhat == OP_TRANS && PL_sublex_info.sub_op) { -- 2.7.4