File: perl588delta.html

package info (click to toggle)
perl-doc-html 5.18.2-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 38,816 kB
  • ctags: 26,804
  • sloc: xml: 36; makefile: 10
file content (1824 lines) | stat: -rw-r--r-- 61,796 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>perl588delta - perldoc.perl.org</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <meta http-equiv="Content-Language" content="en-gb">
  <link rel="search" type="application/opensearchdescription+xml" title="Search perldoc.perl.org" href="/static/search.xml"/>
  <link href="static/css-20100830.css" rel="stylesheet" rev="stylesheet" type="text/css" media="screen">
  <link href="static/exploreperl.css" rel="stylesheet" rev="stylesheet" type="text/css">
</head>

<body onLoad="perldoc.startup();" onPageShow="if (event.persisted) perldoc.startup();">
    <div id="page">
      
      <div id="header">
	<div id="homepage_link">
	  <a href="index.html"></a>
	</div>
	<div id="strapline">
	  Perl Programming Documentation
	</div>
	<div id="download_link" class="download">
	  <a href="http://www.perl.org/get.html">Download Perl</a>
	</div>
	<div id="explore_link" class="download">
	  <a id="explore_anchor" href="#">Explore</a>
	</div>
      </div>
      
      <div id="body">
        <div id="left_column">
          <div class="side_group">
            
	    <div class="side_panel doc_panel">
              <p>Manual</p>
              <ul>
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">History / Changes</a>
                <li><a href="index-licence.html">License</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Reference</p>
              <ul>
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Special Variables</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platform Specific</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Modules</p>
              <ul>
		<li>
		
                
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		
                  
		
		
                    <a href="index-modules-A.html">A</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-B.html">B</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-C.html">C</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-D.html">D</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-E.html">E</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-F.html">F</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-G.html">G</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-H.html">H</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-I.html">I</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-L.html">L</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-M.html">M</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-N.html">N</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-O.html">O</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-P.html">P</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-S.html">S</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-T.html">T</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-U.html">U</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-X.html">X</a>
                    
                
              </ul>
            </div>
            
	      <div class="side_panel doc_panel">
		<p>Tools</p>
		<ul>
		  <li><a href="preferences.html">Preferences</a>
		</ul>
	      </div>
            
          </div>
        </div>
        <div id="centre_column">
          <div id="content_header">
            <div id="title_bar">
              <div id="page_name">
                <h1>perl588delta</h1>
              </div>
              <div id="perl_version">
                Perl 5 version 18.2 documentation
              </div>
              <div class="page_links" id="page_links_top">
                <a href="#" onClick="toolbar.goToTop();return false;">Go to top</a>
		
              </div>
	      <div class="page_links" id="page_links_bottom">
		
                  <a href="#" id="page_index_toggle">Show page index</a> &bull;
		
                <a href="#" id="recent_pages_toggle">Show recent pages</a>		
	      </div>
	      <div id="search_form">
		<form action="search.html" method="GET" id="search">
		  <input type="text" name="q" id="search_box" alt="Search">
		</form>
	      </div>
            </div>
            <div id="breadcrumbs">
                
    <a href="index.html">Home</a> &gt;
    
      
        <a href="index-history.html">History / Changes</a> &gt;
      
    
    perl588delta
  

            </div>
          </div>
          <div id="content_body">
	    <!--[if lt IE 7]>
 <div class="noscript">
   <p>
     <strong>It looks like you're using Internet Explorer 6. This is a very old
     browser which does not offer full support for modern websites.</strong>
   </p>
   <p>
     Unfortunately this means that this website will not work on
     your computer.
   </p>
   <p>
     Don't miss out though! To view the site (and get a better experience from
     many other websites), simply upgrade to
     <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet
Explorer 8</a>
     or download an alternative browser such as
     <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>,
     <a href="http://www.apple.com/safari/download/">Safari</a>, or
     <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
   </p>
   <p>
     All of these browsers are free. If you're using a PC at work, you may
     need to contact your IT administrator.
   </p>
 </div>
<![endif]-->
	    <noscript>
	      <div class="noscript">
	      <p>
                <strong>Please note: Many features of this site require JavaScript. You appear to have JavaScript disabled,
	        or are running a non-JavaScript capable web browser.</strong>
	      </p>
	      <p>
		To get the best experience, please enable JavaScript or download a modern web browser such as <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet Explorer 8</a>, <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>, <a href="http://www.apple.com/safari/download/">Safari</a>, or <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
              </p>
	      </div>
	    </noscript>

	    <div id="recent_pages" class="hud_container">
	      <div id="recent_pages_header" class="hud_header">
		<div id="recent_pages_close" class="hud_close"><a href="#" onClick="recentPages.hide();return false;"></a></div>
		<div id="recent_pages_title" class="hud_title"><span class="hud_span_top">Recently read</span></div>
		<div id="recent_pages_topright" class="hud_topright"></div>
	      </div>
	      <div id="recent_pages_content" class="hud_content">
	      </div>
	      <div id="recent_pages_footer" class="hud_footer">
		<div id="recent_pages_bottomleft" class="hud_bottomleft"></div>
		<div id="recent_pages_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
		<div id="recent_pages_resize" class="hud_resize"></div>
	      </div>
	    </div>
  
	    <div id="from_search"></div>
            <h1>perl588delta</h1>


  <!--    -->
<ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#Incompatible-Changes">Incompatible Changes</a><li><a href="#Core-Enhancements">Core Enhancements</a><li><a href="#Modules-and-Pragmata">Modules and Pragmata</a><li><a href="#Utility-Changes">Utility Changes</a><ul><li><a href="#h2xs-enhancements">h2xs enhancements</a><li><a href="#perlivp-enhancements">perlivp enhancements</a></ul><li><a href="#New-Documentation">New Documentation</a><li><a href="#Performance-Enhancements">Performance Enhancements</a><li><a href="#Installation-and-Configuration-Improvements">Installation and Configuration Improvements</a><li><a href="#Selected-Bug-Fixes">Selected Bug Fixes</a><ul><li><a href="#no-warnings-'category'-works-correctly-with--w">no warnings 'category' works correctly with -w</a><li><a href="#Remove-over-optimisation">Remove over-optimisation</a><li><a href="#sprintf()-fixes">sprintf() fixes</a><li><a href="#Debugger-and-Unicode-slowdown">Debugger and Unicode slowdown</a><li><a href="#Smaller-fixes">Smaller fixes</a></ul><li><a href="#New-or-Changed-Diagnostics">New or Changed Diagnostics</a><ul><li><a href="#Attempt-to-set-length-of-freed-array">Attempt to set length of freed array</a><li><a href="#Non-string-passed-as-bitmask">Non-string passed as bitmask</a><li><a href="#Search-pattern-not-terminated-or-ternary-operator-parsed-as-search-pattern">Search pattern not terminated or ternary operator parsed as search pattern</a></ul><li><a href="#Changed-Internals">Changed Internals</a><li><a href="#Platform-Specific-Problems">Platform Specific Problems</a><li><a href="#Reporting-Bugs">Reporting Bugs</a><li><a href="#SEE-ALSO">SEE ALSO</a></ul><a name="NAME"></a><h1>NAME</h1>
<p>perl588delta - what is new for perl v5.8.8</p>
<a name="DESCRIPTION"></a><h1>DESCRIPTION</h1>
<p>This document describes differences between the 5.8.7 release and
the 5.8.8 release.</p>
<a name="Incompatible-Changes"></a><h1>Incompatible Changes</h1>
<p>There are no changes intentionally incompatible with 5.8.7. If any exist,
they are bugs and reports are welcome.</p>
<a name="Core-Enhancements"></a><h1>Core Enhancements</h1>
<ul>
<li>
<p><code class="inline"><a class="l_k" href="functions/chdir.html">chdir</a></code>, <code class="inline"><a class="l_k" href="functions/chmod.html">chmod</a></code> and <code class="inline"><a class="l_k" href="functions/chown.html">chown</a></code> can now work on filehandles as well as
filenames, if the system supports respectively <code class="inline"><span class="w">fchdir</span></code>
, <code class="inline"><span class="w">fchmod</span></code>
 and
<code class="inline"><span class="w">fchown</span></code>
, thanks to a patch provided by Gisle Aas.</p>
</li>
</ul>
<a name="Modules-and-Pragmata"></a><h1>Modules and Pragmata</h1>
<ul>
<li>
<p><code class="inline"><span class="w">Attribute::Handlers</span></code>
 upgraded to version 0.78_02</p>
<ul>
<li>
<p>Documentation typo fix</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">attrs</span></code>
 upgraded to version 1.02</p>
<ul>
<li>
<p>Internal cleanup only</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">autouse</span></code>
 upgraded to version 1.05</p>
<ul>
<li>
<p>Simplified implementation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">B</span></code>
 upgraded to version 1.09_01</p>
<ul>
<li>
<p>The inheritance hierarchy of the <code class="inline"><span class="w">B::</span></code>
 modules has been corrected;
<code class="inline"><span class="w">B::NV</span></code>
 now inherits from <code class="inline"><span class="w">B::SV</span></code>
 (instead of <code class="inline"><span class="w">B::IV</span></code>
).</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">blib</span></code>
 upgraded to version 1.03</p>
<ul>
<li>
<p>Documentation typo fix</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">ByteLoader</span></code>
 upgraded to version 0.06</p>
<ul>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">CGI</span></code>
 upgraded to version 3.15</p>
<ul>
<li>
<p>Extraneous "?" from <code class="inline"><span class="i">self_url</span><span class="s">(</span><span class="s">)</span></code>
 removed</p>
</li>
<li>
<p><code class="inline"><span class="i">scrolling_list</span><span class="s">(</span><span class="s">)</span></code>
 select attribute fixed</p>
</li>
<li>
<p><code class="inline"><span class="w">virtual_port</span></code>
 now works properly with the https protocol</p>
</li>
<li>
<p><code class="inline"><span class="i">upload_hook</span><span class="s">(</span><span class="s">)</span></code>
 and <code class="inline"><span class="i">append</span><span class="s">(</span><span class="s">)</span></code>
 now works in function-oriented mode</p>
</li>
<li>
<p><code class="inline"><span class="w">POST_MAX</span></code>
 doesn't cause the client to hang any more</p>
</li>
<li>
<p>Automatic tab indexes are now disabled and new <code class="inline">-<span class="w">tabindex</span></code>
 pragma has
been added to turn automatic indexes back on</p>
</li>
<li>
<p><code class="inline"><span class="i">end_form</span><span class="s">(</span><span class="s">)</span></code>
 doesn't emit empty (and non-validating) <code class="inline"><span class="q">&lt;div&gt;</span></code>
</p>
</li>
<li>
<p><code class="inline"><span class="w">CGI::Carp</span></code>
 works better in certain mod_perl configurations</p>
</li>
<li>
<p>Setting <code class="inline"><span class="i">$CGI::TMPDIRECTORY</span></code>
 is now effective</p>
</li>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">charnames</span></code>
 upgraded to version 1.05</p>
<ul>
<li>
<p><code class="inline"><span class="i">viacode</span><span class="s">(</span><span class="s">)</span></code>
 now accept hex strings and has been optimized.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">CPAN</span></code>
 upgraded to version 1.76_02</p>
<ul>
<li>
<p>1 minor bug fix for Win32</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Cwd</span></code>
 upgraded to version 3.12</p>
<ul>
<li>
<p><code class="inline"><span class="i">canonpath</span><span class="s">(</span><span class="s">)</span></code>
 on Win32 now collapses <i>foo\..</i> sections correctly.</p>
</li>
<li>
<p>Improved behaviour on Symbian OS.</p>
</li>
<li>
<p>Enhanced documentation and typo fixes</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Data::Dumper</span></code>
 upgraded to version 2.121_08</p>
<ul>
<li>
<p>A problem where <code class="inline"><span class="w">Data::Dumper</span></code>
 would sometimes update the iterator state
of hashes has been fixed</p>
</li>
<li>
<p>Numeric labels now work</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">DB</span></code>
 upgraded to version 1.01</p>
<ul>
<li>
<p>A problem where the state of the regexp engine would sometimes get clobbered when running
under the debugger has been fixed.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">DB_File</span></code>
 upgraded to version 1.814</p>
<ul>
<li>
<p>Adds support for Berkeley DB 4.4.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Devel::DProf</span></code>
 upgraded to version 20050603.00</p>
<ul>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Devel::Peek</span></code>
 upgraded to version 1.03</p>
<ul>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Devel::PPPort</span></code>
 upgraded to version 3.06_01</p>
<ul>
<li>
<p><code class="inline">--<span class="w">compat</span>-<span class="w">version</span></code>
 argument checking has been improved</p>
</li>
<li>
<p>Files passed on the command line are filtered by default</p>
</li>
<li>
<p><code class="inline">--<span class="w">nofilter</span></code>
 option to override the filtering has been added</p>
</li>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">diagnostics</span></code>
 upgraded to version 1.15</p>
<ul>
<li>
<p>Documentation typo fix</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Digest</span></code>
 upgraded to version 1.14</p>
