projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9d05ba6
)
Test vertical whitespace combined with /x in \p{}.
Jarkko Hietaniemi [Sat, 20 Oct 2001 00:51:07 +0000 (
00:51
+0000)]
p4raw-id: //depot/perl@12519
t/op/pat.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/pat.t
b/t/op/pat.t
index
6617921
..
9937e36
100755
(executable)
--- a/
t/op/pat.t
+++ b/
t/op/pat.t
@@
-2235,7
+2235,10
@@
print "# some Unicode properties\n";
print "not " unless "a" =~ /\p{LowercaseLetter}/;
print "ok 745\n";
- print "not " if "A" =~ /\p{LowercaseLetter}/;
+ print "not " if "A" =~ /\p{
+ Lowercase
+ Letter
+ }/x;
print "ok 746\n";
}