summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-01-14 14:45:07 +0000
committerNicholas Clark <nick@ccl4.org>2004-01-14 14:45:07 +0000
commit557bccf82ae765d4d368ef34f3fbb5ed8333a483 (patch)
tree68dcc87ce31567ba4bd884413d822790cc5c8c11
parent4d6161b888de754cfcb485cebd249be8ef64c149 (diff)
downloadperl-557bccf82ae765d4d368ef34f3fbb5ed8333a483.tar.gz
Mention that bug 24846 is fixed (utf8 join)
p4raw-id: //depot/maint-5.8/perl@22142
-rw-r--r--pod/perl583delta.pod5
1 files changed, 5 insertions, 0 deletions
diff --git a/pod/perl583delta.pod b/pod/perl583delta.pod
index 18057af57a..2967647cde 100644
--- a/pod/perl583delta.pod
+++ b/pod/perl583delta.pod
@@ -105,6 +105,11 @@ Using substr() on a UTF8 string could cause subsequent accesses on that
string to return garbage. This was due to incorrect UTF8 offsets being
cached, and is now fixed.
+join() could return garbage when the same join() statement was used to
+process 8 bit data having earlier processed UTF8 data, due to the flags
+on that statement's temporary workspace not being reset correctly. This
+is now fixed.
+
C<$a .. $b> will now work as expected when either $a or $b is C<undef>
Using Unicode keys with tied hashes should now work correctly.