<ul>
<li>
<p>The constructor now knows which module implements SHA-224</p>
</li>
<li>
<p>Documentation tweaks and typo fixes</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Digest::MD5</span></code>
 upgraded to version 2.36</p>
<ul>
<li>
<p><code class="inline"><span class="w">XSLoader</span></code>
 is now used for faster loading</p>
</li>
<li>
<p>Enhanced documentation including MD5 weaknesses discovered lately</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Dumpvalue</span></code>
 upgraded to version 1.12</p>
<ul>
<li>
<p>Documentation fix</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">DynaLoader</span></code>
 upgraded but unfortunately we're not able to increment its version number :-(</p>
<ul>
<li>
<p>Implements <code class="inline"><span class="w">dl_unload_file</span></code>
 on Win32</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
<li>
<p><code class="inline"><span class="w">XSLoader</span></code>
 0.06 incorporated; small optimisation for calling
<code class="inline"><span class="i">bootstrap_inherit</span><span class="s">(</span><span class="s">)</span></code>
 and documentation enhancements.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Encode</span></code>
 upgraded to version 2.12</p>
<ul>
<li>
<p>A coderef is now acceptable for <code class="inline">CHECK</code>
!</p>
</li>
<li>
<p>3 new characters added to the ISO-8859-7 encoding</p>
</li>
<li>
<p>New encoding <code class="inline"><span class="w">MIME</span>-<span class="w">Header</span>-<span class="w">ISO_2022_JP</span></code>
 added</p>
</li>
<li>
<p>Problem with partial characters and <code class="inline"><span class="i">encoding</span><span class="s">(</span><span class="w">utf</span>-<span class="n">8</span>-<span class="w">strict</span><span class="s">)</span></code>
 fixed.</p>
</li>
<li>
<p>Documentation enhancements and typo fixes</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">English</span></code>
 upgraded to version 1.02</p>
<ul>
<li>
<p>the <code class="inline"><span class="i">$COMPILING</span></code>
 variable has been added</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">ExtUtils::Constant</span></code>
 upgraded to version 0.17</p>
<ul>
<li>
<p>Improved compatibility with older versions of perl</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">ExtUtils::MakeMaker</span></code>
 upgraded to version 6.30 (was 6.17)</p>
<ul>
<li>
<p>Too much to list here;  see <a href="http://search.cpan.org/dist/ExtUtils-MakeMaker/Changes">http://search.cpan.org/dist/ExtUtils-MakeMaker/Changes</a></p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">File::Basename</span></code>
 upgraded to version 2.74, with changes contributed by Michael Schwern.</p>
<ul>
<li>
<p>Documentation clarified and errors corrected.</p>
</li>
<li>
<p><code class="inline"><span class="w">basename</span></code>
 now strips trailing path separators before processing the name.</p>
</li>
<li>
<p><code class="inline"><span class="w">basename</span></code>
 now returns <code class="inline">/</code> for parameter <code class="inline">/</code>, to make <code class="inline"><span class="w">basename</span></code>

consistent with the shell utility of the same name.</p>
</li>
<li>
<p>The suffix is no longer stripped if it is identical to the remaining characters
in the name, again for consistency with the shell utility.</p>
</li>
<li>
<p>Some internal code cleanup.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">File::Copy</span></code>
 upgraded to version 2.09</p>
<ul>
<li>
<p>Copying a file onto itself used to fail.</p>
</li>
<li>
<p>Moving a file between file systems now preserves the access and
modification time stamps</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">File::Find</span></code>
 upgraded to version 1.10</p>
<ul>
<li>
<p>Win32 portability fixes</p>
</li>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">File::Glob</span></code>
 upgraded to version 1.05</p>
<ul>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">File::Path</span></code>
 upgraded to version 1.08</p>
<ul>
<li>
<p><code class="inline"><span class="w">mkpath</span></code>
 now preserves <code class="inline"><span class="w">errno</span></code>
 when <code class="inline"><a class="l_k" href="functions/mkdir.html">mkdir</a></code> fails</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">File::Spec</span></code>
 upgraded to version 3.12</p>
<ul>
<li>
<p><code class="inline"><span class="w">File::Spec</span>-</code>
rootdir()&gt; now returns <code class="inline">\</code>
 on Win32, instead of <code class="inline">/</code></p>
</li>
<li>
<p><code class="inline"><span class="i">$^O</span></code>
 could sometimes become tainted. This has been fixed.</p>
</li>
<li>
<p><code class="inline"><span class="w">canonpath</span></code>
 on Win32 now collapses <code class="inline"><span class="w">foo</span>/..</code>
 (or <code class="inline"><span class="w">foo</span>\..</code>
) sections
correctly, rather than doing the "misguided" work it was previously doing.
Note that <code class="inline"><span class="w">canonpath</span></code>
 on Unix still does <b>not</b> collapse these sections, as
doing so would be incorrect.</p>
</li>
<li>
<p>Some documentation improvements</p>
</li>
<li>
<p>Some internal code cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">FileCache</span></code>
 upgraded to version 1.06</p>
<ul>
<li>
<p>POD formatting errors in the documentation fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Filter::Simple</span></code>
 upgraded to version 0.82</p>
</li>
<li>
<p><code class="inline"><span class="w">FindBin</span></code>
 upgraded to version 1.47</p>
<ul>
<li>
<p>Now works better with directories where access rights are more
restrictive than usual.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">GDBM_File</span></code>
 upgraded to version 1.08</p>
<ul>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Getopt::Long</span></code>
 upgraded to version 2.35</p>
<ul>
<li>
<p><code class="inline"><span class="w">prefix_pattern</span></code>
 has now been complemented by a new configuration
option <code class="inline"><span class="w">long_prefix_pattern</span></code>
 that allows the user to specify what
prefix patterns should have long option style semantics applied.</p>
</li>
<li>
<p>Options can now take multiple values at once (experimental)</p>
</li>
<li>
<p>Various bug fixes</p>
</li>
</ul>
</li>
<li>
<p><code class="inline">if</code>
 upgraded to version 0.05</p>
<ul>
<li>
<p>Give more meaningful error messages from <code class="inline">if</code>
 when invoked with a
condition in list context.</p>
</li>
<li>
<p>Restore backwards compatibility with earlier versions of perl</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">IO</span></code>
 upgraded to version 1.22</p>
<ul>
<li>
<p>Enhanced documentation</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">IPC::Open2</span></code>
 upgraded to version 1.02</p>
<ul>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">IPC::Open3</span></code>
 upgraded to version 1.02</p>
