projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
603c58b
)
Work around to get Unicode tests passing.
Nicholas Clark [Thu, 10 May 2007 22:32:57 +0000 (22:32 +0000)]
p4raw-id: //depot/perl@31198
ext/Unicode/Normalize/mkheader
patch
|
blob
|
blame
|
history
diff --git
a/ext/Unicode/Normalize/mkheader
b/ext/Unicode/Normalize/mkheader
index
165c1c4
..
68b58ca
100644
(file)
--- a/
ext/Unicode/Normalize/mkheader
+++ b/
ext/Unicode/Normalize/mkheader
@@
-216,7
+216,7
@@
sub _pack_U {
sub _U_stringify {
sprintf '"%s"', join '',
- map sprintf("\\x%02x", $_), unpack 'C*', _pack_U(@_);
+ map sprintf("\\x%02x", $_), unpack 'U0C*', _pack_U(@_);
}
foreach my $hash (\%Canon, \%Compat) {