summaryrefslogtreecommitdiff
path: root/Changes
blob: 5f801821cdadc2c6d712728e07c8c393254b86fc (plain)
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
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
Please note: This file provides a complete, temporally ordered log of
changes that went into every version of Perl.  If you'd like more
detailed information, please consult the comments in the individual
patches posted to the perl5-porters mailing list.  Patches for each
individual change may also be obtained through ftp and rsync--see
pod/perlhack.pod for the details.

For information on what's new in this release, see pod/perldelta.pod.

[The "CAST AND CREW" list has been moved to AUTHORS.]

NOTE: Each change entry shows the change number; who checked it into the
repository; when; description of the change; which branch the change
happened in; and the affected files.  The file lists have a short symbolic
indicator:

    	    !	    modified
    	    +	    added
    	    -	    deleted
    	    +>	    branched (from elsewhere)
    	    !>	    merged changes (from elsewhere)

The Message-Ids in the change entries refer to the email messages sent
to the perl5-porters mailing list.  You can retrieve the messages for
example from http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/

--------------
Version v5.9.X		Development release working toward v5.10
--------------
____________________________________________________________________________
[ 17881] By: hv                                    on 2002/09/09  09:54:55
        Log: Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
             From: "Allen Smith" <easmith@beatrice.rutgers.edu>
             Date: Mon, 9 Sep 2002 01:48:08 -0400
             Message-Id: <10209090148.ZM1555835@puck2.rutgers.edu>
     Branch: perl
	   ! perl.h sv.c