<ul>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">List::Util</span></code>
 upgraded to version 1.18 (was 1.14)</p>
<ul>
<li>
<p>Fix pure-perl version of <code class="inline"><span class="w">refaddr</span></code>
 to avoid blessing an un-blessed reference</p>
</li>
<li>
<p>Use <code class="inline"><span class="w">XSLoader</span></code>
 for faster loading</p>
</li>
<li>
<p>Fixed various memory leaks</p>
</li>
<li>
<p>Internal cleanup and portability fixes</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Math::Complex</span></code>
 upgraded to version 1.35</p>
<ul>
<li>
<p><code class="inline"><a class="l_k" href="functions/atan2.html">atan2</a><span class="s">(</span><span class="n">0</span><span class="cm">,</span> <span class="w">i</span><span class="s">)</span></code>
 now works, as do all the (computable) complex argument cases</p>
</li>
<li>
<p>Fixes for certain bugs in <code class="inline"><span class="w">make</span></code>
 and <code class="inline"><span class="w">emake</span></code>
</p>
</li>
<li>
<p>Support returning the <i>k</i>th root directly</p>
</li>
<li>
<p>Support <code class="inline">[2,-3pi/8]</code> in <code class="inline"><span class="w">emake</span></code>
</p>
</li>
<li>
<p>Support <code class="inline"><span class="w">inf</span></code>
 for <code class="inline"><span class="w">make</span></code>
/<code class="inline"><span class="w">emake</span></code>
</p>
</li>
<li>
<p>Document <code class="inline"><span class="w">make</span></code>
/<code class="inline"><span class="w">emake</span></code>
 more visibly</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Math::Trig</span></code>
 upgraded to version 1.03</p>
<ul>
<li>
<p>Add more great circle routines: <code class="inline"><span class="w">great_circle_waypoint</span></code>
 and
<code class="inline"><span class="w">great_circle_destination</span></code>
</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">MIME::Base64</span></code>
 upgraded to version 3.07</p>
<ul>
<li>
<p>Use <code class="inline"><span class="w">XSLoader</span></code>
 for faster loading</p>
</li>
<li>
<p>Enhanced documentation</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">NDBM_File</span></code>
 upgraded to version 1.06</p>
<ul>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">ODBM_File</span></code>
 upgraded to version 1.06</p>
<ul>
<li>
<p>Documentation typo fixed</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Opcode</span></code>
 upgraded to version 1.06</p>
<ul>
<li>
<p>Enhanced documentation</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><a class="l_k" href="functions/open.html">open</a></code> upgraded to version 1.05</p>
<ul>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">overload</span></code>
 upgraded to version 1.04</p>
<ul>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">PerlIO</span></code>
 upgraded to version 1.04</p>
<ul>
<li>
<p><code class="inline"><span class="w">PerlIO::via</span></code>
 iterate over layers properly now</p>
</li>
<li>
<p><code class="inline"><span class="w">PerlIO::scalar</span></code>
 understands <code class="inline"><span class="i">$/</span> = <span class="q">&quot;&quot;</span></code>
 now</p>
</li>
<li>
<p><code class="inline"><span class="i">encoding</span><span class="s">(</span><span class="w">utf</span>-<span class="n">8</span>-<span class="w">strict</span><span class="s">)</span></code>
 with partial characters now works</p>
</li>
<li>
<p>Enhanced documentation</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Pod::Functions</span></code>
 upgraded to version 1.03</p>
<ul>
<li>
<p>Documentation typos fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Pod::Html</span></code>
 upgraded to version 1.0504</p>
<ul>
<li>
<p>HTML output will now correctly link
to <code class="inline"><span class="pd">=item</span></code>
s on the same page, and should be valid XHTML.</p>
</li>
<li>
<p>Variable names are recognized as intended</p>
</li>
<li>
<p>Documentation typos fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Pod::Parser</span></code>
 upgraded to version 1.32</p>
<ul>
<li>
<p>Allow files that start with <code class="inline"><span class="pd">=head</span></code>
 on the first line</p>
</li>
<li>
<p>Win32 portability fix</p>
</li>
<li>
<p>Exit status of <code class="inline"><span class="w">pod2usage</span></code>
 fixed</p>
</li>
<li>
<p>New <code class="inline">-<span class="w">noperldoc</span></code>
 switch for <code class="inline"><span class="w">pod2usage</span></code>
</p>
</li>
<li>
<p>Arbitrary URL schemes now allowed</p>
</li>
<li>
<p>Documentation typos fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">POSIX</span></code>
 upgraded to version 1.09</p>
<ul>
<li>
<p>Documentation typos fixed</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">re</span></code>
 upgraded to version 0.05</p>
<ul>
<li>
<p>Documentation typo fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Safe</span></code>
 upgraded to version 2.12</p>
<ul>
<li>
<p>Minor documentation enhancement</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">SDBM_File</span></code>
 upgraded to version 1.05</p>
<ul>
<li>
<p>Documentation typo fixed</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Socket</span></code>
 upgraded to version 1.78</p>
<ul>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Storable</span></code>
 upgraded to version 2.15</p>
<ul>
<li>
<p>This includes the <code class="inline"><span class="w">STORABLE_attach</span></code>
 hook functionality added by
Adam Kennedy, and more frugal memory requirements when storing under <code class="inline"><span class="w">ithreads</span></code>
, by
using the <code class="inline"><span class="w">ithreads</span></code>
 cloning tracking code.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Switch</span></code>
 upgraded to version 2.10_01</p>
<ul>
<li>
<p>Documentation typos fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Sys::Syslog</span></code>
 upgraded to version 0.13</p>
<ul>
<li>
<p>Now provides numeric macros and meaningful <code class="inline"><span class="w">Exporter</span></code>
 tags.</p>
</li>
<li>
<p>No longer uses <code class="inline"><span class="w">Sys::Hostname</span></code>
 as it may provide useless values in
unconfigured network environments, so instead uses <code class="inline"><span class="w">INADDR_LOOPBACK</span></code>
 directly.</p>
</li>
<li>
<p><code class="inline"><span class="i">syslog</span><span class="s">(</span><span class="s">)</span></code>
 now uses local timestamp.</p>
</li>
<li>
<p><code class="inline"><span class="i">setlogmask</span><span class="s">(</span><span class="s">)</span></code>
 now behaves like its C counterpart.</p>
</li>
<li>
<p><code class="inline"><span class="i">setlogsock</span><span class="s">(</span><span class="s">)</span></code>
 will now <code class="inline"><span class="i">croak</span><span class="s">(</span><span class="s">)</span></code>
 as documented.</p>
</li>
<li>
<p>Improved error and warnings messages.</p>
</li>
<li>
<p>Improved documentation.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Term::ANSIColor</span></code>
 upgraded to version 1.10</p>
<ul>
<li>
<p>Fixes a bug in <code class="inline"><span class="w">colored</span></code>
 when <code class="inline"><span class="i">$EACHLINE</span></code>
 is set that caused it to not color
lines consisting solely of 0 (literal zero).</p>
</li>
<li>
<p>Improved tests.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Term::ReadLine</span></code>
 upgraded to version 1.02</p>
<ul>
<li>
<p>Documentation tweaks</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Test::Harness</span></code>
 upgraded to version 2.56 (was 2.48)</p>
<ul>
<li>
<p>The <code class="inline"><span class="w">Test::Harness</span></code>
 timer is now off by default.</p>
</li>
<li>
<p>Now shows elapsed time in milliseconds.</p>
</li>
<li>
<p>Various bug fixes</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Test::Simple</span></code>
 upgraded to version 0.62 (was 0.54)</p>
<ul>
<li>
<p><code class="inline"><span class="i">is_deeply</span><span class="s">(</span><span class="s">)</span></code>
 no longer fails to work for many cases</p>
</li>
<li>
<p>Various minor bug fixes</p>
</li>
<li>
<p>Documentation enhancements</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Text::Tabs</span></code>
 upgraded to version 2005.0824</p>
<ul>
<li>
<p>Provides a faster implementation of <code class="inline"><span class="w">expand</span></code>
</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Text::Wrap</span></code>
 upgraded to version 2005.082401</p>
<ul>
<li>
<p>Adds <code class="inline"><span class="i">$Text::Wrap::separator2</span></code>
, which allows you to preserve existing newlines
but add line-breaks with some other string.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">threads</span></code>
 upgraded to version 1.07</p>
<ul>
<li>
<p><code class="inline"><span class="w">threads</span></code>
 will now honour <code class="inline"><a class="l_k" href="functions/no.html">no</a> <span class="w">warnings</span> <span class="q">&#39;threads&#39;</span></code>
</p>
</li>
<li>
<p>A thread's interpreter is now freed after <code class="inline"><span class="i">$t</span><span class="i">-&gt;join</span><span class="s">(</span><span class="s">)</span></code>
 rather than after
<code class="inline"><a class="l_k" href="functions/undef.html">undef</a> <span class="i">$t</span></code>
, which should fix some <code class="inline"><span class="w">ithreads</span></code>
 memory leaks. (Fixed by Dave
Mitchell)</p>
</li>
<li>
<p>Some documentation typo fixes.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">threads::shared</span></code>
 upgraded to version 0.94</p>
<ul>
<li>
<p>Documentation changes only</p>
</li>
<li>
<p>Note: An improved implementation of <code class="inline"><span class="w">threads::shared</span></code>
 is available on
CPAN - this will be merged into 5.8.9 if it proves stable.</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Tie::Hash</span></code>
 upgraded to version 1.02</p>
<ul>
<li>
<p>Documentation typo fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Time::HiRes</span></code>
 upgraded to version 1.86 (was 1.66)</p>
<ul>
<li>
<p><code class="inline"><span class="i">clock_nanosleep</span><span class="s">(</span><span class="s">)</span></code>
 and <code class="inline"><span class="i">clock</span><span class="s">(</span><span class="s">)</span></code>
 functions added</p>
</li>
<li>
<p>Support for the POSIX <code class="inline"><span class="i">clock_gettime</span><span class="s">(</span><span class="s">)</span></code>
 and <code class="inline"><span class="i">clock_getres</span><span class="s">(</span><span class="s">)</span></code>
 has been added</p>
</li>
<li>
<p>Return <code class="inline"><a class="l_k" href="functions/undef.html">undef</a></code> or an empty list if the C <code class="inline"><span class="i">gettimeofday</span><span class="s">(</span><span class="s">)</span></code>
 function fails</p>
</li>
<li>
<p>Improved <code class="inline"><span class="w">nanosleep</span></code>
 detection</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Unicode::Collate</span></code>
 upgraded to version 0.52</p>
<ul>
<li>
<p>Now implements UCA Revision 14 (based on Unicode 4.1.0).</p>
</li>
<li>
<p><code class="inline"><span class="w">Unicode::Collate</span>-</code>
new&gt; method no longer overwrites user's <code class="inline"><span class="i">$_</span></code>
</p>
</li>
<li>
<p>Enhanced documentation</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Unicode::UCD</span></code>
 upgraded to version 0.24</p>
<ul>
<li>
<p>Documentation typos fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">User::grent</span></code>
 upgraded to version 1.01</p>
<ul>
<li>
<p>Documentation typo fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">utf8</span></code>
 upgraded to version 1.06</p>
<ul>
<li>
<p>Documentation typos fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">vmsish</span></code>
 upgraded to version 1.02</p>
<ul>
<li>
<p>Documentation typos fixed</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">warnings</span></code>
 upgraded to version 1.05</p>
<ul>
<li>
<p>Gentler messing with <code class="inline"><span class="w">Carp::</span></code>
 internals</p>
</li>
<li>
<p>Internal cleanup</p>
</li>
<li>
<p>Documentation update</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">Win32</span></code>
 upgraded to version 0.2601</p>
<ul>
<li>
<p>Provides Windows Vista support to <code class="inline"><span class="w">Win32::GetOSName</span></code>
</p>
</li>
<li>
<p>Documentation enhancements</p>
</li>
</ul>
</li>
<li>
<p><code class="inline"><span class="w">XS::Typemap</span></code>
 upgraded to version 0.02</p>
<ul>
<li>
<p>Internal cleanup</p>
</li>
</ul>
</li>
</ul>
<a name="Utility-Changes"></a><h1>Utility Changes</h1>
<a name="h2xs-enhancements"></a><h2><code class="inline"><span class="w">h2xs</span></code>
 enhancements</h2>
<p><code class="inline"><span class="w">h2xs</span></code>
 implements new option <code class="inline">--<a class="l_k" href="functions/use.html">use</a>-<span class="w">xsloader</span></code>
 to force use of
<code class="inline"><span class="w">XSLoader</span></code>
 even in backwards compatible modules.</p>
<p>The handling of authors' names that had apostrophes has been fixed.</p>
<p>Any enums with negative values are now skipped.</p>
<a name="perlivp-enhancements"></a><h2><code class="inline"><span class="w">perlivp</span></code>
 enhancements</h2>
<p><code class="inline"><span class="w">perlivp</span></code>
 implements new option <code class="inline">-<span class="w">a</span></code>
 and will not check for <i>*.ph</i>