____________________________________________________________________________
[ 17880] By: hv                                    on 2002/09/09  09:33:55
        Log: integrate Math::BigInt-1.63
             Subject: Re: [perl #16997] Math::BigFloat hang on bsqrt [ANNOUNCE v1.63
             From: Tels <perl_dummy@bloodgate.com>
             Date: Mon, 09 Sep 2002 00:23:01 +0200 (CEST)
             Message-Id: <200209082022.g88KMGY20194@crypt.org>
     Branch: perl
	   ! lib/Math/BigFloat.pm lib/Math/BigInt.pm
	   ! lib/Math/BigInt/t/bare_mif.t lib/Math/BigInt/t/constant.t
	   ! lib/Math/BigInt/t/mbimbf.inc lib/Math/BigInt/t/mbimbf.t
	   ! lib/Math/BigInt/t/sub_mif.t
____________________________________________________________________________
[ 17879] By: hv                                    on 2002/09/09  09:23:53
        Log: Subject: [PATCH] Configure locincpth vs Jaguar gcc 3
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Mon, 9 Sep 2002 00:07:46 +0300
             Message-ID: <20020908210746.GB4136@lyta.hut.fi>
     Branch: perl
	   ! Configure
____________________________________________________________________________
[ 17878] By: hv                                    on 2002/09/09  09:11:57
        Log: small grammar fix in Benchmark docs
     Branch: perl
	   ! lib/Benchmark.pm
____________________________________________________________________________
[ 17877] By: hv                                    on 2002/09/09  09:09:30
        Log: Subject: [PATCH] configpm
             From: Abe Timmerman <abe@ztreet.demon.nl>
             Date: Sun, 8 Sep 2002 17:21:19 +0200
             Message-Id: <200209081721.19233.abe@ztreet.demon.nl>
     Branch: perl
	   ! configpm
____________________________________________________________________________
[ 17876] By: hv                                    on 2002/09/09  08:48:35
        Log: Subject: Re: Smoke 17849 MSWin32 (w2k/GCC)
             From: Abe Timmerman <abe@ztreet.demon.nl>
             Date: Mon, 9 Sep 2002 01:32:19 +0200
             Message-Id: <200209090132.19891.abe@ztreet.demon.nl>
     Branch: perl
	   ! makedef.pl
____________________________________________________________________________
[ 17875] By: rgs                                   on 2002/09/08  18:55:01
        Log: Subject: [PATCH] cleanup temp files (was Re: Smoke 17805 irix 6.5 6.5.16m IP32 r5000 /usr/share/src/cpan-current-benedick)
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sun, 8 Sep 2002 15:46:44 +0100
             Message-ID: <20020908144643.GC286@Bagpuss.unfortu.net>
             
             Plus two other similar tweaks
     Branch: perl
	   ! ext/SDBM_File/sdbm.t
____________________________________________________________________________
[ 17874] By: hv                                    on 2002/09/08  17:10:38
        Log: Subject: Re: [PATCH: perl #17849] (corrected) Long double bugs - sprintf.t _and_ num.t
             From: "Allen Smith" <easmith@beatrice.rutgers.edu>
             Date: Sat, 7 Sep 2002 05:25:45 -0400
             Message-Id: <10209070525.ZM1584639@puck2.rutgers.edu>
     Branch: perl
	   ! hints/irix_6.sh numeric.c perl.h sv.c t/base/num.t
	   ! t/op/sprintf.t
____________________________________________________________________________
[ 17873] By: hv                                    on 2002/09/08  16:48:54
        Log: Subject: [PATCH] COW for ithreads (was Re: what copies scalars in ithreads?)
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sat, 7 Sep 2002 00:20:53 +0100
             Message-ID: <20020906232052.GB901@Bagpuss.unfortu.net>
     Branch: perl
	   ! op.c sv.c
____________________________________________________________________________
[ 17872] By: hv                                    on 2002/09/08  16:35:46
        Log: temporarily skip failing Storable tests caused by #17869
     Branch: perl
	   ! ext/Storable/t/code.t
____________________________________________________________________________
[ 17871] By: hv                                    on 2002/09/08  16:23:49
        Log: Subject: [PATCH] tiddly tidy up for util.c
             From: Nicholas Clark <nick@unfortu.net>
             Date: Fri, 6 Sep 2002 23:00:14 +0100
             Message-ID: <20020906220013.GD428@Bagpuss.unfortu.net>
     Branch: perl
	   ! util.c
____________________________________________________________________________
[ 17870] By: hv                                    on 2002/09/08  16:21:23
        Log: regularise whitespace and formatting in util.c
     Branch: perl
	   ! util.c
____________________________________________________________________________
[ 17869] By: hv                                    on 2002/09/08  15:46:08
        Log: Subject: [perl #17061] no strict 'garbage'
             From: Elizabeth Mattijsen (via RT) <perlbug@perl.org>
             Date: 6 Sep 2002 19:31:02 -0000
             Message-Id: <rt-17061-36808.6.19994322284541@bugs6.perl.org>
             Date: Sat, 07 Sep 2002 13:40:22 +0200
             Message-Id: <4.2.0.58.20020907133846.02476d40@mickey.dijkmat.nl>
     Branch: perl
	   ! lib/strict.pm lib/strict.t
____________________________________________________________________________
[ 17868] By: hv                                    on 2002/09/08  15:24:08
        Log: small fix to perl58delta for MIME::QuotedPrint, from Jarkko
     Branch: perl
	   ! pod/perl58delta.pod
____________________________________________________________________________
[ 17867] By: hv                                    on 2002/09/08  15:10:46
        Log: Subject: [PATCH] allow using hires time() in Benchmark
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Fri, 6 Sep 2002 00:38:11 +0300
             Message-ID: <20020905213811.GA23771@lyta.hut.fi>
     Branch: perl
	   ! lib/Benchmark.pm
____________________________________________________________________________
[ 17866] By: hv                                    on 2002/09/08  15:06:05
        Log: Subject: [PATCH] OS/400 PASE symbol scan tweak
             From: Jarkko Hietaniemi <jhi@kosh.hut.fi>
             Date: Thu, 5 Sep 2002 21:46:20 +0300 (EET DST)
             Message-Id: <200209051846.g85IkKOk013697@kosh.hut.fi>
     Branch: perl
	   ! Configure
____________________________________________________________________________
[ 17865] By: hv                                    on 2002/09/08  15:03:23
        Log: Subject: Unicode::Collate 0.23 Released
             From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
             Date: Thu, 05 Sep 2002 23:28:32 +0900
             Message-Id: <20020905232316.8151.BQW10602@nifty.com>
     Branch: perl
	   + lib/Unicode/Collate/t/index.t
	   ! MANIFEST lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
	   ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
____________________________________________________________________________
[ 17864] By: hv                                    on 2002/09/08  14:55:31
        Log: Subject: sv_2pv_flags and ROK and UTF8 flags
             From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
             Date: Wed, 04 Sep 2002 21:09:01 -0700
             Message-ID: <djtd9gzkgyLd092yn@efn.org>
             Date: Fri, 06 Sep 2002 09:23:03 -0700
             Message-ID: <nZNe9gzkgKdH092yn@efn.org>
     Branch: perl
	   ! lib/overload.t sv.c sv.h t/op/pat.t
____________________________________________________________________________
[ 17863] By: hv                                    on 2002/09/08  14:11:54
        Log: setting PERL_CORE as in #17861 violates assumptions made by taint tests
     Branch: perl
	   ! t/op/taint.t
____________________________________________________________________________
[ 17862] By: hv                                    on 2002/09/08  14:01:07
        Log: Subject: [PATCH t/TestInit.pm] Set env PERL_CORE
             From: Michael G Schwern <schwern@pobox.com>
             Date: Wed, 4 Sep 2002 11:38:01 -0700
             Message-ID: <20020904183801.GF8367@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! t/TestInit.pm
____________________________________________________________________________
[ 17861] By: hv                                    on 2002/09/08  13:58:10
        Log: Subject: Re: [PATCH t/test.pl] Let is/isnt() handle undef without warnings
             From: Michael G Schwern <schwern@pobox.com>
             Date: Fri, 6 Sep 2002 14:03:16 -0700
             Message-ID: <20020906210315.GC808@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! t/test.pl
____________________________________________________________________________
[ 17860] By: hv                                    on 2002/09/08  13:48:49
        Log: #17859 misuses s/// return values
     Branch: perl
	   ! configpm
____________________________________________________________________________
[ 17859] By: hv                                    on 2002/09/08  13:17:46
        Log: Subject: Re: [PATCH] Attempt at speeding up Config.pm.  Didn't work.
             From: Nicholas Clark <nick@unfortu.net>
             Date: Mon, 2 Sep 2002 23:22:32 +0100
             Message-ID: <20020902222231.GG284@Bagpuss.unfortu.net>
     Branch: perl
	   ! configpm
____________________________________________________________________________
[ 17858] By: pudge                                 on 2002/09/08  04:47:02
        Log: Save script context in compiled script
             From Bart Lateur
     Branch: maint-5.6/macperl
	   ! macos/lib/Mac/OSA/Simple.pm
____________________________________________________________________________
[ 17857] By: pudge                                 on 2002/09/08  04:46:31
        Log: Add Mac OS X Note
     Branch: maint-5.6/macperl
	   ! macos/lib/Mac/Glue.pm
____________________________________________________________________________
[ 17856] By: pudge                                 on 2002/09/08  04:46:03
        Log: Remove workaround for fixed GUSI bug #553817
     Branch: maint-5.6/macperl
	   ! macos/MacPerlTests.cmd
____________________________________________________________________________
[ 17855] By: pudge                                 on 2002/09/08  04:36:08
        Log: Add ChooseFSObject/GetFolder
             From Thomas Wegner
     Branch: maint-5.6/macperl
	   + macos/ext/Mac/StandardFile/ChooseFSObject.c
	   + macos/ext/Mac/StandardFile/ChooseFSObject.h
	   + macos/ext/Mac/StandardFile/t/ChooseFSObject.t
	   ! macos/Perl.r macos/ext/Mac/StandardFile/Makefile.PL
	   ! macos/ext/Mac/StandardFile/StandardFile.pm
	   ! macos/ext/Mac/StandardFile/StandardFile.xs
	   ! macos/macperl/MacPerl.r
____________________________________________________________________________
[ 17854] By: pudge                                 on 2002/09/08  04:35:08
        Log: Fix URL encoding for MacPerl Help/Shuck
             Bug exposed in Mac OS X 10.2; MacPerl Bug #598449
     Branch: maint-5.6/macperl
	   ! macos/macperl/MPHelp.c
____________________________________________________________________________
[ 17853] By: pudge                                 on 2002/09/08  04:33:43
        Log: TextEdit example show text extraction
     Branch: maint-5.6/macperl
	   ! macos/ext/Mac/TextEdit/t/SimpleText.t
____________________________________________________________________________
[ 17852] By: pudge                                 on 2002/09/08  04:32:53
        Log: File::Copy should only warn if there's something to warn about
     Branch: maint-5.6/macperl
	   ! lib/File/Copy.pm
____________________________________________________________________________
[ 17851] By: nick                                  on 2002/09/07  10:18:20
        Log: Integrate mainline
     Branch: perlio
	  +> README.os400 ext/threads/shared/t/disabled.t hints/os400.sh
	  !> (integrate 69 files)
____________________________________________________________________________
[ 17850] By: ams                                   on 2002/09/06  03:31:32
        Log: Subject: [PATCH] (mostly (Unicode)) pod nits
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Fri, 6 Sep 2002 06:01:57 +0300
             Message-Id: <20020906030157.GA28252@lyta.hut.fi>
     Branch: perl
	   ! pod/perl.pod pod/perlunicode.pod pod/perluniintro.pod
____________________________________________________________________________
[ 17849] By: gsar                                  on 2002/09/05  06:28:36
        Log: document setting the email address
     Branch: perl
	   ! Porting/repository.pod
____________________________________________________________________________
[ 17848] By: hv                                    on 2002/09/04  23:12:15
        Log: AUTHORS: preferred address for Allen Smith
     Branch: perl
	   ! AUTHORS
____________________________________________________________________________
[ 17847] By: hv                                    on 2002/09/04  23:10:37
        Log: copy on write: fixes and debugging
             Subject: what copies scalars in ithreads?
             From: Nicholas Clark <nick@unfortu.net>
             Date: Wed, 4 Sep 2002 21:52:47 +0100
             Message-ID: <20020904205247.GA280@Bagpuss.unfortu.net>
     Branch: perl
	   ! sv.c
____________________________________________________________________________
[ 17846] By: hv                                    on 2002/09/04  23:02:43
        Log: Subject: Re: [PATCH] A variety of README nitpicks.
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Wed, 04 Sep 2002 09:10:05 +0200
             Message-Id: <20020904090853.F13D.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! README.hpux
____________________________________________________________________________
[ 17845] By: hv                                    on 2002/09/04  15:06:33
        Log: Avoid 'unportable' warnings for lib/Math/BigInt/t/constant.t
     Branch: perl
	   ! lib/Math/BigInt/t/constant.t
____________________________________________________________________________
[ 17844] By: hv                                    on 2002/09/04  14:32:19
        Log: #17836 (DB_File-1.805) misses a couple of dTHX declarations
     Branch: perl
	   ! ext/DB_File/DB_File.xs
____________________________________________________________________________
[ 17843] By: hv                                    on 2002/09/04  14:09:13
        Log: #17842 was only half the story
             Subject: [PATCH deb.c] Re: HiRes failure is success?
             From: Dave Mitchell <davem@fdgroup.com>
             Date: Wed, 4 Sep 2002 16:11:15 +0100
             Message-ID: <20020904161115.E27603@fdgroup.com>
     Branch: perl
	   ! deb.c
____________________________________________________________________________
[ 17842] By: hv                                    on 2002/09/04  14:04:40
        Log: printf argument mismatch in Perl_deb_stack_all() from change #17718
     Branch: perl
	   ! deb.c
____________________________________________________________________________
[ 17841] By: hv                                    on 2002/09/04  13:57:27
        Log: Subject: [PATCH] op/getpid.t failure
             From: Michael G Schwern <schwern@pobox.com>
             Date: Tue, 3 Sep 2002 17:48:24 -0700
             Message-ID: <20020904004824.GG2701@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! t/op/getpid.t
____________________________________________________________________________
[ 17840] By: hv                                    on 2002/09/04  13:55:20
        Log: Subject: [PATCH] File::Basename doesn't lazy load Carp right.
             and Subject: [PATCH] More modules that don't lazy load Carp right.
             From: Michael G Schwern <schwern@pobox.com>
             Date: Tue, 3 Sep 2002 17:21:57 -0700
             Message-ID: <20020904002157.GD2701@ool-18b93024.dyn.optonline.net>
             and Message-ID: <20020904003857.GE2701@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! ext/Encode/Unicode/Unicode.pm
	   ! ext/Encode/lib/Encode/Encoding.pm ext/Sys/Hostname/Hostname.pm
	   ! lib/File/Basename.pm
____________________________________________________________________________
[ 17839] By: hv                                    on 2002/09/04  13:47:12
        Log: Subject: Re: [PATCH 5.8.0] add accessors for POSIX::SigAction
             From: "Brendan O'Dea" <bod@debian.org>
             Date: Wed, 4 Sep 2002 02:36:10 +1000
             Message-ID: <20020903163610.GA14595@londo.odea.dropbear.id.au>
     Branch: perl
	   ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod
____________________________________________________________________________
[ 17838] By: hv                                    on 2002/09/04  13:41:27
        Log: Subject: [PATCHes] Still no working Berkeley DB in OS X 10.2
             From: =?ISO-8859-1?Q?Kay_R=F6pke?= <kay@dolphin-services.de>
             Date: Tue, 3 Sep 2002 13:46:18 +0200
             Message-Id: <C287A20E-BF32-11D6-A454-000393414688@dolphin-services.de>
     Branch: perl
	   ! ext/DB_File/t/db-btree.t ext/DB_File/t/db-recno.t
____________________________________________________________________________
[ 17837] By: hv                                    on 2002/09/04  13:38:27
        Log: Subject: [PATCH lib/Config.t] test grandfathered Config variables
             From: Michael G Schwern <schwern@pobox.com>
             Date: Mon, 2 Sep 2002 22:29:07 -0700
             Message-ID: <20020903052907.GR8061@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! lib/Config.t
____________________________________________________________________________
[ 17836] By: hv                                    on 2002/09/04  13:35:36
        Log: Subject: [PATCH] DB_File 1.805
             From: "Paul Marquess" <Paul.Marquess@btinternet.com>
             Date: Mon, 2 Sep 2002 23:56:40 +0100
             Message-ID: <AIEAJICLCBDNAAOLLOKLAEMCFFAA.Paul.Marquess@btinternet.com>
     Branch: perl
	   ! ext/DB_File/Changes ext/DB_File/DB_File.pm
	   ! ext/DB_File/DB_File.xs ext/DB_File/dbinfo
	   ! ext/DB_File/t/db-btree.t ext/DB_File/t/db-hash.t
	   ! ext/DB_File/t/db-recno.t ext/DB_File/typemap
____________________________________________________________________________
[ 17835] By: hv                                    on 2002/09/04  13:23:17
        Log: fix coredump after 64k-deep recursion
             Subject: Re: debugging coredump with -DD
             From: hv@crypt.org
             Date: Tue, 03 Sep 2002 14:34:20 +0100
             Message-Id: <200209031334.g83DYLN09709@crypt.compulink.co.uk>
     Branch: perl
	   ! cop.h t/op/recurse.t
____________________________________________________________________________
[ 17834] By: hv                                    on 2002/09/04  13:08:36
        Log: perldoc: allow arguments for pager
             Subject: perldoc patch for better $Config{pager} support, mandir patch, fhs patch
             From: Chip Turner <cturner@redhat.com>
             Date: 02 Sep 2002 01:17:23 -0400
             Message-ID: <vzku1l9x95o.fsf@minbar.devel.redhat.com>
     Branch: perl
	   ! utils/perldoc.PL
____________________________________________________________________________
[ 17833] By: hv                                    on 2002/09/04  12:55:54
        Log: Subject: [PATCH] use sysconf(_SC_CLK_TCK) for times()
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Sun, 1 Sep 2002 19:23:55 +0300
             Message-ID: <20020901162355.GH12536@lyta.hut.fi>
     Branch: perl
	   ! embedvar.h intrpvar.h perl.c perlapi.h pp_sys.c
____________________________________________________________________________
[ 17832] By: hv                                    on 2002/09/04  12:39:42
        Log: Subject: Re: [PATCH] Correct/completes Overloading in XS mods
             From: John Peacock <jpeacock@rowman.com>
             Date: Sun, 01 Sep 2002 15:00:12 -0400
             Message-ID: <3D7263BC.9020608@rowman.com>
     Branch: perl
	   ! lib/ExtUtils/xsubpp pod/perlxs.pod
____________________________________________________________________________
[ 17831] By: hv                                    on 2002/09/04  11:47:10
        Log: #17827 misses some win32 tweaks
     Branch: perl
	   ! win32/Makefile win32/makefile.mk
____________________________________________________________________________
[ 17830] By: hv                                    on 2002/09/04  11:41:22
        Log: update email address for Paul Marquess
     Branch: perl
	   ! AUTHORS
____________________________________________________________________________
[ 17829] By: hv                                    on 2002/09/04  11:38:39
        Log: Subject: Correction for AUTHORS.html
             From: Sean Davis <dive@ender.com>
             Date: Fri, 30 Aug 2002 03:51:16 -0700
             Message-ID: <20020830035116.A18739@endersgame.net>
     Branch: perl
	   ! AUTHORS
____________________________________________________________________________
[ 17828] By: hv                                    on 2002/09/04  11:31:42
        Log: Subject: [PATCH] File::Spec->catfile not canonicalizing consistently
             From: Michael G Schwern <schwern@pobox.com>
             Date: Fri, 30 Aug 2002 03:40:45 -0700
             Message-ID: <20020830104044.GF859@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! lib/File/Spec/Unix.pm lib/File/Spec/Win32.pm
	   ! lib/File/Spec/t/Spec.t
____________________________________________________________________________
[ 17827] By: hv                                    on 2002/09/04  11:21:57
        Log: Subject: [PATCH] OS/400 PASE port
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Thu, 29 Aug 2002 22:22:51 +0300
             Message-ID: <20020829192251.GA27102@lyta.hut.fi>
     Branch: perl
	   + README.os400 hints/os400.sh
	   ! Configure MANIFEST hints/aix.sh lib/Cwd.pm pod/buildtoc.PL
	   ! pod/perl.pod pod/perlebcdic.pod pod/perlport.pod
____________________________________________________________________________
[ 17826] By: hv                                    on 2002/09/04  11:10:54
        Log: Subject: [PATCH 5.8.0] allow Sys::Syslog test to fail gracefully
             From: "Brendan O'Dea" <bod@debian.org>
             Date: Thu, 29 Aug 2002 22:42:39 +1000
             Message-ID: <20020829124239.GA31934@londo.odea.dropbear.id.au>
     Branch: perl
	   ! ext/Sys/Syslog/syslog.t
____________________________________________________________________________
[ 17825] By: hv                                    on 2002/09/04  10:53:59
        Log: Subject: Re: Possible bug in IPC/Semaphore.pm [PATCH]
             From: "John P. Linderman" <jpl@research.att.com>
             Date: Wed, 28 Aug 2002 08:04:29 -0400 (EDT)
             Message-Id: <200208271900.PAA98096@raptor.research.att.com>
     Branch: perl
	   ! ext/IPC/SysV/Semaphore.pm
____________________________________________________________________________
[ 17824] By: rgs                                   on 2002/09/03  20:02:36
        Log: Subject: [perl #16971] [PATCH] Fix a couple of URLs that changed recently.
             From: Richard Soderberg (via RT) <perlbug@perl.org>
             Date: 3 Sep 2002 18:48:54 -0000
             Message-ID: <rt-16971-36426.15.5276119194873@bugs6.perl.org>
             
             Subject: [PATCH] A variety of README nitpicks.
             From: Richard Soderberg <rs@crystalflame.net>
             Date: Tue, 3 Sep 2002 11:54:39 -0700 (PDT)
             Message-ID: <Pine.LNX.4.33.0209031148280.32671-200000@oregonnet.com>
     Branch: perl
	   ! README.amiga README.dgux README.dos README.epoc README.hpux
	   ! README.mint README.netware README.vmesa
____________________________________________________________________________
[ 17823] By: rgs                                   on 2002/09/03  19:47:05
        Log: Fix bug #16828.
             Add a few tests to ext/B/t/b.t, make it use Test::More.
     Branch: perl
	   ! ext/B/B.xs ext/B/t/b.t
____________________________________________________________________________
[ 17822] By: rgs                                   on 2002/09/02  19:29:52
        Log: Some simple tests for the POSIX::isXXX() functions.
     Branch: perl
	   ! ext/POSIX/t/posix.t
____________________________________________________________________________
[ 17821] By: rgs                                   on 2002/08/30  19:56:53
        Log: Advertise Linux::Pid.
     Branch: perl
	   ! pod/perlfunc.pod pod/perlvar.pod
____________________________________________________________________________
[ 17820] By: gsar                                  on 2002/08/30  19:55:21
        Log: integrate macperl changes#17657,17658,17663,17664
             
             Neglected to include old bugfix from main branch
             
             Count line numbers properly in MacPerl app
             
             Portability fixes for blib
             (already in 5.8/5.9)
             
             Minor test fixes
     Branch: maint-5.6/perl
	  !> lib/blib.pm perl.c t/lib/filespec.t t/op/magic.t
____________________________________________________________________________
[ 17819] By: hv                                    on 2002/08/30  13:42:02
        Log: Subject: [PATCH] Tweaks to Bleadperl Version Object Support
             From: John Peacock <jpeacock@rowman.com>
             Date: Wed, 28 Aug 2002 22:13:48 -0400
             Message-ID: <3D6D835C.50809@rowman.com>
     Branch: perl
	   ! universal.c util.c
____________________________________________________________________________
[ 17818] By: hv                                    on 2002/08/30  13:16:05
        Log: add test related to change #17799:
             Subject: Re: if.pm bug.
             From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
             Date: Thu, 29 Aug 2002 19:39:58 +0200
             Message-ID: <20020829173358.34731.qmail@onion.perl.org>
     Branch: perl
	   ! lib/if.t
____________________________________________________________________________
[ 17817] By: hv                                    on 2002/08/30  13:12:20
        Log: Subject: [PATCH] AUTHORS
             From: "Brendan O'Dea" <bod@debian.org>
             Date: Thu, 29 Aug 2002 22:49:34 +1000
             Message-ID: <20020829124934.GA1984@londo.odea.dropbear.id.au>
     Branch: perl
	   ! AUTHORS
____________________________________________________________________________
[ 17816] By: hv                                    on 2002/08/30  13:10:45
        Log: Subject: [PATCH 5.8.0] Term::Cap allow # comments in infcocmp output
             From: "Brendan O'Dea" <bod@debian.org>
             Date: Thu, 29 Aug 2002 22:46:47 +1000
             Message-ID: <20020829124647.GA1498@londo.odea.dropbear.id.au>
     Branch: perl
	   ! lib/Term/Cap.pm
____________________________________________________________________________
[ 17815] By: hv                                    on 2002/08/30  13:02:41
        Log: formatting cleanup and:
             Subject: Re: perl-5.8.0 on HP porting center
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Thu, 29 Aug 2002 12:23:31 +0200
             Message-Id: <20020829122221.0CA3.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! installperl
____________________________________________________________________________
[ 17814] By: hv                                    on 2002/08/30  12:23:33
        Log: Subject: [PATCH] perlmod.pod nit
             From: Autrijus Tang <autrijus@autrijus.org>
             Date: Thu, 29 Aug 2002 03:49:34 +0800
             Message-ID: <20020828194934.GA12244@not.autrijus.org>
     Branch: perl
	   ! pod/perlmod.pod
____________________________________________________________________________
[ 17813] By: hv                                    on 2002/08/30  12:19:15
        Log: Subject: [PATCH] Re: glob names and Regexp type introspection
             From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
             Date: Thu, 29 Aug 2002 17:31:31 -0700
             Message-ID: <jzrb9gzkgO7W092yn@efn.org>
     Branch: perl
	   ! sv.c t/op/pat.t
____________________________________________________________________________
[ 17812] By: hv                                    on 2002/08/30  12:06:20
        Log: Subject: [PATCH] typos in Hash::Util documentation
             From: Slaven Rezic <slaven.rezic@berlin.de>
             Date: Wed, 28 Aug 2002 17:08:50 +0200 (CEST)
             Message-Id: <200208281508.g7SF8o9Z015197@vran.herceg.de>
     Branch: perl
	   ! lib/Hash/Util.pm
____________________________________________________________________________
[ 17811] By: hv                                    on 2002/08/30  12:02:59
        Log: Subject: Re: Recent changes on the HP porting center
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Wed, 28 Aug 2002 17:39:27 +0200
             Message-Id: <20020828173024.3E95.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! README.hpux
____________________________________________________________________________
[ 17810] By: hv                                    on 2002/08/30  11:58:18
        Log: Subject: [PATCH] Fixes to threads::shared when disabled
             From: Michael G Schwern <schwern@pobox.com>
             Date: Wed, 28 Aug 2002 06:04:18 -0700
             Message-ID: <20020828130418.GG773@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   + ext/threads/shared/t/disabled.t
	   ! MANIFEST ext/threads/shared/shared.pm
	   ! ext/threads/shared/t/hv_refs.t
____________________________________________________________________________
[ 17809] By: nick                                  on 2002/08/30  08:06:56
        Log: Integrate mainline
     Branch: perlio
	  +> t/op/getpid.t
	  !> (integrate 28 files)
____________________________________________________________________________
[ 17808] By: ams                                   on 2002/08/30  02:59:31
        Log: Subject: [PATCH] Tru64 vs Berkeley DB
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Fri, 30 Aug 2002 06:56:38 +0300
             Message-Id: <20020830035638.GB874@lyta.hut.fi>
     Branch: perl
	   ! README.tru64 hints/dec_osf.sh
____________________________________________________________________________
[ 17807] By: ams                                   on 2002/08/30  02:32:30
        Log: Subject: [PATCH] IRIX + INSTALL
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Fri, 30 Aug 2002 06:31:48 +0300
             Message-Id: <20020830033148.GA874@lyta.hut.fi>
     Branch: perl
	   ! INSTALL hints/irix_6.sh
____________________________________________________________________________
[ 17806] By: hv                                    on 2002/08/29  22:56:45
        Log: #17449 failed to apply the actual patch. This is it.
     Branch: perl
	   ! lib/Exporter.pm lib/Exporter/Heavy.pm
____________________________________________________________________________
[ 17805] By: hv                                    on 2002/08/29  13:49:04
        Log: Fix based on:
             Subject: [perl #16799] Perl 5.8.0 breaks POSIX::isprint() (and other POSIX::xxx)
             From: "esm@pobox.com (via RT)" <perlbug@perl.org>
             Date: 27 Aug 2002 22:10:16 -0000
             Message-Id: <rt-16799-35846.14.4842888832041@bugs6.perl.org>
     Branch: perl
	   ! ext/POSIX/POSIX.xs
____________________________________________________________________________
[ 17804] By: hv                                    on 2002/08/29  13:29:43
        Log: Subject: [PATCH] B::check_av() ; B::Deparse for CHECK blocks
             From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
             Date: Tue, 27 Aug 2002 23:36:53 +0200
             Message-Id: <20020827233653.535bc211.rgarciasuarez@free.fr>
     Branch: perl
	   ! embedvar.h ext/B/B.pm ext/B/B.xs ext/B/B/Deparse.pm intrpvar.h
	   ! perl.c perlapi.h sv.c
____________________________________________________________________________
[ 17803] By: ams                                   on 2002/08/29  13:09:47
        Log: Subject: [PATCH] AIX compiler setup sanity checking
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Thu, 29 Aug 2002 16:43:51 +0300
             Message-Id: <20020829134351.GG5219@lyta.hut.fi>
     Branch: perl
	   ! hints/aix.sh
____________________________________________________________________________
[ 17802] By: hv                                    on 2002/08/29  12:32:51
        Log: Subject: [perl #16769] Documention bug
             From: "dformosa@dformosa.zeta.org.au (via RT)" <perlbug@perl.org>
             Date: 26 Aug 2002 10:01:04 -0000
             Message-Id: <rt-16769-35720.17.1057454913803@bugs6.perl.org>
     Branch: perl
	   ! pod/perl58delta.pod
____________________________________________________________________________
[ 17801] By: hv                                    on 2002/08/29  12:19:30
        Log: Subject: [PATCH] ExtUtils::Constant 0.14
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sun, 25 Aug 2002 18:06:00 +0100
             Message-ID: <20020825170600.GE322@Bagpuss.unfortu.net>
     Branch: perl
	   ! lib/ExtUtils/Constant.pm lib/ExtUtils/t/Constant.t
____________________________________________________________________________
[ 17800] By: hv                                    on 2002/08/29  12:08:59
        Log: Subject: Patch: Put local($^I, @ARGV) = ... trick back into perlfaq5
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Sun, 25 Aug 2002 12:09:53 -0400
             Message-ID: <20020825160953.15987.qmail@plover.com>
     Branch: perl
	   ! pod/perlfaq5.pod
____________________________________________________________________________
[ 17799] By: hv                                    on 2002/08/29  11:48:39
        Log: Subject: Re: if.pm bug.
             From: "Steffen Mueller" <kjx9zthh3001@sneakemail.com>
             Date: Sun, 25 Aug 2002 00:27:59 +0200
             Message-ID: <20020824222210.16387.qmail@onion.perl.org>
     Branch: perl
	   ! lib/if.pm
____________________________________________________________________________
[ 17798] By: hv                                    on 2002/08/29  11:44:00
        Log: Subject: [PATCH] posixify getppid on linux-multithread
             From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
             Date: Tue, 6 Aug 2002 21:56:46 +0200
             Message-Id: <20020806215646.3f6852bb.rgarciasuarez@free.fr>
     Branch: perl
	   + t/op/getpid.t
	   ! MANIFEST embedvar.h hints/linux.sh perl.c perlapi.h perlvars.h
	   ! pod/perlfunc.pod pod/perlvar.pod pp_sys.c util.c
____________________________________________________________________________
[ 17797] By: hv                                    on 2002/08/29  10:55:41
        Log: Subject: Re: [perl #16677] B::SV::FLAGS dumps core
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Sun, 25 Aug 2002 22:31:54 -0400
             Message-ID: <20020826023154.22986.qmail@plover.com>
     Branch: perl
	   ! ext/B/B.pm
____________________________________________________________________________
[ 17796] By: nick                                  on 2002/08/27  18:46:22
        Log: Twiddle with my mail -> Change script
     Branch: perlio
	   ! Porting/apply
____________________________________________________________________________
[ 17795] By: nick                                  on 2002/08/27  18:42:41
        Log: Subject:  Re: PerlIO::via silent failure
             From:  Richard Clamp <richardc@unixbeard.net>
             Date:  Sun, 11 Aug 2002 15:52:24 +0100
             Message-Id:  <20020811145224.GA23897@mirth.demon.co.uk>
     Branch: perlio
	   ! ext/PerlIO/t/via.t ext/PerlIO/via/via.xs
____________________________________________________________________________
[ 17792] By: nick                                  on 2002/08/27  18:09:29
        Log: Integrate mainline
     Branch: perlio
	  +> ext/Storable/t/code.t lib/Math/BigInt/Scalar.pm
	  +> lib/Math/BigInt/t/bigints.t lib/Math/BigRat/t/big_ap.t
	  +> lib/Pod/t/text-options.t lib/Test/Simple/t/details.t
	  +> lib/Test/Simple/t/fork.t lib/Test/Simple/t/has_plan.t
	  +> lib/Test/Simple/t/has_plan2.t lib/Test/Simple/t/ok_obj.t
	  +> lib/bignum/t/biinfnan.t lib/bignum/t/bn_lite.t
	  +> lib/bignum/t/bninfnan.t lib/bignum/t/br_lite.t
	  +> lib/bignum/t/brinfnan.t lib/bignum/t/infnan.inc
	  +> t/lib/Test/Simple/sample_tests/pre_plan_death.plx
	  !> (integrate 135 files)
____________________________________________________________________________
[ 17791] By: hv                                    on 2002/08/27  11:28:32
        Log: Missing MANIFEST files for #17783.
     Branch: perl
	   ! MANIFEST
____________________________________________________________________________
[ 17790] By: hv                                    on 2002/08/27  11:22:36
        Log: #17783 introduced an outdated test module, causing failure in
             lib/ExtUtils/t/problems.t. This grabs a more recent copy from
             ExtUtils::MakeMaker.
     Branch: perl
	   ! t/lib/TieOut.pm
____________________________________________________________________________
[ 17789] By: ams                                   on 2002/08/27  04:04:48
        Log: Subject: Patch perlvar.pod
             From: mjd@plover.com
             Date: 27 Aug 2002 03:03:01 -0000
             Message-Id: <20020827030301.32481.qmail@plover.com>
     Branch: perl
	   ! pod/perlvar.pod
____________________________________________________________________________
[ 17788] By: hv                                    on 2002/08/26  23:59:47
        Log: Update Changes
     Branch: perl
	   ! Changes patchlevel.h
____________________________________________________________________________
[ 17787] By: hv                                    on 2002/08/26  19:22:27
        Log: fix for:
             Subject: [perl #16773] "abc" =~ /(ab)()(c)??/ broken
             From: (Randal L. Schwartz) (via RT) <perlbug@perl.org>
             Date: 26 Aug 2002 15:01:36 -0000
             Message-Id: <rt-16773-35748.5.13188490159294@bugs6.perl.org>
     Branch: perl
	   ! regexec.c t/op/re_tests
____________________________________________________________________________
[ 17786] By: hv                                    on 2002/08/26  15:34:25
        Log: Subject: CPAN Upload: S/SB/SBURKE/Test-1.21.tar.gz
             From: "Sean M. Burke" <sburke@cpan.org>
             Date: Mon, 26 Aug 2002 04:38:19 -0600
             Message-Id: <5.1.0.14.1.20020826043702.022ca320@mail.spinn.net>
     Branch: perl
	   ! lib/Test.pm lib/Test/t/fail.t lib/Test/t/mix.t
	   ! lib/Test/t/todo.t
____________________________________________________________________________
[ 17785] By: hv                                    on 2002/08/26  15:18:41
        Log: fix non-ANSI C++-style comment
             Subject: [ PATCH ]  Smoke 17780 /pro/3gl/CPAN/perl-current
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Mon, 26 Aug 2002 09:15:18 +0200
             Message-Id: <20020826090145.6975.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! ext/Storable/Storable.xs
____________________________________________________________________________
[ 17784] By: hv                                    on 2002/08/26  15:15:19
        Log: #17780 relies on unixy paths to locate own directory for bignum tests.
     Branch: perl
	   ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
	   ! lib/bignum/t/brinfnan.t
____________________________________________________________________________
[ 17783] By: hv                                    on 2002/08/26  15:07:21
        Log: Subject: [ANNOUNCE] Test::Simple 0.47
             From: Michael G Schwern <schwern@pobox.com>
             Date: Mon, 26 Aug 2002 04:13:03 -0700
             Message-ID: <20020826111303.GJ758@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   + lib/Test/Simple/t/details.t lib/Test/Simple/t/fork.t
	   + lib/Test/Simple/t/has_plan.t lib/Test/Simple/t/has_plan2.t
	   + lib/Test/Simple/t/ok_obj.t
	   + t/lib/Test/Simple/sample_tests/pre_plan_death.plx
	   ! lib/Test/Builder.pm lib/Test/More.pm lib/Test/Simple.pm
	   ! lib/Test/Simple/Changes lib/Test/Simple/t/exit.t
	   ! lib/Test/Simple/t/plan.t lib/Test/Simple/t/threads.t
	   ! lib/Test/Tutorial.pod t/lib/TieOut.pm
____________________________________________________________________________
[ 17782] By: hv                                    on 2002/08/26  15:00:55
        Log: new test for change #17773
             Subject: lib/Pod/t/htmlview.t and lib/Pod/t/htmlview.pod patch (to account for the Pod::Html patch)
             From: DH <crazyinsomniac@yahoo.com>
             Date: Mon, 26 Aug 2002 01:36:27 -0700 (PDT)
             Message-ID: <20020826083627.46199.qmail@web40207.mail.yahoo.com>
     Branch: perl
	   ! lib/Pod/t/htmlview.pod lib/Pod/t/htmlview.t
____________________________________________________________________________
[ 17781] By: hv                                    on 2002/08/26  14:48:35
        Log: #17775 changed reentr.c instead of reentr.pl, which generates it
     Branch: perl
	   ! reentr.pl
____________________________________________________________________________
[ 17780] By: hv                                    on 2002/08/25  19:03:50
        Log: fix bignum test failures
     Branch: perl
	   ! lib/bignum/t/biinfnan.t lib/bignum/t/bninfnan.t
	   ! lib/bignum/t/brinfnan.t
____________________________________________________________________________
[ 17779] By: hv                                    on 2002/08/25  18:56:29
        Log: upgrade bignum to v0.13: fix test failures and update docs
     Branch: perl
	   ! lib/bignum.pm lib/bignum/t/bignum.t lib/bignum/t/bninfnan.t
____________________________________________________________________________
[ 17778] By: hv                                    on 2002/08/25  18:43:06
        Log: Subject: Encode 1.76 Released
             From: Dan Kogai <dankogai@dan.co.jp>
             Date: su elo 25, 2002  11:27:07 US/Eastern
             Message-Id: <1DE68466-B83F-11D6-8805-0003939A104C@dan.co.jp>
     Branch: perl
	   ! ext/Encode/Changes ext/Encode/Encode.pm ext/Encode/bin/piconv
	   ! ext/Encode/encoding.pm ext/Encode/lib/Encode/Alias.pm
	   ! ext/Encode/lib/Encode/MIME/Header.pm
	   ! ext/Encode/t/big5-eten.utf ext/Encode/ucm/big5-eten.ucm
____________________________________________________________________________
[ 17777] By: rgs                                   on 2002/08/25  18:42:46
        Log: Fix parsing problems with the // operator.
             Make // able to follow various unary operators used without
             arguments or parens (shift, pop, getc, pos, readline,
             readlink, undef, umask, and the filetest operators), as
             well as the <FH> operator.
     Branch: perl
	   ! perl.h t/op/dor.t toke.c
____________________________________________________________________________
[ 17776] By: hv                                    on 2002/08/25  15:56:37
        Log: Subject: [PATCH] ExtUtils::Constant 0.13
             From: Nicholas Clark <nick@unfortu.net>
             Date: Fri, 23 Aug 2002 19:21:12 +0100
             Message-ID: <20020823182111.GA281@Bagpuss.unfortu.net>
     Branch: perl
	   ! lib/ExtUtils/Constant.pm lib/ExtUtils/t/Constant.t
____________________________________________________________________________
[ 17775] By: hv                                    on 2002/08/25  15:46:28
        Log: Subject: [perl #16729] crypt() doesn't work in multithreaded perl
             From: "mls@suse.de (via RT)" <perlbug@perl.org>
             Date: 23 Aug 2002 15:24:39 -0000
             Message-Id: <rt-16729-35555.9.25145891475907@bugs6.perl.org>
     Branch: perl
	   ! reentr.c
____________________________________________________________________________
[ 17774] By: hv                                    on 2002/08/25  15:29:42
        Log: Subject: [PATCH lib/Benchmark.(pm|t)]  Make cmpthese work as documented.
             From: Abigail <abigail@foad.org>
             Date: Thu, 22 Aug 2002 04:10:39 -0700
             Message-ID: <20020822041039.A2089@ucan.foad.org>
     Branch: perl
	   ! lib/Benchmark.pm lib/Benchmark.t
____________________________________________________________________________
[ 17773] By: hv                                    on 2002/08/25  15:17:16
        Log: Subject: Re: a bugfix for Pod::Html (in diff -u format)
             From: DH <crazyinsomniac@yahoo.com>
             Date: Thu, 22 Aug 2002 02:32:50 -0700 (PDT)
             Message-ID: <20020822093250.30523.qmail@web40205.mail.yahoo.com>
     Branch: perl
	   ! lib/Pod/Html.pm
____________________________________________________________________________
[ 17772] By: hv                                    on 2002/08/25  14:49:37
        Log: Subject: Re: p5p patches
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Fri, 23 Aug 2002 15:27:48 +0200
             Message-Id: <20020823152535.D3EA.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! Porting/patching.pod
____________________________________________________________________________
[ 17771] By: hv                                    on 2002/08/25  14:45:46
        Log: Subject: Newdated info for HP-UX
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Wed, 21 Aug 2002 20:20:17 +0200
             Message-Id: <20020821201737.697B.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! README.hpux
____________________________________________________________________________
[ 17770] By: hv                                    on 2002/08/25  14:26:36
        Log: Subject: [PATCH] let perlfaq1.pod mention 5.8 as the current stable release
             From: "Jos I. Boumans" <kane@cpan.org>
             Date: Wed, 21 Aug 2002 14:55:51 +0200
             Message-ID: <20020821124817.34761.qmail@onion.perl.org>
     Branch: perl
	   ! pod/perlfaq1.pod
____________________________________________________________________________
[ 17769] By: hv                                    on 2002/08/25  14:16:50
        Log: Subject: bit more for WinCE
             From: "Vadim Konovalov" <vkonovalov@peterstar.ru>
             Date: Wed, 21 Aug 2002 01:31:52 +0400
             Message-ID: <000f01c24891$045c4990$2b5ec3d9@vad>
     Branch: perl
	   ! wince/Makefile.ce wince/compile.bat wince/win32io.c
	   ! wince/wince.c
____________________________________________________________________________
[ 17768] By: hv                                    on 2002/08/25  14:02:47
        Log: Subject: [PATCH] fix lib.pm's import() to accept readonly parameters
             From: Anton Berezin <tobez@tobez.org>
             Date: Tue, 20 Aug 2002 23:44:25 +0200
             Message-ID: <20020820214425.GG16178@heechee.tobez.org>
     Branch: perl
	   ! lib/lib.t lib/lib_pm.PL
____________________________________________________________________________
[ 17767] By: hv                                    on 2002/08/25  13:52:08
        Log: Subject: [perl #16281] patch to enable perldoc -n for MSWin32 (perl-5.8.0)
             From: "Randy W. Sims" (via RT) <perlbug@perl.org>
             Date: 18 Aug 2002 13:27:12 -0000
             Message-Id: <rt-16281-34264.3.49471192322156@bugs6.perl.org>
     Branch: perl
	   ! utils/perldoc.PL
____________________________________________________________________________
[ 17766] By: rgs                                   on 2002/08/24  20:33:05
        Log: Subject: [perl #16737] [PATCH] Perl5.8.0 two simple typos in perlxstut  
             From: Peter BARABAS (via RT) <perlbug@perl.org>
             Date: 24 Aug 2002 08:16:19 -0000
             Message-ID: <rt-16737-35573.3.51579548306248@bugs6.perl.org> 
     Branch: perl
	   ! pod/perlxstut.pod
____________________________________________________________________________
[ 17765] By: rgs                                   on 2002/08/24  19:03:52
        Log: Subject: [PATCH] remove 2 unit warnings from lib/Net/t/hostname.t
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sat, 24 Aug 2002 17:01:08 +0100
             Message-ID: <20020824160107.GI280@Bagpuss.unfortu.net>
             (plus a typo fix)
     Branch: perl
	   ! lib/Net/t/hostname.t
____________________________________________________________________________
[ 17764] By: rgs                                   on 2002/08/24  12:29:27
        Log: a2p wasn't installed with -Dversiononly
     Branch: perl
	   ! installperl
____________________________________________________________________________
[ 17763] By: hv                                    on 2002/08/23  12:23:31
        Log: #17747 caused bad free()s with PERL_DESTRUCT by calling newXS()
             with a NULL subaddr. Fix that, and stop it happening again.
     Branch: perl
	   ! op.c universal.c
____________________________________________________________________________
[ 17762] By: hv                                    on 2002/08/23  11:02:35
        Log: fixup threaded build for vstring changes
     Branch: perl
	   ! universal.c util.c
____________________________________________________________________________
[ 17761] By: ams                                   on 2002/08/23  02:54:09
        Log: Incorporate fix from JHI at:
             http://rt.perl.org/rt2/Ticket/Display.html?id=16708
     Branch: perl
	   ! ext/NDBM_File/NDBM_File.xs ext/ODBM_File/ODBM_File.xs
____________________________________________________________________________
[ 17760] By: ams                                   on 2002/08/23  01:30:46
        Log: Subject: [PATCH] PPPort IVSIZE and SvPV_nolen
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Fri, 23 Aug 2002 05:29:09 +0300
             Message-Id: <20020823022909.GC9135@lyta.hut.fi>
     Branch: perl
	   ! ext/Devel/PPPort/PPPort.pm
____________________________________________________________________________
[ 17759] By: ams                                   on 2002/08/23  01:27:23
        Log: Subject: [PATCH] x2p/str.c signedness nits
             From: Jarkko Hietaniemi <jhi@iki.fi>
             Date: Fri, 23 Aug 2002 02:43:30 +0300
             Message-Id: <20020822234330.GC31624@lyta.hut.fi>
     Branch: perl
	   ! x2p/str.c
____________________________________________________________________________
[ 17758] By: hv                                    on 2002/08/22  22:29:45
        Log: bignum-0.12 updates from:
             Subject: [ANNOUCNE] Big Math::Big* update
             From: Tels <perl_dummy@bloodgate.com>
             Date: Tue, 13 Aug 2002 22:02:09 +0200 (CEST)
             Message-Id: <200208132121.g7DLLRV21408@crypt.org>
     Branch: perl
	   + lib/bignum/t/biinfnan.t lib/bignum/t/bn_lite.t
	   + lib/bignum/t/bninfnan.t lib/bignum/t/br_lite.t
	   + lib/bignum/t/brinfnan.t lib/bignum/t/infnan.inc
	   ! MANIFEST lib/bigint.pm lib/bignum.pm lib/bignum/t/bignum.t
	   ! lib/bigrat.pm
____________________________________________________________________________
[ 17757] By: hv                                    on 2002/08/22  22:19:42
        Log: new file for #17756
     Branch: perl
	   ! MANIFEST
____________________________________________________________________________
[ 17756] By: hv                                    on 2002/08/22  22:16:41
        Log: Subject: ANNOUCNE: Math::BigRat v0.09
             From: Tels <perl_dummy@bloodgate.com>
             Date: Wed, 14 Aug 2002 20:12:03 +0200 (CEST)
             Message-Id: <200208141812.g7EICrV23771@crypt.org>
     Branch: perl
	   + lib/Math/BigRat/t/big_ap.t
	   ! lib/Math/BigRat.pm lib/Math/BigRat/t/bigrat.t
	   ! lib/Math/BigRat/t/bigratpm.inc
____________________________________________________________________________
[ 17755] By: hv                                    on 2002/08/22  19:44:03
        Log: new files from #17754
     Branch: perl
	   + lib/Math/BigInt/Scalar.pm lib/Math/BigInt/t/bigints.t
____________________________________________________________________________
[ 17754] By: hv                                    on 2002/08/22  19:42:58
        Log: Subject: ANNOUNCE: Math-BigInt v1.62
             From: Tels <perl_dummy@bloodgate.com>
             Date: Wed, 21 Aug 2002 19:12:59 +0200 (CEST)
             Message-Id: <200208211513.g7LFDUs02512@crypt.org>
     Branch: perl
	   ! MANIFEST lib/Math/BigFloat.pm lib/Math/BigInt.pm
	   ! lib/Math/BigInt/Calc.pm lib/Math/BigInt/t/bare_mbf.t
	   ! lib/Math/BigInt/t/bare_mbi.t lib/Math/BigInt/t/bare_mif.t
	   ! lib/Math/BigInt/t/bigfltpm.inc lib/Math/BigInt/t/bigfltpm.t
	   ! lib/Math/BigInt/t/bigintc.t lib/Math/BigInt/t/bigintpm.inc
	   ! lib/Math/BigInt/t/bigintpm.t lib/Math/BigInt/t/calling.t
	   ! lib/Math/BigInt/t/constant.t lib/Math/BigInt/t/mbimbf.inc
	   ! lib/Math/BigInt/t/mbimbf.t lib/Math/BigInt/t/sub_mbf.t
	   ! lib/Math/BigInt/t/sub_mbi.t lib/Math/BigInt/t/sub_mif.t
	   ! lib/Math/BigInt/t/upgrade.inc lib/Math/BigInt/t/upgrade.t
	   ! lib/Math/BigInt/t/with_sub.t t/lib/Math/BigFloat/Subclass.pm
____________________________________________________________________________
[ 17753] By: hv                                    on 2002/08/22  12:05:57
        Log: Subject: podlators 1.24 released
             From: Russ Allbery <rra@stanford.edu>
             Date: Sat, 03 Aug 2002 20:56:42 -0700
             Message-ID: <ylbs8jff9h.fsf@windlord.stanford.edu>
     Branch: perl
	   + lib/Pod/t/text-options.t
	   ! MANIFEST lib/Pod/Text.pm lib/Pod/Text/Overstrike.pm
	   ! lib/Pod/t/basic.t pod/pod2text.PL
____________________________________________________________________________
[ 17752] By: hv                                    on 2002/08/22  11:13:17
        Log: Subject: [Announce] Unicode::Collate 0.20 -> UCA version 9
             From: SADAHIRO Tomoyuki <bqw10602@nifty.com>
             Date: Fri, 26 Jul 2002 02:59:12 +0900
             Message-Id: <20020726025828.B5E9.BQW10602@nifty.com>
     Branch: perl
	   ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
	   ! lib/Unicode/Collate/README lib/Unicode/Collate/keys.txt
	   ! lib/Unicode/Collate/t/test.t
____________________________________________________________________________
[ 17751] By: hv                                    on 2002/08/22  11:08:35
        Log: fix test failure from #17747
     Branch: perl
	   ! ext/B/t/stash.t
____________________________________________________________________________
[ 17750] By: hv                                    on 2002/08/22  10:46:19
        Log: Subject: [PATCH] Fix DBM filters
             From: "Paul Marquess" <Paul.Marquess@btinternet.com>
             Date: Wed, 21 Aug 2002 11:40:49 +0100
             Message-ID: <AIEAJICLCBDNAAOLLOKLAEHCFEAA.Paul.Marquess@btinternet.com>
     Branch: perl
	   ! XSUB.h ext/DB_File/DB_File.xs ext/DB_File/typemap
	   ! ext/GDBM_File/GDBM_File.xs ext/GDBM_File/gdbm.t
	   ! ext/GDBM_File/typemap ext/NDBM_File/NDBM_File.xs
	   ! ext/NDBM_File/ndbm.t ext/NDBM_File/typemap
	   ! ext/ODBM_File/ODBM_File.xs ext/ODBM_File/odbm.t
	   ! ext/ODBM_File/typemap ext/SDBM_File/SDBM_File.xs
	   ! ext/SDBM_File/sdbm.t ext/SDBM_File/typemap
____________________________________________________________________________
[ 17749] By: hv                                    on 2002/08/22  01:04:32
        Log: avoid use of %caller::EXPORT
             Subject: [PATCH] Re: question about Exporter::import
             From: Nicholas Clark <nick@unfortu.net>
             Date: Wed, 14 Aug 2002 21:33:12 +0100
             Message-id: <20020814203311.GD278@Bagpuss.unfortu.net>
     Branch: perl
	   ! lib/Exporter.pm lib/Exporter/Heavy.pm
____________________________________________________________________________
[ 17748] By: hv                                    on 2002/08/22  00:54:03
        Log: todo test for linux $0 modification
             Subject: Re: [perl #16206] $0 in 5.8
             From: Slaven Rezic <slaven.rezic@berlin.de>
             Date: 17 Aug 2002 21:32:37 +0200
             Message-id: <87elcx2sdm.fsf@vran.herceg.de>
     Branch: perl
	   ! t/op/magic.t
____________________________________________________________________________
[ 17747] By: hv                                    on 2002/08/22  00:11:34
        Log: Subject: Re: [PATCH] Version object patch #1
             From: John Peacock <jpeacock@rowman.com>
             Date: Tue, 20 Aug 2002 22:51:46 -0400 (Wed 03:51 BST)
             Message-id: <3D630042.6020407@rowman.com>
             
             Subject: Re: [REVISED PATCH] Magic v-strings
             From: John Peacock <jpeacock@rowman.com>
             Date: Wed, 21 Aug 2002 15:08:34 -0400 (20:08 BST)
             Message-id: <3D63E532.7020305@rowman.com>
     Branch: perl
	   ! sv.c t/op/ver.t universal.c util.c
____________________________________________________________________________
[ 17746] By: hv                                    on 2002/08/20  16:48:05
        Log: Subject: [PATCH] Version object patch #1
             From: John Peacock <jpeacock@rowman.com>
             Date: Thu, 15 Aug 2002 10:06:21 -0400 (15:06 BST)
             Message-id: <3D5BB55D.6090603@rowman.com>
             and Message-id: <3D627D1A.4050607@rowman.com>
             and t/lib/warnings/universal tweak to skip
     Branch: perl
	   ! embed.fnc embed.h global.sym pod/perlapi.pod proto.h sv.h
	   ! t/lib/warnings/universal toke.c util.c
____________________________________________________________________________
[ 17745] By: hv                                    on 2002/08/20  16:27:01
        Log: perldelta for #17727
     Branch: perl
	   ! pod/perldelta.pod
____________________________________________________________________________
[ 17744] By: hv                                    on 2002/08/20  15:34:36
        Log: Subject: typo in perfunc.pod
             From: "John P. Linderman" <jpl@research.att.com>
             Date: Mon, 19 Aug 2002 08:45:31 -0400 (EDT) (13:45 BST)
             Message-id: <200208191245.IAA20072@raptor.research.att.com>
     Branch: perl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[ 17743] By: hv                                    on 2002/08/20  15:31:40
        Log: Subject: Re: [PATCH] fix typos in perlpacktut
             From: "Mr. Nobody" <mrnobo1024@yahoo.com>
             Date: Fri, 16 Aug 2002 20:40:58 -0700 (PDT) (Sat 04:40 BST)
             Message-id: <20020817034058.45633.qmail@web20802.mail.yahoo.com>
     Branch: perl
	   ! pod/perlpacktut.pod
____________________________________________________________________________
[ 17742] By: hv                                    on 2002/08/20  14:51:16
        Log: Subject: [REVISED PATCH] Magic v-strings
             From: John Peacock <jpeacock@rowman.com>
             Date: Sat, 10 Aug 2002 15:56:22 -0400 (20:56 BST)
             Message-id: <3D556FE6.6000404@rowman.com>
             plus a bit of cleanup
     Branch: perl
	   ! dump.c perl.h pod/perlguts.pod sv.c sv.h util.c
____________________________________________________________________________
[ 17741] By: hv                                    on 2002/08/20  14:20:16
        Log: Subject: Re: [PATCH] Storable and CODE references
             From: Slaven Rezic <slaven.rezic@berlin.de>
             Date: 17 Aug 2002 21:58:03 +0200
             Message-id: <87bs812r78.fsf@vran.herceg.de>
     Branch: perl
	   + ext/Storable/t/code.t
	   ! MANIFEST ext/Storable/Storable.xs ext/Storable/t/forgive.t
	   ! ext/Storable/t/malice.t
____________________________________________________________________________
[ 17740] By: hv                                    on 2002/08/20  14:07:56
        Log: Clean up copy-on-write macros and debug facilities (new flag 'C').
             Handle CoW in hashes:
             Subject: Re: why would tr/// be performing hash copies?
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sun, 18 Aug 2002 23:17:01 +0100
             Message-id: <20020818221700.GD294@Bagpuss.unfortu.net>
     Branch: perl
	   ! hv.c perl.c perl.h pod/perlrun.pod sv.c sv.h
____________________________________________________________________________
[ 17739] By: hv                                    on 2002/08/20  13:52:18
        Log: Subject: Re: [perl #15326] Not OK: perl v5.8.0 on i686-linux-64int-ld 2.4.5
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Tue, 23 Jul 2002 09:21:10 +0200
             Message-id: <20020723092051.184C.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! Configure
____________________________________________________________________________
[ 17738] By: nick                                  on 2002/08/20  07:13:52
        Log: Integrate mainline
     Branch: perlio
	   - vos/Makefile vos/build.cm vos/compile_perl.cm
	   - vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
	   - vos/config.ga.h vos/config.pl vos/configure_perl.cm
	   - vos/install_perl.cm vos/perl.bind vos/test_vos_dummies.c
	   - vos/vos_dummies.c
	  !> (integrate 57 files)
____________________________________________________________________________
[ 17737] By: ams                                   on 2002/08/19  07:48:39
        Log: Effect a speedy recovery from POD affected by (ahem, Australian)
             negligence.
     Branch: perl
	   ! pod/perlrun.pod
____________________________________________________________________________
[ 17736] By: hv                                    on 2002/08/18  18:27:28
        Log: Subject: [PATCH] Re: 5.8.0 sprintf (?) problem with floats?
             From: Dave Mitchell <davem@fdgroup.com>
             Date: Fri, 16 Aug 2002 23:31:07 +0100
             Message-id: <20020816233107.E9388@fdgroup.com>
     Branch: perl
	   ! numeric.c t/base/num.t
____________________________________________________________________________
[ 17735] By: hv                                    on 2002/08/18  02:22:21
        Log: Subject: Re: [perl #16198] pod tpyo in hostent.pm
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Tue, 13 Aug 2002 21:19:08 -0400 (Wed 02:19 BST)
             Message-id: <20020814011909.22744.qmail@plover.com>
     Branch: perl
	   ! lib/Net/hostent.pm
____________________________________________________________________________
[ 17734] By: hv                                    on 2002/08/18  02:20:05
        Log: Subject: [PATCH] Re: Pod::Functions tpyo
             From: Abe Timmerman <abe@ztreet.demon.nl>
             Date: Tue, 13 Aug 2002 23:47:00 +0200
             Message-id: <200208132347.00782.abe@ztreet.demon.nl>
     Branch: perl
	   ! lib/Pod/Functions.pm
____________________________________________________________________________
[ 17733] By: hv                                    on 2002/08/18  02:17:18
        Log: Subject: Server rename revisited
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Tue, 13 Aug 2002 19:19:03 +0200
             Message-id: <20020813191821.DC98.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! README.hpux
____________________________________________________________________________
[ 17732] By: hv                                    on 2002/08/18  02:11:49
        Log: Subject: [PATCH] Remove old VOS build methods
             From: Paul_GreenVOS@vos.stratus.com
             Date: Tue, 13 Aug 02 10:25 edt (15:25 BST)
             Message-id: <200208131426.KAA01012@mailhub1.stratus.com>
     Branch: perl
	   - vos/Makefile vos/build.cm vos/compile_perl.cm
	   - vos/config.alpha.def vos/config.alpha.h vos/config.ga.def
	   - vos/config.ga.h vos/config.pl vos/configure_perl.cm
	   - vos/install_perl.cm vos/perl.bind vos/test_vos_dummies.c
	   - vos/vos_dummies.c
	   ! MANIFEST README.vos pod/perlport.pod vos/Changes
____________________________________________________________________________
[ 17731] By: hv                                    on 2002/08/18  01:57:12
        Log: Subject: [PATCH] Configure missing d_modflproto=''
             From: "Gerrit P. Haase" <gp@familiehaase.de>
             Date: Tue, 13 Aug 2002 15:11:05 +0200
             Message-id: <11417599086.20020813151105@familiehaase.de>
     Branch: perl
	   ! Configure
____________________________________________________________________________
[ 17730] By: hv                                    on 2002/08/18  01:41:33
        Log: missing chunk from #17725 causes lib/constant.t test failures
     Branch: perl
	   ! lib/constant.t
____________________________________________________________________________
[ 17729] By: hv                                    on 2002/08/17  02:33:15
        Log: Subject: [PATCH] Safe.pm documentation
             From: Slaven Rezic <slaven.rezic@berlin.de>
             Date: Sat, 10 Aug 2002 19:30:38 +0200 (CEST)
             Message-id: <200208101730.g7AHUc9p001668@vran.herceg.de>
     Branch: perl
	   ! ext/Opcode/Safe.pm pod/perlre.pod
____________________________________________________________________________
[ 17728] By: hv                                    on 2002/08/17  02:07:24
        Log: Subject: Copy On Write
             From: Nicholas Clark <nick@ccl4.org>
             Date: Thu, 15 Aug 2002 00:10:35 +0100
             Message-id: <20020815001035.A69079@plum.flirble.org>
             specify "-Accflags='-DPERL_COPY_ON_WRITE'" to use
     Branch: perl
	   ! doop.c dump.c embed.fnc embed.h mg.c pod/perlapi.pod pp.c
	   ! pp_hot.c proto.h sv.c sv.h
____________________________________________________________________________
[ 17727] By: hv                                    on 2002/08/17  01:20:05
        Log: Subject: [PATCH 5.7.3] Negative subscripts optionally passed to tied array methods
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Sun, 14 Apr 2002 23:38:55 -0400 (Mon 04:38 BST)
             Message-id: <20020415033855.6343.qmail@plover.com>
     Branch: perl
	   ! av.c av.h pod/perltie.pod t/op/tiearray.t
____________________________________________________________________________
[ 17726] By: hv                                    on 2002/08/17  01:17:09
        Log: pp.c warns that sv may be used uninitialised in pp_delete()
     Branch: perl
	   ! pp.c
____________________________________________________________________________
[ 17725] By: hv                                    on 2002/08/17  00:51:19
        Log: Subject: [PATCH] Remove pseudo-hashes (complete)
             From: Michael G Schwern <schwern@pobox.com>
             Date: Tue, 6 Aug 2002 13:05:10 -0700 (21:05 BST)
             Message-id: <20020806200510.GC31473@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! av.c doop.c dump.c embed.fnc embed.h ext/B/B/Concise.pm
	   ! global.sym lib/fields.pm lib/fields.t lib/overload.pm mg.c
	   ! op.c op.h pod/perldiag.pod pod/perlfunc.pod pod/perlref.pod
	   ! pp.c pp_hot.c proto.h t/op/avhv.t t/op/hashwarn.t
____________________________________________________________________________
[ 17724] By: hv                                    on 2002/08/17  00:27:33
        Log: ext/B/defsubs.h also depends on the program that builds it
     Branch: perl
	   ! ext/B/Makefile.PL
____________________________________________________________________________
[ 17723] By: hv                                    on 2002/08/17  00:10:24
        Log: Subject: Re: deb.c compile time error (patchlevel 17721)
             From: Dave Mitchell <davem@fdgroup.com>
             Date: Tue, 13 Aug 2002 14:42:15 +0100
             Message-ID: <20020813144215.G11939@fdgroup.com>
     Branch: perl
	   ! embed.fnc embed.h global.sym proto.h
____________________________________________________________________________
[ 17722] By: ams                                   on 2002/08/16  05:20:22
        Log: Subject: Minor perlrun.pod patch
             From: Iain Truskett <spoon@cpan.org>
             Date: Fri, 16 Aug 2002 16:20:27 +1000
             Message-Id: <20020816162027.D17196@eh.org>
     Branch: perl
	   ! pod/perlrun.pod
____________________________________________________________________________
[ 17721] By: hv                                    on 2002/08/12  12:17:19
        Log: #17717 needed tests fixing up
     Branch: perl
	   ! t/op/chop.t
____________________________________________________________________________
[ 17720] By: hv                                    on 2002/08/12  12:10:07
        Log: Subject: Re: [PATCH] Re: taint news
             From: Rick Delaney <rick.delaney@rogers.com>
             Date: 04 Aug 2002 00:28:58 EDT
             Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
             missed patch fragment from Change #17676
     Branch: perl
	   ! pod/perlsec.pod
____________________________________________________________________________
[ 17719] By: hv                                    on 2002/08/12  12:03:53
        Log: Subject: [perl #15987] Tests fail when sources are under CVS control
             From: Warren Jones (via RT) <perlbug@perl.org>
             Date: 5 Aug 2002 19:08:50 -0000 (Mon 20:08 BST)
             Message-id: <rt-15987-32864.15.6255441902154@bugs6.perl.org>
     Branch: perl
	   ! lib/strict.t lib/warnings.t
____________________________________________________________________________
[ 17718] By: hv                                    on 2002/08/12  11:57:17
        Log: Subject: [PATCH] add verbose stack display option, -Dvs
             From: Dave Mitchell <davem@fdgroup.com>
             Date: Mon, 5 Aug 2002 00:55:33 +0100
             Message-id: <20020805005533.B26111@fdgroup.com>
     Branch: perl
	   ! deb.c dump.c embed.fnc embed.h perl.c perl.h pod/perlapi.pod
	   ! pod/perlrun.pod proto.h
____________________________________________________________________________
[ 17717] By: hv                                    on 2002/08/12  11:44:06
        Log: Subject: Re: [PATCH@8545] [ID 20000808.005] OP_REFGEN as an lvalue
             From: Stephen McCamant <smcc@CSUA.Berkeley.EDU>
             Date: Sat, 27 Jan 2001 19:31:29 -0800 (PST)
             Message-ID: <14963.32943.102669.67625@soda.csua.berkeley.edu>
     Branch: perl
	   ! op.c t/op/chop.t t/op/ref.t
____________________________________________________________________________
[ 17716] By: hv                                    on 2002/08/12  11:29:53
        Log: Subject: Re: [ID 20020713.001] chomp($data=<tied_fh>) strangeness.
             From: Hugo van der Sanden <hv@crypt.compulink.co.uk>
             Date: Sat, 13 Jul 2002 17:44:02 +0100
             Message-id: <200207131644.g6DGi2214456@crypt.compulink.co.uk>
     Branch: perl
	   ! pp_hot.c t/op/tiehandle.t
____________________________________________________________________________
[ 17715] By: hv                                    on 2002/08/12  11:28:26
        Log: Subject: [PATCH] better modfl detection
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sun, 11 Aug 2002 20:05:49 +0100
             Message-id: <20020811190548.GK300@Bagpuss.unfortu.net>
     Branch: perl
	   ! Configure config_h.SH perl.h
____________________________________________________________________________
[ 17714] By: hv                                    on 2002/08/12  11:26:23
        Log: Subject: [PATCH] perltodo.pod
             From: Richard.Foley@t-online.de
             Date: Sun, 11 Aug 2002 18:26:10 +0200
             Message-id: <17dwY1-0spbdoC@fwd06.sul.t-online.com>
             perlbug credits
     Branch: perl
	   ! pod/perltodo.pod
____________________________________________________________________________
[ 17713] By: hv                                    on 2002/08/12  11:24:44
        Log: Subject: [PATCH] gv_fullname3 as call to gv_fullname4
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sun, 11 Aug 2002 16:59:16 +0100
             Message-id: <20020811155914.GE300@Bagpuss.unfortu.net>
     Branch: perl
	   ! gv.c
____________________________________________________________________________
[ 17712] By: hv                                    on 2002/08/12  11:23:06
        Log: Subject: Re: Smoke 17703 /pro/3gl/CPAN/perl-current
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Mon, 12 Aug 2002 10:25:20 +0200
             Message-id: <20020812102347.AFB6.H.M.BRAND@hccnet.nl>
             gcc bug test needs -lm
     Branch: perl
	   ! hints/hpux.sh
____________________________________________________________________________
[ 17711] By: hv                                    on 2002/08/12  11:20:49
        Log: Subject: [PATCH s2p] Small typo correction
             From: "Newton, Philip" <Philip.Newton@datenrevision.de>
             Date: Wed, 7 Aug 2002 11:50:51 +0200
             Message-id: <C9A98F2128EDD411B0920008C7B337A13DCE2B@hamsem01.de.gedas.vwg>
     Branch: perl
	   ! x2p/s2p.PL
____________________________________________________________________________
[ 17710] By: hv                                    on 2002/08/12  11:17:21
        Log: Subject: [PATCH] pod/perlfaq4.pod
             From: Abigail <abigail@foad.org>
             Date: Tue, 30 Jul 2002 09:52:02 -0700 (17:52 BST)
             Message-id: <20020730095202.A6462@ucan.foad.org>
             Add references to Regexp::Common.
     Branch: perl
	   ! pod/perlfaq4.pod
____________________________________________________________________________
[ 17709] By: nick                                  on 2002/08/11  10:25:15
        Log: Fix for [perl #15986] tell/seek misbehave for :crlf
             Test from "Vadim Konovalov" <vkonovalov@peterstar.ru>
             fix by Nick I-S based on study of problem based
             on Vadim's analysis.
     Branch: perlio
	   ! perlio.c t/io/crlf.t
____________________________________________________________________________
[ 17708] By: nick                                  on 2002/08/11  10:22:36
        Log: Integrate mainline.
     Branch: perlio
	  +> pod/perl58delta.pod t/op/dor.t t/op/stash.t
	  !> (integrate 73 files)
____________________________________________________________________________
[ 17707] By: rgs                                   on 2002/08/09  21:23:20
        Log: Subject: New HP-UX itanium servers
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Wed, 07 Aug 2002 13:25:57 +0200
             Message-ID: <20020807132518.FCBF.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! README.hpux
____________________________________________________________________________
[ 17706] By: rgs                                   on 2002/08/09  21:00:41
        Log: Subject: Re: missing lower range in {} regex 
             From: "John P. Linderman" <jpl@research.att.com>
             Date: Fri, 09 Aug 2002 12:48:55 -0400
             Message-ID: <200208091648.MAA77577@raptor.research.att.com>
     Branch: perl
	   ! pod/perlre.pod
____________________________________________________________________________
[ 17705] By: rgs                                   on 2002/08/08  20:57:59
        Log: More tests for the attribute syntax, from the
             attributes manpage.
     Branch: perl
	   ! t/op/attrs.t
____________________________________________________________________________
[ 17704] By: rgs                                   on 2002/08/08  19:47:44
        Log: Fix bug #16080 : an attribute list should end at '}'
     Branch: perl
	   ! t/op/attrs.t toke.c
____________________________________________________________________________
[ 17703] By: hv                                    on 2002/08/08  15:30:12
        Log: Update Changes
     Branch: perl
	   ! Changes patchlevel.h
____________________________________________________________________________
[ 17702] By: hv                                    on 2002/08/08  15:08:57
        Log: Subject: Re: README.aix
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Tue, 30 Jul 2002 13:30:29 +0200
             Message-id: <20020730130812.48B9.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! README.aix
____________________________________________________________________________
[ 17701] By: hv                                    on 2002/08/08  15:06:01
        Log: Subject: [PATCH] Re: pp_sys.c compile failed..
             From: Andy Dougherty <doughera@lafayette.edu>
             Date: Tue, 6 Aug 2002 10:42:07 -0400 (EDT) (15:42 BST)
             Message-id: <Pine.SOL.4.10.10208061024250.5315-100000@maxwell.phys.lafayette.edu>
     Branch: perl
	   ! hints/aix.sh
____________________________________________________________________________
[ 17700] By: hv                                    on 2002/08/08  15:02:57
        Log: Subject: [DOC PATCH] perlipc.pod
             From: Arjen Laarhoven <arjen@nl.demon.net>
             Date: Tue, 6 Aug 2002 14:16:01 +0200
             Message-id: <20020806121601.GK40785@aragorn.noc.nl.demon.net>
     Branch: perl
	   ! pod/perlipc.pod
____________________________________________________________________________
[ 17699] By: hv                                    on 2002/08/08  14:56:56
        Log: Subject: [PATCH] Re: [perl #15898] coredump with variable our
             From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
             Date: Fri, 2 Aug 2002 23:44:21 +0200
             Message-id: <20020802234421.11c62fe6.rgarciasuarez@free.fr>
     Branch: perl
	   ! op.c t/op/attrs.t
____________________________________________________________________________
[ 17698] By: hv                                    on 2002/08/08  14:52:45
        Log: Subject: [perl #16000] Configure -Dstatic_ext=foo builds foo as both static and dynamic
             From: Yitzchak Scott-Thoennes (via RT) <perlbug@perl.org>
             Date: 6 Aug 2002 04:28:15 -0000 (Tue 05:28 BST)
             Message-id: <rt-16000-32913.8.41582281961522@bugs6.perl.org>
     Branch: perl
	   ! Configure
____________________________________________________________________________
[ 17697] By: hv                                    on 2002/08/08  14:49:00
        Log: Subject: Doc patch for Class::Struct under 5.8.0
             From: Damian Conway <damian@conway.org>
             Date: Tue, 30 Jul 2002 23:03:14 +1000
             Message-id: <3D471FCF.1C7C6E6B@conway.org>
     Branch: perl
	   ! lib/Class/Struct.pm
____________________________________________________________________________
[ 17696] By: hv                                    on 2002/08/08  14:44:21
        Log: Subject: Re: [perl #15523] Memory Leak in split with trailing empty elements
             From: Slaven Rezic <slaven.rezic@berlin.de>
             Date: 31 Jul 2002 09:50:06 +0200
             Message-id: <87ado85ob5.fsf@vran.herceg.de>
     Branch: perl
	   ! pp.c
____________________________________________________________________________
[ 17695] By: hv                                    on 2002/08/08  14:40:41
        Log: Subject: [PATCH] Re: [perl #15479] perl 5.8.0 segfault
             From: Rafael Garcia-Suarez <rgarciasuarez@free.fr>
             Date: Fri, 2 Aug 2002 00:13:10 +0200
             Message-id: <20020802001310.7e1dc694.rgarciasuarez@free.fr>
     Branch: perl
	   + t/op/stash.t
	   ! MANIFEST perl.h
____________________________________________________________________________
[ 17694] By: hv                                    on 2002/08/08  14:31:55
        Log: Subject: Re: [RE-PATCH] Not OK: perl v5.8.0 on PA-RISC2.0 11.00
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Wed, 31 Jul 2002 16:04:02 +0200
             Message-id: <20020731155005.4915.H.M.BRAND@hccnet.nl>
     Branch: perl
	   ! hints/hpux.sh
____________________________________________________________________________
[ 17693] By: hv                                    on 2002/08/08  14:25:16
        Log: Subject: [PATCH: lib/ExtUtils/MM_Unix.pm] Be less strict about what's POD.
             From: Abigail <abigail@foad.org>
             Date: Thu, 25 Jul 2002 08:52:52 -0700 (16:52 BST)
             Message-id: <20020725085252.A2703@ucan.foad.org>
     Branch: perl
	   ! lib/ExtUtils/MM_Unix.pm
____________________________________________________________________________
[ 17692] By: hv                                    on 2002/08/08  14:20:05
        Log: Subject: [PATCH] README.jp and README.cn
             From: Autrijus Tang <autrijus@autrijus.org>
             Date: Thu, 25 Jul 2002 07:05:11 +0800
             Message-id: <20020724230511.GA1327@not.autrijus.org>
     Branch: perl
	   ! README.cn README.jp
____________________________________________________________________________
[ 17691] By: hv                                    on 2002/08/08  14:01:50
        Log: Subject: [perl #15398] Usage::pod2usage looks for perldoc in $Config{bin} and not in $Config{scriptdir}
             From: Henrik Tougaard (via RT) <perlbug@perl.org>
             Date: 23 Jul 2002 13:45:49 -0000 (Tue 14:45 BST)
             Message-id: <rt-15398-31095.6.30466042998663@perl>
     Branch: perl
	   ! lib/Pod/Usage.pm
____________________________________________________________________________
[ 17690] By: rgs                                   on 2002/08/07  19:56:42
        Log: Doc fix : the symbol for COPs wasn't documented.
     Branch: perl
	   ! opcode.pl
____________________________________________________________________________
[ 17689] By: rgs                                   on 2002/08/06  20:45:30
        Log: Subject: Re: no warnings 'io';
             From: Nicholas Clark <nick@unfortu.net>
             Date: Sat, 27 Jul 2002 21:49:55 +0100
             Message-ID: <20020727204954.GB5117@Bagpuss.unfortu.net>
             
             Plus a little bit of regression tests.
     Branch: perl
	   ! t/lib/warnings/pp_hot util.c
____________________________________________________________________________
[ 17688] By: rgs                                   on 2002/08/06  20:04:19
        Log: Subject: [PATCH] XS build fix for VMS
             From: "Craig A. Berry" <craigberry@mac.com>
             Date: Sun, 4 Aug 2002 12:13:06 -0500
             Message-ID: <a05111b07b97256e1c335@[172.16.52.1]>
     Branch: perl
	   ! vms/descrip_mms.template
____________________________________________________________________________
[ 17687] By: rgs                                   on 2002/08/06  19:50:12
        Log: PerlIO::scalar wasn't able to read from non-string
             scalar ; now stringifies its argument.
     Branch: perl
	   ! ext/PerlIO/scalar/scalar.xs ext/PerlIO/t/scalar.t
____________________________________________________________________________
[ 17686] By: rgs                                   on 2002/08/06  19:10:51
        Log: More regression tests for $^H and %^H.
             Add a TODO test for eval "" preserving %^H.
     Branch: perl
	   ! t/comp/hints.t
____________________________________________________________________________
[ 17685] By: hv                                    on 2002/08/05  22:42:09
        Log: Subject: Re: mention of "use sort" botched in perlfunc? + PATCH
             From: "John P. Linderman" <jpl@research.att.com>
             Date: Sun, 21 Jul 2002 12:13:32 -0400 (17:13 BST)
             Message-id: <200207211613.MAA69505@raptor.research.att.com>
     Branch: perl
	   ! lib/sort.pm lib/sort.t
____________________________________________________________________________
[ 17684] By: hv                                    on 2002/08/05  22:35:22
        Log: Integrate from perlio: change #17653 fixes bug RT15283
     Branch: perl
	  !> ext/PerlIO/via/via.xs
____________________________________________________________________________
[ 17683] By: hv                                    on 2002/08/05  22:26:45
        Log: Integrate from maint-5.6/macperl via macperl
             Changes 17660, 17661, 17662, 17663, 17664
     Branch: perl
	  !> perl.c
____________________________________________________________________________
[ 17682] By: hv                                    on 2002/08/05  15:04:54
        Log: Subject: Defined-or patch (cleaned up)
             From: "Brent Dax" <brentdax@cpan.org>
             Date: Fri, 26 Jul 2002 05:41:52 -0700 (13:41 BST)
             Message-id: <000001c234a1$d1ca72c0$6501a8c0@deepblue>
     Branch: perl
	   + t/op/dor.t
	   ! MANIFEST embed.h ext/B/B/Deparse.pm ext/Opcode/Opcode.pm
	   ! keywords.h keywords.pl op.c opcode.h opcode.pl opnames.h
	   ! perly.c perly.h perly.y perly_c.diff pod/perlop.pod pp.sym
	   ! pp_ctl.c pp_hot.c pp_proto.h toke.c vms/perly_c.vms
	   ! vms/perly_h.vms
____________________________________________________________________________
[ 17681] By: hv                                    on 2002/08/05  14:41:23
        Log: typo
     Branch: perl
	   ! keywords.h keywords.pl
____________________________________________________________________________
[ 17680] By: hv                                    on 2002/08/05  14:33:39
        Log: warn that keywords.h is generated
     Branch: perl
	   ! keywords.h keywords.pl
____________________________________________________________________________
[ 17679] By: hv                                    on 2002/08/04  23:40:22
        Log: again: #17678 caused test failures in pod2html,
             in which $1 could leak from previous regexp
     Branch: perl
	   ! mg.c
____________________________________________________________________________
[ 17678] By: hv                                    on 2002/08/04  15:34:19
        Log: Subject: Re: [ID 20020704.001] my $foo = $1 won't taint $foo (with use re 'taint')
             From: hv@crypt.org
             Date: Sun, 04 Aug 2002 17:40:30 +0100
             Message-id: <200208041640.g74GeUU25061@crypt.compulink.co.uk>
     Branch: perl
	   ! mg.c t/op/taint.t
____________________________________________________________________________
[ 17677] By: hv                                    on 2002/08/04  15:25:25
        Log: Main branch no longer needs op/taint.t version check.
     Branch: perl
	   ! t/op/taint.t
____________________________________________________________________________
[ 17676] By: hv                                    on 2002/08/04  15:14:09
        Log: Subject: Re: [PATCH] Re: taint news
             From: Rick Delaney <rick.delaney@rogers.com>
             Date: 04 Aug 2002 00:28:58 EDT
             Message-ID: <m3heibs0vp.fsf@cs839290-a.mtth.phub.net.cable.rogers.com>
             Ref: 20020208.005
     Branch: perl
	   ! pp_sys.c
____________________________________________________________________________
[ 17675] By: hv                                    on 2002/08/04  01:48:36
        Log: Fix email address for Kragen Sitaker <kragen@pobox.com>.
     Branch: perl
	   ! AUTHORS
____________________________________________________________________________
[ 17674] By: hv                                    on 2002/08/04  01:30:11
        Log: Subject: [PATCH] AUTHORS
             From: Colin Watson <colinw@zeus.com>
             Date: Thu, 25 Jul 2002 15:54:37 +0100
             Message-id: <20020725145437.GC4921@zeus.com>
     Branch: perl
	   ! AUTHORS
____________________________________________________________________________
[ 17673] By: hv                                    on 2002/08/04  01:27:36
        Log: Subject: [PATCH] AUTHORS
             From: Walt Mankowski <waltman@pobox.com>
             Date: Sat, 20 Jul 2002 22:56:12 -0400 (Sun 03:56 BST)
             Message-id: <20020721025612.GB15958@pobox.com>
     Branch: perl
	   ! AUTHORS
____________________________________________________________________________
[ 17672] By: hv                                    on 2002/08/04  01:25:14
        Log: Subject: Re: mention of "use sort" botched in perlfunc?
             From: Michael G Schwern <schwern@pobox.com>
             Date: Sat, 20 Jul 2002 13:49:58 -0400 (18:49 BST)
             Message-id: <20020720174958.GL362@ool-18b93024.dyn.optonline.net>
     Branch: perl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[ 17671] By: hv                                    on 2002/08/04  01:11:32
        Log: Change version from 5.8.0 to 5.9.0.
     Branch: perl
	   ! Configure NetWare/Makefile NetWare/config_H.wc
	   ! Porting/config.sh Porting/config_H README.win32 config_h.SH
	   ! cygwin/perlld.in epoc/config.sh epoc/createpkg.pl
	   ! hints/dgux.sh installperl lib/ExtUtils/MM_NW5.pm makedef.pl
	   ! patchlevel.h win32/Makefile win32/makefile.mk
	   ! wince/Makefile.ce
____________________________________________________________________________
[ 17670] By: pudge                                 on 2002/07/30  03:19:03
        Log: Silent warnings in MM_MacOS
     Branch: maint-5.8/macperl
	   ! lib/ExtUtils/MM_MacOS.pm
____________________________________________________________________________
[ 17669] By: pudge                                 on 2002/07/30  03:18:47
        Log: Silent warnings in MM_MacOS
     Branch: macperl
	   ! lib/ExtUtils/MM_MacOS.pm
____________________________________________________________________________
[ 17668] By: pudge                                 on 2002/07/30  03:16:52
        Log: Help fixes from Thomas Wegner
     Branch: macperl
	   ! macos/macperl/BuildHelpIndex macos/macperl/MacPerl.podhelp
     Branch: maint-5.6/macperl
	   ! macos/macperl/BuildHelpIndex macos/macperl/MacPerl.podhelp
     Branch: maint-5.8/macperl
	   ! macos/macperl/BuildHelpIndex macos/macperl/MacPerl.podhelp
____________________________________________________________________________
[ 17667] By: pudge                                 on 2002/07/29  20:42:43
        Log: Integrate perl
     Branch: macperl
	  +> Changes5.8 pod/perl58delta.pod
	  !> (integrate 36 files)
____________________________________________________________________________
[ 17666] By: pudge                                 on 2002/07/29  20:04:54
        Log: Integrate from maint-5.6/macperl
             
             Changes 17660, 17661, 17662, 17663, 17664
     Branch: macperl
	   ! macos/ext/Mac/Dialogs/Dialogs.pm macos/lib/Mac/AETE/App.pm
	   ! macos/lib/Mac/AETE/Format/Glue.pm macos/lib/Mac/OSA/Simple.pm
	   ! macos/macperl/Droplets/gluemac.plx perl.c
____________________________________________________________________________
[ 17665] By: pudge                                 on 2002/07/29  19:39:58
        Log: Integrate from maint-5.6/macperl
             
             Changes 17660, 17661, 17662, 17663, 17664
     Branch: maint-5.8/macperl
	   ! macos/ext/Mac/Dialogs/Dialogs.pm macos/lib/Mac/AETE/App.pm
	   ! macos/lib/Mac/AETE/Format/Glue.pm macos/lib/Mac/OSA/Simple.pm
	   ! macos/macperl/Droplets/gluemac.plx perl.c
____________________________________________________________________________
[ 17664] By: pudge                                 on 2002/07/29  19:20:51
        Log: Neglected to include old bugfix from main branch
     Branch: maint-5.6/macperl
	   ! perl.c
____________________________________________________________________________
[ 17663] By: pudge                                 on 2002/07/29  18:25:57
        Log: Count line numbers properly in MacPerl app
     Branch: maint-5.6/macperl
	   ! perl.c
____________________________________________________________________________
[ 17662] By: pudge                                 on 2002/07/29  18:21:16
        Log: Make Mac::Glue work to glue Mac OS X apps under Classic
     Branch: maint-5.6/macperl
	   ! macos/lib/Mac/AETE/App.pm macos/lib/Mac/AETE/Format/Glue.pm
____________________________________________________________________________
[ 17661] By: pudge                                 on 2002/07/29  18:20:46
        Log: gluemac failed with some paths
     Branch: maint-5.6/macperl
	   ! macos/macperl/Droplets/gluemac.plx
____________________________________________________________________________
[ 17660] By: pudge                                 on 2002/07/29  18:20:12
        Log: Fix long-standing bug with popup menus not working in dialogs
     Branch: maint-5.6/macperl
	   ! macos/ext/Mac/Dialogs/Dialogs.pm
____________________________________________________________________________
[ 17659] By: pudge                                 on 2002/07/29  18:19:00
        Log: Update test script
     Branch: maint-5.6/macperl
	   ! macos/MacPerlTests.cmd
____________________________________________________________________________
[ 17658] By: pudge                                 on 2002/07/29  18:18:35
        Log: Portability fixes for blib
             (already in 5.8/5.9)
     Branch: maint-5.6/macperl
	   ! lib/blib.pm
____________________________________________________________________________
[ 17657] By: pudge                                 on 2002/07/29  18:17:54
        Log: Minor test fixes
     Branch: maint-5.6/macperl
	   ! t/lib/filespec.t t/op/magic.t
____________________________________________________________________________
[ 17656] By: ams                                   on 2002/07/28  06:12:33
        Log: Subject: [PATCH] Typo in regcomp.c
             From: Chris Ball <chris@cpan.org>
             Date: 26 Jul 2002 17:49:35 +0100
             Message-Id: <868z3yzb6o.fsf@void.printf.net>
             (With additional tweak to s_reginclasslen.)
     Branch: perl
	   ! regcomp.c
____________________________________________________________________________
[ 17655] By: jhi                                   on 2002/07/25  20:37:16
        Log: Upgrade to Unicode::Collate 0.20.
     Branch: perl
	   ! lib/Unicode/Collate.pm lib/Unicode/Collate/Changes
	   ! lib/Unicode/Collate/README lib/Unicode/Collate/t/test.t
____________________________________________________________________________
[ 17654] By: jhi                                   on 2002/07/23  16:33:52
        Log: Commas, schcommas.
     Branch: perl
	   ! patchlevel.h
____________________________________________________________________________
[ 17653] By: nick                                  on 2002/07/23  07:56:25
        Log: Fix #15283 - binmode() was not passing mode
             to PUSHED method called from PerlIO::via.
     Branch: perlio
	   ! ext/PerlIO/via/via.xs
____________________________________________________________________________
[ 17652] By: nick                                  on 2002/07/23  07:55:03
        Log: Integrate mainline to just past perl5.8.0
     Branch: perlio
	  +> Changes5.8
	  !> Changes MANIFEST
____________________________________________________________________________
[ 17651] By: pudge                                 on 2002/07/23  03:24:35
        Log: Integrate maint-5.6/perl
     Branch: maint-5.6/macperl
	  +> t/win32/longpath.t
	  !> (integrate 35 files)
____________________________________________________________________________
[ 17650] By: gsar                                  on 2002/07/22  15:27:48
        Log: create macperl-5.8 branch
     Branch: maint-5.8/macperl
	  +> (branch 3480 files)
____________________________________________________________________________
[ 17649] By: jhi                                   on 2002/07/21  08:44:34
        Log: Because of #17429.
     Branch: maint-5.8/perl
	   ! pod/perldelta.pod
____________________________________________________________________________
[ 17648] By: chip                                  on 2002/07/19  22:51:19
        Log: Update Changes.  (Including incorrect change #.)
     Branch: maint-5.005/perl
	   ! Changes
____________________________________________________________________________
[ 17647] By: chip                                  on 2002/07/19  22:47:57
        Log: ensure that hashes never attempt to malloc with a negative size
             From: Hugo <hv@crypt.compulink.co.uk>
             Subject: Re: [ID 20000421.002] Math::BigInt out of memory?
     Branch: maint-5.005/perl
	   ! hv.c
____________________________________________________________________________
[ 17646] By: chip                                  on 2002/07/19  20:15:23
        Log: Update Changes in preparation for 5.005_04.
     Branch: maint-5.005/perl
	   ! Changes
____________________________________________________________________________
[ 17645] By: gsar                                  on 2002/07/19  19:29:57
        Log: create maint-5.8 branch from perl/...@17638
     Branch: maint-5.8/perl
	  +> (branch 2829 files)
____________________________________________________________________________
[ 17644] By: jhi                                   on 2002/07/19  18:55:18
        Log: Copy perldelta as perl58delta, purge the perldelta.
     Branch: perl
	   + pod/perl58delta.pod
	   ! MANIFEST pod/perldelta.pod
____________________________________________________________________________
[ 17642] By: jhi                                   on 2002/07/19  16:37:39
        Log: Update Changes; mainly to get the DEVELNNNNN stamp back in business.
     Branch: perl
	   ! Changes patchlevel.h
____________________________________________________________________________
[ 17641] By: jhi                                   on 2002/07/19  16:31:08
        Log: Integrate perlio (no changes, but that's fine).
     Branch: perl
	  !> embed.fnc perl.h
____________________________________________________________________________
[ 17640] By: nick                                  on 2002/07/19  07:09:37
        Log: Integrate mainline@17638, apply couple
             of whitespace edits so matches perl5.8.0 exactly.
     Branch: perlio
	   ! embed.fnc perl.h
	  !> AUTHORS Changes Configure INSTALL NetWare/Makefile
	  !> NetWare/t/NWScripts.pl Porting/config.sh Porting/config_H
	  !> lib/File/stat.pm patchlevel.h pod/perldelta.pod
	  !> pod/perlfunc.pod pod/perlhist.pod pod/perlthrtut.pod
	  !> pod/perltoc.pod pod/perlvar.pod util.c
____________________________________________________________________________
[ 17639] By: jhi                                   on 2002/07/19  00:47:18
        Log: It's all yours, Hugo.
     Branch: perl
	   + Changes5.8
	   ! Changes MANIFEST