files by default any more.  Use the <code class="inline">-<span class="w">a</span></code>
 option to run <i>all</i> tests.</p>
<a name="New-Documentation"></a><h1>New Documentation</h1>
<p>The <a href="perlglossary.html">perlglossary</a> manpage is a glossary of terms used in the Perl
documentation, technical and otherwise, kindly provided by O'Reilly Media,
inc.</p>
<a name="Performance-Enhancements"></a><h1>Performance Enhancements</h1>
<ul>
<li>
<p>Weak reference creation is now <i>O(1)</i> rather than <i>O(n)</i>, courtesy of
Nicholas Clark. Weak reference deletion remains <i>O(n)</i>, but if deletion only
happens at program exit, it may be skipped completely.</p>
</li>
<li>
<p>Salvador Fandi&#xf1;o provided improvements to reduce the memory usage of <code class="inline"><a class="l_k" href="functions/sort.html">sort</a></code>
and to speed up some cases.</p>
</li>
<li>
<p>Jarkko Hietaniemi and Andy Lester worked to mark as much data as possible in
the C source files as <code class="inline"><span class="w">static</span></code>
, to increase the proportion of the executable
file that the operating system can share between process, and thus reduce
real memory usage on multi-user systems.</p>
</li>
</ul>
<a name="Installation-and-Configuration-Improvements"></a><h1>Installation and Configuration Improvements</h1>
<p>Parallel makes should work properly now, although there may still be problems
if <code class="inline"><span class="w">make</span> <span class="w">test</span></code>
 is instructed to run in parallel.</p>
<p>Building with Borland's compilers on Win32 should work more smoothly. In
particular Steve Hay has worked to side step many warnings emitted by their
compilers and at least one C compiler internal error.</p>
<p><code class="inline"><span class="w">Configure</span></code>
 will now detect <code class="inline"><span class="w">clearenv</span></code>
 and <code class="inline"><span class="w">unsetenv</span></code>
, thanks to a patch
from Alan Burlison. It will also probe for <code class="inline"><span class="w">futimes</span></code>
 and whether <code class="inline"><a class="l_k" href="functions/sprintf.html">sprintf</a></code>
correctly returns the length of the formatted string, which will both be used
in perl 5.8.9.</p>
<p>There are improved hints for next-3.0, vmesa, IX, Darwin, Solaris, Linux,
DEC/OSF, HP-UX and MPE/iX</p>
<p>Perl extensions on Windows now can be statically built into the Perl DLL,
thanks to a work by Vadim Konovalov. (This improvement was actually in 5.8.7,
but was accidentally omitted from <a href="perl587delta.html">perl587delta</a>).</p>
<a name="Selected-Bug-Fixes"></a><h1>Selected Bug Fixes</h1>
<a name="no-warnings-'category'-works-correctly-with--w"></a><h2>no warnings 'category' works correctly with -w</h2>
<p>Previously when running with warnings enabled globally via <code class="inline">-w</code>
, selective
disabling of specific warning categories would actually turn off all warnings.
This is now fixed; now <code class="inline"><a class="l_k" href="functions/no.html">no</a> <span class="w">warnings</span> <span class="q">&#39;io&#39;</span><span class="sc">;</span></code>
 will only turn off warnings in the
<code class="inline"><span class="w">io</span></code>
 class. Previously it would erroneously turn off all warnings.</p>
<p>This bug fix may cause some programs to start correctly issuing warnings.</p>
<a name="Remove-over-optimisation"></a><h2>Remove over-optimisation</h2>
<p>Perl 5.8.4 introduced a change so that assignments of <code class="inline"><a class="l_k" href="functions/undef.html">undef</a></code> to a
scalar, or of an empty list to an array or a hash, were optimised away. As
this could cause problems when <code class="inline"><a class="l_k" href="functions/goto.html">goto</a></code> jumps were involved, this change
has been backed out.</p>
<a name="sprintf()-fixes"></a><h2>sprintf() fixes</h2>
<p>Using the sprintf() function with some formats could lead to a buffer
overflow in some specific cases. This has been fixed, along with several
other bugs, notably in bounds checking.</p>
<p>In related fixes, it was possible for badly written code that did not follow
the documentation of <code class="inline"><span class="w">Sys::Syslog</span></code>
 to have formatting vulnerabilities.
<code class="inline"><span class="w">Sys::Syslog</span></code>
 has been changed to protect people from poor quality third
party code.</p>
<a name="Debugger-and-Unicode-slowdown"></a><h2>Debugger and Unicode slowdown</h2>
<p>It had been reported that running under perl's debugger when processing
Unicode data could cause unexpectedly large slowdowns. The most likely cause
of this was identified and fixed by Nicholas Clark.</p>
<a name="Smaller-fixes"></a><h2>Smaller fixes</h2>
<ul>
<li>
<p><code class="inline"><span class="w">FindBin</span></code>
 now works better with directories where access rights are more
restrictive than usual.</p>
</li>
<li>
<p>Several memory leaks in ithreads were closed. An improved implementation of
<code class="inline"><span class="w">threads::shared</span></code>
 is available on CPAN - this will be merged into 5.8.9 if
it proves stable.</p>
</li>
<li>
<p>Trailing spaces are now trimmed from <code class="inline"><span class="i">$!</span></code>
 and <code class="inline"><span class="i">$^E</span></code>
.</p>
</li>
<li>
<p>Operations that require perl to read a process's list of groups, such as reads
of <code class="inline"><span class="i">$(</span></code>
 and <code class="inline"><span class="i">$)</span></code>
, now dynamically allocate memory rather than using a
fixed sized array. The fixed size array could cause C stack exhaustion on
systems configured to use large numbers of groups.</p>
</li>
<li>
<p><code class="inline"><span class="w">PerlIO::scalar</span></code>
 now works better with non-default <code class="inline"><span class="i">$/</span></code>
 settings.</p>
</li>
<li>
<p>You can now use the <code class="inline"><span class="w">x</span></code>
 operator to repeat a <code class="inline"><a class="l_k" href="functions/qw.html">qw//</a></code> list. This used
to raise a syntax error.</p>
</li>
<li>
<p>The debugger now traces correctly execution in eval("")uated code that
contains #line directives.</p>
</li>
<li>
<p>The value of the <code class="inline"><a class="l_k" href="functions/open.html">open</a></code> pragma is no longer ignored for three-argument
opens.</p>
</li>
<li>
<p>The optimisation of <code class="inline">for <span class="s">(</span><a class="l_k" href="functions/reverse.html">reverse</a> <span class="i">@a</span><span class="s">)</span></code>
 introduced in perl 5.8.6 could
misbehave when the array had undefined elements and was used in LVALUE
context. Dave Mitchell provided a fix.</p>
</li>
<li>
<p>Some case insensitive matches between UTF-8 encoded data and 8 bit regexps,
and vice versa, could give malformed character warnings. These have been
fixed by Dave Mitchell and Yves Orton.</p>
</li>
<li>
<p><code class="inline"><a class="l_k" href="functions/lcfirst.html">lcfirst</a></code> and <code class="inline"><a class="l_k" href="functions/ucfirst.html">ucfirst</a></code> could corrupt the string for certain cases where
the length UTF-8 encoding of the string in lower case, upper case or title
case differed. This was fixed by Nicholas Clark.</p>
</li>
<li>
<p>Perl will now use the C library calls <code class="inline"><span class="w">unsetenv</span></code>
 and <code class="inline"><span class="w">clearenv</span></code>
 if present
to delete keys from <code class="inline"><span class="i">%ENV</span></code>
 and delete <code class="inline"><span class="i">%ENV</span></code>
 entirely, thanks to a patch
from Alan Burlison.</p>
</li>
</ul>
<a name="New-or-Changed-Diagnostics"></a><h1>New or Changed Diagnostics</h1>
<a name="Attempt-to-set-length-of-freed-array"></a><h2>Attempt to set length of freed array</h2>
<p>This is a new warning, produced in situations such as this:</p>
<pre class="verbatim"><ol><li>    <span class="i">$r</span> = <a class="l_k" href="functions/do.html">do</a> <span class="s">{</span><a class="l_k" href="functions/my.html">my</a> <span class="i">@a</span><span class="sc">;</span> \<span class="i">$#a</span><span class="s">}</span><span class="sc">;</span></li><li>    <span class="i">$$r</span> = <span class="n">503</span><span class="sc">;</span></li></ol></pre><a name="Non-string-passed-as-bitmask"></a><h2>Non-string passed as bitmask</h2>
<p>This is a new warning, produced when number has been passed as a argument to
select(), instead of a bitmask.</p>
<pre class="verbatim"><ol><li>    <span class="c"># Wrong, will now warn</span></li><li>    <span class="i">$rin</span> = <a class="l_k" href="functions/fileno.html">fileno</a><span class="s">(</span><span class="w">STDIN</span><span class="s">)</span><span class="sc">;</span></li><li>    <span class="s">(</span><span class="i">$nfound</span><span class="cm">,</span><span class="i">$timeleft</span><span class="s">)</span> = <a class="l_k" href="functions/select.html">select</a><span class="s">(</span><span class="i">$rout</span>=<span class="i">$rin</span><span class="cm">,</span> <a class="l_k" href="functions/undef.html">undef</a><span class="cm">,</span> <a class="l_k" href="functions/undef.html">undef</a><span class="cm">,</span> <span class="i">$timeout</span><span class="s">)</span><span class="sc">;</span></li><li>    </li><li>    <span class="c"># Should be</span></li><li>    <span class="i">$rin</span> = <span class="q">&#39;&#39;</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/vec.html">vec</a><span class="s">(</span><span class="i">$rin</span><span class="cm">,</span><a class="l_k" href="functions/fileno.html">fileno</a><span class="s">(</span><span class="w">STDIN</span><span class="s">)</span><span class="cm">,</span><span class="n">1</span><span class="s">)</span> = <span class="n">1</span><span class="sc">;</span></li><li>    <span class="s">(</span><span class="i">$nfound</span><span class="cm">,</span><span class="i">$timeleft</span><span class="s">)</span> = <a class="l_k" href="functions/select.html">select</a><span class="s">(</span><span class="i">$rout</span>=<span class="i">$rin</span><span class="cm">,</span> <a class="l_k" href="functions/undef.html">undef</a><span class="cm">,</span> <a class="l_k" href="functions/undef.html">undef</a><span class="cm">,</span> <span class="i">$timeout</span><span class="s">)</span><span class="sc">;</span></li></ol></pre><a name="Search-pattern-not-terminated-or-ternary-operator-parsed-as-search-pattern"></a><h2>Search pattern not terminated or ternary operator parsed as search pattern</h2>
<p>This syntax error indicates that the lexer couldn't find the final
delimiter of a <code class="inline"><span class="q">?PATTERN?</span></code>
 construct. Mentioning the ternary operator in
this error message makes it easier to diagnose syntax errors.</p>
<a name="Changed-Internals"></a><h1>Changed Internals</h1>
<p>There has been a fair amount of refactoring of the <code class="inline"><span class="w">C</span></code>
 source code, partly to
make it tidier and more maintainable. The resulting object code and the
<code class="inline"><span class="w">perl</span></code>
 binary may well be smaller than 5.8.7, in particular due to a change
contributed by Dave Mitchell which reworked the warnings code to be
significantly smaller. Apart from being smaller and possibly faster, there
should be no user-detectable changes.</p>
<p>Andy Lester supplied many improvements to determine which function
parameters and local variables could actually be declared <code class="inline"><span class="w">const</span></code>
 to the C
compiler. Steve Peters provided new <code class="inline"><span class="i">*_set</span></code>
 macros and reworked the core to
use these rather than assigning to macros in LVALUE context.</p>
<p>Dave Mitchell improved the lexer debugging output under <code class="inline">-<span class="w">DT</span></code>
</p>
<p>Nicholas Clark changed the string buffer allocation so that it is now rounded
up to the next multiple of 4 (or 8 on platforms with 64 bit pointers). This
should reduce the number of calls to <code class="inline"><span class="w">realloc</span></code>
 without actually using any
extra memory.</p>
<p>The <code class="inline"><span class="w">HV</span></code>
's array of <code class="inline"><span class="w">HE</span>*</code>
s is now allocated at the correct (minimal) size,
thanks to another change by Nicholas Clark. Compile with
<code class="inline">-<span class="w">DPERL_USE_LARGE_HV_ALLOC</span></code>
 to use the old, sloppier, default.</p>
<p>For XS or embedding debugging purposes, if perl is compiled with
<code class="inline">-<span class="w">DDEBUG_LEAKING_SCALARS_FORK_DUMP</span></code>
 in addition to
<code class="inline">-<span class="w">DDEBUG_LEAKING_SCALARS</span></code>
 then a child process is <code class="inline"><a class="l_k" href="functions/fork.html">fork</a></code>ed just before
global destruction, which is used to display the values of any scalars
found to have leaked at the end of global destruction. Without this, the
scalars have already been freed sufficiently at the point of detection that
it is impossible to produce any meaningful dump of their contents.  This
feature was implemented by the indefatigable Nicholas Clark, based on an idea
by Mike Giroux.</p>
<a name="Platform-Specific-Problems"></a><h1>Platform Specific Problems</h1>
<p>The optimiser on HP-UX 11.23 (Itanium 2) is currently partly disabled (scaled
down to +O1) when using HP C-ANSI-C; the cause of problems at higher
optimisation levels is still unclear.</p>
<p>There are a handful of remaining test failures on VMS, mostly due to
test fixes and minor module tweaks with too many dependencies to
integrate into this release from the development stream, where they have
all been corrected.  The following is a list of expected failures with
the patch number of the fix where that is known:</p>
<pre class="verbatim"><ol><li>    ext/Devel/PPPort/t/ppphtest.t  #26913</li><li>    ext/List/Util/t/p_tainted.t    #26912</li><li>    lib/ExtUtils/t/PL_FILES.t      #26813</li><li>    lib/ExtUtils/t/basic.t         #26813</li><li>    t/io/fs.t</li><li>    t/op/cmp.t</li></ol></pre><a name="Reporting-Bugs"></a><h1>Reporting Bugs</h1>
<p>If you find what you think is a bug, you might check the articles
recently posted to the comp.lang.perl.misc newsgroup and the perl
bug database at <a href="http://bugs.perl.org">http://bugs.perl.org</a>.  There may also be
information at <a href="http://www.perl.org">http://www.perl.org</a>, the Perl Home Page.</p>
<p>If you believe you have an unreported bug, please run the <b>perlbug</b>
program included with your release.  Be sure to trim your bug down
to a tiny but sufficient test case.  Your bug report, along with the
output of <code class="inline"><span class="w">perl</span> -<span class="w">V</span></code>
, will be sent off to perlbug@perl.org to be
analysed by the Perl porting team.  You can browse and search
the Perl 5 bugs at <a href="http://bugs.perl.org/">http://bugs.perl.org/</a></p>
<a name="SEE-ALSO"></a><h1>SEE ALSO</h1>
<p>The <i>Changes</i> file for exhaustive details on what changed.</p>
<p>The <i>INSTALL</i> file for how to build Perl.</p>
<p>The <i>README</i> file for general stuff.</p>
<p>The <i>Artistic</i> and <i>Copying</i> files for copyright information.</p>




  <div id="page_index" class="hud_container">
    <div id="page_index_header" class="hud_header">
      <div id="page_index_close" class="hud_close"><a href="#" onClick="pageIndex.hide();return false;"></a></div>
      <div id="page_index_title" class="hud_title"><span class="hud_span_top">Page index</span></div>
      <div id="page_index_topright" class="hud_topright"></div>
    </div>
    <div id="page_index_content" class="hud_content">
      <ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#Incompatible-Changes">Incompatible Changes</a><li><a href="#Core-Enhancements">Core Enhancements</a><li><a href="#Modules-and-Pragmata">Modules and Pragmata</a><li><a href="#Utility-Changes">Utility Changes</a><ul><li><a href="#h2xs-enhancements">h2xs enhancements</a><li><a href="#perlivp-enhancements">perlivp enhancements</a></ul><li><a href="#New-Documentation">New Documentation</a><li><a href="#Performance-Enhancements">Performance Enhancements</a><li><a href="#Installation-and-Configuration-Improvements">Installation and Configuration Improvements</a><li><a href="#Selected-Bug-Fixes">Selected Bug Fixes</a><ul><li><a href="#no-warnings-'category'-works-correctly-with--w">no warnings 'category' works correctly with -w</a><li><a href="#Remove-over-optimisation">Remove over-optimisation</a><li><a href="#sprintf()-fixes">sprintf() fixes</a><li><a href="#Debugger-and-Unicode-slowdown">Debugger and Unicode slowdown</a><li><a href="#Smaller-fixes">Smaller fixes</a></ul><li><a href="#New-or-Changed-Diagnostics">New or Changed Diagnostics</a><ul><li><a href="#Attempt-to-set-length-of-freed-array">Attempt to set length of freed array</a><li><a href="#Non-string-passed-as-bitmask">Non-string passed as bitmask</a><li><a href="#Search-pattern-not-terminated-or-ternary-operator-parsed-as-search-pattern">Search pattern not terminated or ternary operator parsed as search pattern</a></ul><li><a href="#Changed-Internals">Changed Internals</a><li><a href="#Platform-Specific-Problems">Platform Specific Problems</a><li><a href="#Reporting-Bugs">Reporting Bugs</a><li><a href="#SEE-ALSO">SEE ALSO</a></ul>
    </div>
    <div id="page_index_footer" class="hud_footer">
      <div id="page_index_bottomleft" class="hud_bottomleft"></div>
      <div id="page_index_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
      <div id="page_index_resize" class="hud_resize"></div>
    </div>
  </div>


	    &nbsp;
          </div>
          <div id="content_footer">
          </div>
        </div>
        <div class="clear"></div>
      </div>
      
    <div id="footer">
      <div id="footer_content">
        <div id="footer_strapline">
          perldoc.perl.org - Official documentation for the Perl programming language
        </div>
        <div id="footer_links">
          <div id="address">
            <p class="name">Contact details</p>
            <p class="address">
	      Site maintained by <a href="mailto:jj@jonallen.info">Jon Allen (JJ)</a><br>
	    </p>
            <p class="contact">
              Documentation maintained by the <a href="http://lists.cpan.org/showlist.cgi?name=perl5-porters">Perl 5 Porters</a>
            </p>
          </div>
          <ul class="f1">
            <li>Manual
              <ul class="f2">
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">Changes</a>
              </ul>
            <li>Reference
              <ul class="f2">
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Variables</a>
              </ul>
            <li>Modules
              <ul class="f2">
                <li><a href="index-modules-A.html">Modules</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
              </ul>
            <li>Misc
              <ul class="f2">
                <li><a href="index-licence.html">License</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platforms</a>
              </ul>          </ul>
          <div class="clear"></div>
        </div>
      </div>
      <div id="footer_end">
      </div>
    </div>
      
    </div>
      <script language="JavaScript" type="text/javascript" src="static/exploreperl.js"></script>
      <script language="JavaScript" src="static/combined-20100403.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
  perldoc.setPath(0);
  perldoc.pageName    = 'perl588delta';
  perldoc.pageAddress = 'perl588delta.html';
  perldoc.contentPage = 1;
  explorePerl.render();
  explorePerl.addEvents('explore_anchor');
</script>
    
  </body>
</html>