summaryrefslogtreecommitdiff
path: root/Changes
blob: 2a5f261e8864625b7c124bea5ae15f80e6d82eec (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
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
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
perlhack.pod for the details.


			   ---------------
			    CAST AND CREW
			   ---------------

To give due honor to those who have made Perl what is is today,
here are some of the more common names in the Changes file, and their
current addresses (as of February 2000):

    Gisle Aas           <gisle@aas.no>
    Abigail             <abigail@delanet.com>
    Kenneth Albanowski  <kjahds@kjahds.com>
    Russ Allbery        <rra@stanford.edu>
    Brad Appleton       <bradapp@enteract.com>
    Greg Bacon          <gbacon@itsc.uah.edu>
    Robin Barker        <rmb1@cise.npl.co.uk>
    Vishal Bhatia       <vishal@gol.com>
    Spider Boardman     <spider@orb.nashua.nh.us>
    Tom Christiansen    <tchrist@perl.com>
    Mark-Jason Dominus  <mjd@plover.com>
    Jan Dubois          <jand@activestate.com>
    Dominic Dunlop      <domo@computer.org>
    Eric Fifer          <efifer@sanwaint.com>
    Hallvard B Furuseth <h.b.furuseth@usit.uio.no>
    M. J. T. Guy        <mjtg@cus.cam.ac.uk>
    Jarkko Hietaniemi   <jhi@iki.fi>
    Tom Hughes          <tom@compton.nu>
    Nick Ing-Simmons    <nik@tiuk.ti.com>
    Andreas Koenig      <a.koenig@mind.de>
    Douglas Lankshear   <dougl@activestate.com>
    Doug MacEachern     <dougm@opengroup.org>
    Raphael Manfredi    <Raphael.Manfredi@st.com>
    Paul Marquess       <Paul.Marquess@btinternet.com>
    Stephen McCamant    <alias@mcs.com>
    Laszlo Molnar       <laszlo.molnar@eth.ericsson.se>
    Hans Mulder         <hansmu@xs4all.nl>
    Chris Nandor        <pudge@pobox.com>
    Matthias Neeracher  <neeri@iis.ee.ethz.ch>
    Jeff Okamoto        <okamoto@hpcc123.corp.hp.com>
    Ulrich Pfeifer      <pfeifer@charly.informatik.uni-dortmund.de>
    Tom Phoenix         <rootbeer@teleport.com>
    Joshua Pritikin     <joshua.pritikin@db.com>
    Peter Prymmer       <pvhp@forte.com>
    Norbert Pueschel    <pueschel@imsdd.meb.uni-bonn.de>
    Dean Roehrich       <roehrich@cray.com>
    Hugo van der Sanden <hv@crypt0.demon.co.uk>
    Michael G Schwern   <schwern@pobox.com>
    Roderick Schertler  <roderick@argon.org>
    Kurt D. Starsinic   <kstar@chapin.edu>
    Benjamin Stuhl      <sho_pi@hotmail.com>
    Dan Sugalski        <sugalskd@osshe.edu>
    Nathan Torkington   <gnat@frii.com>
    Larry W. Virden     <lvirden@cas.org>
    Johan Vromans       <jvromans@squirrel.nl>
    Ilya Zakharevich    <ilya@math.ohio-state.edu>

And the Keepers of the Patch Pumpkin:

    Charles Bailey      <bailey@newman.upenn.edu>
    Graham Barr         <gbarr@ti.com>
    Malcolm Beattie     <mbeattie@sable.ox.ac.uk>
    Tim Bunce           <Tim.Bunce@ig.co.uk>
    Andy Dougherty      <doughera@lafcol.lafayette.edu>
    Gurusamy Sarathy    <gsar@activestate.com>
    Chip Salzenberg     <chip@perl.com>

And, of course, the Author of Perl:

    Larry Wall     	<larry@wall.org>


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)


--------------
Version v5.7.0		Development release working toward v5.8
--------------

____________________________________________________________________________
[  6380] By: gsar                                  on 2000/07/12  07:31:00
        Log: get sprintf.t to adjust properly for 3-digit exponents
     Branch: perl
	   ! t/op/sprintf.t
____________________________________________________________________________
[  6379] By: gsar                                  on 2000/07/12  06:40:04
        Log: change#6174 needs corresponding change in win32/config_h.PL,
             which grovels through config_h.SH to find the config.h name
     Branch: perl
	   ! win32/config_h.PL
____________________________________________________________________________
[  6378] By: jhi                                   on 2000/07/12  05:03:59
        Log: Do the cc sanity check both before the hints and
             after the cc selction.
     Branch: cfgperl
	   ! Configure config_h.SH
     Branch: metaconfig
	   ! U/modified/Oldconfig.U U/modified/cc.U
     Branch: metaconfig/U/perl
	   + Checkcc.U
____________________________________________________________________________
[  6377] By: jhi                                   on 2000/07/12  02:49:22
        Log: Fix nits noticed by Boston.pm.
     Branch: cfgperl
	   ! pod/perlre.pod
____________________________________________________________________________
[  6376] By: jhi                                   on 2000/07/11  21:22:13
        Log: Configure cosmetics and perldelta.
     Branch: cfgperl
	   ! Configure config_h.SH pod/perldelta.pod
     Branch: metaconfig
	   ! U/modified/cc.U
____________________________________________________________________________
[  6375] By: gsar                                  on 2000/07/11  21:17:35
        Log: windows build tweaks (op/sprintf.t still fails tests 120-121, 149)
     Branch: perl
	   ! t/op/sprintf.t win32/Makefile win32/makefile.mk
	   ! win32/win32sck.c
____________________________________________________________________________
[  6374] By: gsar                                  on 2000/07/11  20:48:50
        Log: tweak for build failure under multiplicity
     Branch: perl
	   ! toke.c
____________________________________________________________________________
[  6373] By: gsar                                  on 2000/07/11  20:37:23
        Log: integrate cfgperl changes#6325..6373 into mainline
             (NOTE: today's batch of integrations still untested)
     Branch: perl
	  +> ext/DynaLoader/hints/netbsd.pl
	   ! Changes
	  !> (integrate 26 files)
____________________________________________________________________________
[  6372] By: jhi                                   on 2000/07/11  20:30:36
        Log: Reintroduce perlbook (updated for Mk III), introduce perlposix-bc,
             regen perltoc.
     Branch: cfgperl
	   + pod/perlbook.pod
	   ! MANIFEST pod/Makefile.SH pod/buildtoc.PL pod/perl.pod
	   ! pod/perltoc.pod
____________________________________________________________________________
[  6371] By: jhi                                   on 2000/07/11  20:08:56
        Log: Minor cleanups on the booklist.
     Branch: cfgperl
	   ! pod/perlfaq2.pod
____________________________________________________________________________
[  6370] By: jhi                                   on 2000/07/11  19:31:13
        Log: mjd's tr patches "broke" tr/z-Z/z-Z/
     Branch: cfgperl
	   ! t/pragma/overload.t
____________________________________________________________________________
[  6369] By: gsar                                  on 2000/07/11  19:27:48
        Log: integrate cfgperl changes#6293..6324 into mainline
     Branch: perl
	  +> lib/Win32.pod lib/lib_pm.PL pod/Makefile.SH pod/buildtoc.PL
	   - lib/lib.pm.PL pod/Makefile pod/Win32.pod pod/buildtoc
	  !> (integrate 30 files)
____________________________________________________________________________
[  6368] By: gsar                                  on 2000/07/11  19:18:57
        Log: skip integrate of problematic change#6292 from cfgperl into mainline
     Branch: perl
	  !> pp_hot.c
____________________________________________________________________________
[  6367] By: gsar                                  on 2000/07/11  19:17:21
        Log: integrate cfgperl changes#6288..6290 into mainline
     Branch: perl
	  !> lib/File/Spec/Functions.pm lib/File/Spec/OS2.pm
____________________________________________________________________________
[  6366] By: gsar                                  on 2000/07/11  19:11:18
        Log: integrate cfgperl changes#6268..6282 into mainline
     Branch: perl
	  !> (integrate 30 files)
____________________________________________________________________________
[  6365] By: gsar                                  on 2000/07/11  18:57:00
        Log: delete new accidentally branched file
     Branch: perl
	   - t/op/method2entersub.t
____________________________________________________________________________
[  6364] By: gsar                                  on 2000/07/11  18:55:13
        Log: skip integrate of change#6267 from cfgperl into mainline (the
             method call optimization is flawed without additional hints
             from user about immutableness of @ISA and no runtime method
             definitions)
     Branch: perl
	  +> t/op/method2entersub.t
	  !> MANIFEST embed.pl lib/ExtUtils/Install.pm lib/base.pm op.c
	  !> perl.h t/op/sprintf.t xsutils.c
____________________________________________________________________________
[  6363] By: gsar                                  on 2000/07/11  18:49:43
        Log: integrate cfgperl changes#6261..6266 into mainline
     Branch: perl
	  !> README.epoc cygwin/Makefile.SHs doop.c epoc/config.sh
	  !> epoc/createpkg.pl epoc/epocish.c epoc/epocish.h
	  !> ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
	  !> hints/bsdos.sh pod/perldiag.pod t/comp/require.t toke.c
____________________________________________________________________________
[  6362] By: gsar                                  on 2000/07/11  18:43:26
        Log: integrate cfgperl changes#6252..6260 into mainline
     Branch: perl
	  !> MANIFEST doop.c embed.h embed.pl embedvar.h lib/Exporter.pm
	  !> lib/IPC/Open3.pm objXSUB.h op.c pod/perlfunc.pod pp.c
	  !> pp_proto.h proto.h sv.c t/op/my_stash.t t/op/pack.t t/op/tr.t
	  !> t/pragma/constant.t t/pragma/warn/op t/pragma/warn/regcomp
____________________________________________________________________________
[  6361] By: gsar                                  on 2000/07/11  18:37:12
        Log: skip integrate of problematic change#6251 from cfgperl into mainline
     Branch: perl
	  !> lib/Exporter.pm
____________________________________________________________________________
[  6360] By: gsar                                  on 2000/07/11  18:34:56
        Log: integrate cfgperl change#6250 into mainline
     Branch: perl
	  +> t/op/my_stash.t
	  !> MANIFEST embed.pl proto.h toke.c
____________________________________________________________________________
[  6359] By: gsar                                  on 2000/07/11  18:21:19
        Log: integrate cfgperl changes#6242..6249 into mainline
     Branch: perl
	  !> embed.h embed.pl embedvar.h ext/DynaLoader/DynaLoader_pm.PL
	  !> gv.c lib/File/Spec.pm lib/IPC/Open3.pm objXSUB.h perlapi.c
	  !> perlapi.h pod/perlapi.pod pod/perlfunc.pod pod/perlintern.pod
	  !> pp_proto.h proto.h sv.c t/lib/filefunc.t t/lib/filespec.t
	  !> t/lib/peek.t utf8.c
____________________________________________________________________________
[  6358] By: gsar                                  on 2000/07/11  18:15:45
        Log: skip integrate of problematic change#6241 from cfgperl into mainline
     Branch: perl
	  !> regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
____________________________________________________________________________
[  6357] By: jhi                                   on 2000/07/11  18:15:16
        Log: Fix for
             Subject: [ID 20000711.005] spurious uninit warning with msgrcv()
             From: Roderick Schertler <roderick@argon.org> 
             Date: Tue, 11 Jul 2000 13:55:05 -0400 
             Message-Id: <200007111755.NAA05077@jones.argon.org> 
     Branch: cfgperl
	   ! doio.c
____________________________________________________________________________
[  6356] By: jhi                                   on 2000/07/11  18:12:51
        Log: Typo in #6341.
     Branch: cfgperl
	   ! pp_hot.c
____________________________________________________________________________
[  6355] By: gsar                                  on 2000/07/11  18:12:10
        Log: integrate cfgperl changes#6231..6240 into mainline
     Branch: perl
	  +> pod/perlutil.pod
	  !> (integrate 35 files)
____________________________________________________________________________
[  6354] By: jhi                                   on 2000/07/11  18:04:34
        Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive, take 2
             From: Dominic Dunlop <domo@computer.org> 
             Date: Tue, 11 Jul 2000 12:27:33 +0200 
             Message-Id: <p04320405b590a14d4650@[192.168.1.4]> 
             
             Replaces change #6268.
     Branch: cfgperl
	   ! t/op/sprintf.t
____________________________________________________________________________
[  6353] By: gsar                                  on 2000/07/11  17:59:51
        Log: skip integrate of problematic change#6230 from cfgperl into mainline
             (a later version of File::Spec is already in mainline)
     Branch: perl
	  !> lib/File/Spec.pm lib/File/Spec/Functions.pm
	  !> lib/File/Spec/OS2.pm t/lib/filefunc.t t/lib/filespec.t
____________________________________________________________________________
[  6352] By: gsar                                  on 2000/07/11  17:57:48
        Log: integrate cfgperl changes#6224..6229 into mainline
     Branch: perl
	  +> lib/lib.pm.PL
	   - lib/lib.pm
	  !> MANIFEST Makefile.SH README.hpux embed.pl ext/Socket/Socket.pm
	  !> lib/English.pm op.c t/lib/english.t
____________________________________________________________________________
[  6351] By: gsar                                  on 2000/07/11  17:50:10
        Log: skip integrate of problematic change#6223 from cfgperl into mainline
     Branch: perl
	  !> doio.c
____________________________________________________________________________
[  6350] By: gsar                                  on 2000/07/11  17:48:28
        Log: integrate cfgperl changes#6220..6222 into mainline
     Branch: perl
	  !> doop.c embed.pl lib/Pod/Usage.pm makedef.pl pod/perlop.pod
	  !> toke.c utf8.c win32/win32.h
____________________________________________________________________________
[  6349] By: gsar                                  on 2000/07/11  17:46:13
        Log: skip integrate of problematic changes#6218..6219 from cfgperl into
             mainline
     Branch: perl
	  !> bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
	  !> ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
	  !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
____________________________________________________________________________
[  6348] By: jhi                                   on 2000/07/11  17:45:49
        Log: README.posix-bc podified from Thomas Dorner.
     Branch: cfgperl
	   ! README.posix-bc
____________________________________________________________________________
[  6347] By: gsar                                  on 2000/07/11  17:42:04
        Log: integrate cfgperl change#6217 into mainline
     Branch: perl
	  !> Configure config_h.SH doio.c embed.h embed.pl embedvar.h gv.c
	  !> intrpvar.h objXSUB.h perl.c perlapi.h pp.c pp_ctl.c proto.h
	  !> sv.h util.c util.h vmesa/vmesa.c win32/win32.c
____________________________________________________________________________
[  6346] By: gsar                                  on 2000/07/11  17:39:37
        Log: skip integrate of problematic changes#6211..6212 from cfgperl into
             mainline
     Branch: perl
	  !> embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm ext/B/defsubs_h.PL
	  !> ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
	  !> ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
	  !> perlapi.h pod/perlapi.pod
____________________________________________________________________________
[  6345] By: gsar                                  on 2000/07/11  17:36:42
        Log: integrate cfgperl changes#6207..6210 into mainline
     Branch: perl
	  !> doio.c embed.h embed.pl gv.c intrpvar.h objXSUB.h perl.c pp.c
	  !> pp_ctl.c proto.h sv.h util.c vmesa/vmesa.c win32/win32.c
____________________________________________________________________________
[  6344] By: gsar                                  on 2000/07/11  17:31:20
        Log: skip integrate of problematic changes#6204..6206 from cfgperl into
             mainline
     Branch: perl
	  !> (integrate 40 files)
____________________________________________________________________________
[  6343] By: gsar                                  on 2000/07/11  17:19:08
        Log: integrate cfgperl changes#6174..6203 into mainline (first of several)
     Branch: perl
	  +> Makefile.micro README.micro Todo.micro uconfig.h uconfig.sh
	   ! Changes
	  !> (integrate 34 files)
____________________________________________________________________________
[  6342] By: jhi                                   on 2000/07/11  16:05:48
        Log: Subject: [ID 20000710.002] fatal error or memory loss when deleting symbols in evaled code with syntax errors
             To: perl5-porters@perl.org
             From: Karsten Sperling <spiff@phreax.net>
             Date: Mon, 10 Jul 2000 15:12:52 +0200
             Message-Id: <200007101315.e6ADFrg21041@chthon.perl.com>
     Branch: cfgperl
	   ! lib/Symbol.pm
____________________________________________________________________________
[  6341] By: jhi                                   on 2000/07/11  15:59:23
        Log: Subject: Re: [ID 20000704.002] [PATCH] memory leak with debug / anon subs
             From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
             Message-Id: <E13AbRE-00009T-00@libra.cus.cam.ac.uk>
             Date: Fri, 07 Jul 2000 17:57:16 +0100
     Branch: cfgperl
	   ! pp_hot.c
____________________________________________________________________________
[  6340] By: jhi                                   on 2000/07/11  15:55:47
        Log: Subject: Re: format bug report  [Patch]
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Wed, 05 Jul 2000 13:12:52 +0200
             Message-Id: <20000705130745.67BF.H.M.BRAND@hccnet.nl>
             
             Subject: Re: format bug report  [Patch]
             From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
             Date: Wed, 05 Jul 2000 14:10:01 +0200
             Message-Id: <20000705140837.73C2.H.M.BRAND@hccnet.nl>
     Branch: cfgperl
	   ! t/op/write.t toke.c
____________________________________________________________________________
[  6339] By: jhi                                   on 2000/07/11  13:54:09
        Log: Be less forgiving about ambiguous and illegal tr ranges.
             Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Tue, 04 Jul 2000 10:00:12 -0400
             Message-ID: <20000704140012.17772.qmail@plover.com>
             
             Subject: Re: [ID 20000703.001] tr/// operator understands multiple hyphens in a bizarre way 
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Wed, 05 Jul 2000 09:37:36 -0400
             Message-ID: <20000705133736.27293.qmail@plover.com>
     Branch: cfgperl
	   ! pod/perldelta.pod pod/perldiag.pod t/op/tr.t toke.c
____________________________________________________________________________
[  6338] By: jhi                                   on 2000/07/11  13:31:24
        Log: Subject: [PATCH] Re: "%#p" format specifier: document and test or not?
             From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
             Date: Tue, 11 Jul 2000 13:50:51 +0100
             Message-Id: <E13BzUx-00033c-00@libra.cus.cam.ac.uk>
     Branch: cfgperl
	   ! sv.c
____________________________________________________________________________
[  6337] By: jhi                                   on 2000/07/11  13:29:14
        Log: Subject: [PATCH] [ID 20000701.002] Regular Expressions Not Unsetting $1 Vars When Backtracking 
             From: Hugo <hv@crypt.compulink.co.uk>
             Date: Tue, 11 Jul 2000 12:44:50 +0100
             Message-Id: <200007111144.MAA04446@crypt.compulink.co.uk>
     Branch: cfgperl
	   ! regexec.c t/op/re_tests
____________________________________________________________________________
[  6336] By: jhi                                   on 2000/07/11  13:26:47
        Log: Subject: [PATCH cfgperl] $& segfaults if you trick it
             From: simon@brecon.co.uk (Simon Cozens)
             Date: 7 Jul 2000 11:26:09 GMT
             Message-ID: <slrn8mbfif.ead.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! mg.c
____________________________________________________________________________
[  6335] By: jhi                                   on 2000/07/11  13:23:37
        Log: Subject: [ID 20000705.002] problem with perl 5.6.0 on NetBSD/sparc
             From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
             Date: Wed, 5 Jul 2000 14:56:43 +0200 (MET DST)
             Message-Id: <Pine.GSO.4.10.10007051452330.29215-100000@rfhpc8320.fh-regensburg.de>
     Branch: cfgperl
	   + ext/DynaLoader/hints/netbsd.pl
	   ! MANIFEST ext/DynaLoader/hints/openbsd.pl
____________________________________________________________________________
[  6334] By: jhi                                   on 2000/07/11  13:20:38
        Log: Subject: PATCH perlguts.pod: Document D and d magic types
             From: mjd@plover.com
             Date: 5 Jul 2000 18:01:51 -0000
             Message-ID: <20000705180151.29413.qmail@plover.com>
     Branch: cfgperl
	   ! pod/perlguts.pod
____________________________________________________________________________
[  6333] By: jhi                                   on 2000/07/11  13:15:51
        Log: Precedence goof, fix based on
             Subject: [PATCH 5.6.0] op/taint.t continues on failed shmget()
             From: Hugo <hv@crypt.compulink.co.uk>
             Date: Tue, 11 Jul 2000 12:52:38 +0100
             Message-Id: <200007111152.MAA05488@crypt.compulink.co.uk>
     Branch: cfgperl
	   ! t/op/taint.t
____________________________________________________________________________
[  6332] By: jhi                                   on 2000/07/11  12:40:17
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> win32/win32sck.c
____________________________________________________________________________
[  6331] By: jhi                                   on 2000/07/10  20:14:16
        Log: Sprinkle ldlibpath.
     Branch: cfgperl
	   ! pod/Makefile.SH
____________________________________________________________________________
[  6330] By: jhi                                   on 2000/07/10  17:54:49
        Log: More POSIX.pod tweaks.
     Branch: cfgperl
	   ! ext/POSIX/POSIX.pod
____________________________________________________________________________
[  6329] By: jhi                                   on 2000/07/10  14:02:12
        Log: Reorder perl.pod once more.
     Branch: cfgperl
	   ! pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
____________________________________________________________________________
[  6328] By: gsar                                  on 2000/07/10  07:06:00
        Log: accept() leaks memory on windows due to incorrect ordering of
             closesocket() and fclose() calls
     Branch: perl
	   ! win32/win32sck.c
____________________________________________________________________________
[  6327] By: gsar                                  on 2000/07/10  06:49:17
        Log: winsock options weren't being set in all threads under ithreads
             (caused send()s from second and subsequent threads to fail)
     Branch: perl
	   ! win32/win32sck.c
____________________________________________________________________________
[  6326] By: jhi                                   on 2000/07/08  02:45:40
        Log: Fix a nit spotted by 64bit IRIX compilation: a (64-bit) pointer
             was cast to an unsigned (32-bit) integer with wild abandon.
     Branch: cfgperl
	   ! ext/Devel/DProf/DProf.xs
____________________________________________________________________________
[  6325] By: jhi                                   on 2000/07/07  18:50:33
        Log: Remove perlbook, update perlfaq book listing,
             rearrange perl.pod, regenerate perltoc.
     Branch: cfgperl
	   - pod/perlbook.pod
	   ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perldiag.pod
	   ! pod/perlfaq2.pod pod/perltoc.pod
____________________________________________________________________________
[  6324] By: jhi                                   on 2000/07/07  14:03:40
        Log: Fix the alignment problem in Crays ([ID 20000612.002]).
     Branch: cfgperl
	   ! sv.h toke.c
____________________________________________________________________________
[  6323] By: jhi                                   on 2000/07/06  16:03:55
        Log: Fix complaints of buildtoc.
     Branch: cfgperl
	   + lib/Win32.pod
	   - pod/Win32.pod
	   ! MANIFEST pod/buildtoc.PL pod/perl.pod pod/perltoc.pod
____________________________________________________________________________
[  6322] By: jhi                                   on 2000/07/06  15:15:52
        Log: Add =head1 NAMEs so that buildtoc is happy.
             (The CGI::Util nit reported to Lincoln.)
     Branch: cfgperl
	   ! ext/B/B/Stash.pm lib/CGI/Util.pm lib/warnings/register.pm
	   ! pod/perltoc.pod
____________________________________________________________________________
[  6321] By: jhi                                   on 2000/07/06  03:16:04
        Log: Config is being used.
     Branch: cfgperl
	   ! t/op/method.t
____________________________________________________________________________
[  6320] By: jhi                                   on 2000/07/06  03:13:13
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> lib/perl5db.pl win32/perllib.c win32/vdir.h win32/win32sck.c
____________________________________________________________________________
[  6319] By: jhi                                   on 2000/07/06  03:11:46
        Log: Autogenerate pod/Makefile and pod/buildtoc.
             buildtoc also checks whether the existin pods are
             mentioned in MANIFEST and perl.pod, and vice versa.
             (None of the thusly found discrepancies fixed yet.)
             roffitall also needs to be autogenerated similarly but it
             seems so badly out of date that I didn't touch it yet.
     Branch: cfgperl
	   + pod/Makefile.SH pod/buildtoc.PL
	   - pod/Makefile pod/buildtoc
	   ! MANIFEST Makefile.SH pod/perl.pod pod/perltoc.pod
____________________________________________________________________________
[  6318] By: gsar                                  on 2000/07/05  22:10:54
        Log: fix UNC path handling on Windows under ithreads, and chdir()
             return value when given a non-existent directory
     Branch: perl
	   ! win32/vdir.h
____________________________________________________________________________
[  6317] By: gsar                                  on 2000/07/05  22:08:19
        Log: winsock cleanup never done on Windows (leads to handle leaks)
     Branch: perl
	   ! win32/perllib.c win32/win32sck.c
____________________________________________________________________________
[  6316] By: gsar                                  on 2000/07/05  22:06:19
        Log: some debugger output does not go to the socket when RemotePort is set
     Branch: perl
	   ! lib/perl5db.pl
____________________________________________________________________________
[  6315] By: jhi                                   on 2000/07/05  00:25:21
        Log: Integrate with Sarathy, preliminary fix for unicos
             alignment problems in [ID 20000612.002] Perl problem on Cray system.
     Branch: cfgperl
	   ! sv.h
	  !> pp_hot.c
____________________________________________________________________________
[  6314] By: gsar                                  on 2000/07/04  23:34:02
        Log: tyop in change#6306
     Branch: perl
	   ! pp_hot.c
____________________________________________________________________________
[  6313] By: jhi                                   on 2000/07/04  22:14:38
        Log: Multiline string literals ENONPORTABLE.
     Branch: cfgperl
	   ! pp_hot.c
____________________________________________________________________________
[  6312] By: jhi                                   on 2000/07/04  20:34:44
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> pod/perldelta.pod pod/perldiag.pod pp_hot.c t/lib/b.t
	  !> t/op/method.t
____________________________________________________________________________
[  6311] By: jhi                                   on 2000/07/04  20:30:56
        Log: More POSIX.pod embellishment.
     Branch: cfgperl
	   ! ext/POSIX/POSIX.pod
____________________________________________________________________________
[  6310] By: gsar                                  on 2000/07/04  17:28:48
        Log: b.t fails under OS/2 (from Yitzchak Scott-Thoennes)
     Branch: perl
	   ! t/lib/b.t
____________________________________________________________________________
[  6309] By: jhi                                   on 2000/07/04  17:22:18
        Log: The #6308 required a little bit more.
     Branch: cfgperl
	   ! Makefile.SH win32/Makefile
____________________________________________________________________________
[  6308] By: jhi                                   on 2000/07/04  16:35:24
        Log: Rename lib.pm.PL to lib_pm.PL to keep the 8.3 people happy.
     Branch: cfgperl
	   + lib/lib_pm.PL
	   - lib/lib.pm.PL
	   ! MANIFEST Makefile.SH
____________________________________________________________________________
[  6307] By: jhi                                   on 2000/07/04  16:28:58
        Log: Win32 patches for cfgperl from Sarathy.
     Branch: cfgperl
	   ! doio.c doop.c embed.h embed.pl global.sym gv.c makedef.pl
	   ! objXSUB.h op.c perlapi.c pp.c pp_ctl.c pp_hot.c proto.h
	   ! thread.h toke.c util.c win32/Makefile win32/win32.c
____________________________________________________________________________
[  6306] By: gsar                                  on 2000/07/04  16:28:40
        Log: better diagnostic on Frob->stuff() when Frob:: doesn't exist
             (from Richard Soderberg <rs@oregonnet.com>)
     Branch: perl
	   ! pod/perldelta.pod pod/perldiag.pod pp_hot.c t/op/method.t
____________________________________________________________________________
[  6305] By: jhi                                   on 2000/07/04  16:24:24
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> embed.h embed.pl global.sym lib/File/Spec/Mac.pm
	  !> lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
	  !> lib/File/Spec/Win32.pm objXSUB.h perlapi.c pod/perldiag.pod
	  !> proto.h win32/win32.c
____________________________________________________________________________
[  6304] By: gsar                                  on 2000/07/04  16:17:24
        Log: missing perldiag entry for unpack("w",...) diagnostic (from
             Andreas Koenig)
     Branch: perl
	   ! pod/perldiag.pod
____________________________________________________________________________
[  6303] By: gsar                                  on 2000/07/04  16:14:44
        Log: remove rel2abs prototypes (from Barrie Slaymaker)
     Branch: perl
	   ! lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
	   ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
____________________________________________________________________________
[  6302] By: gsar                                  on 2000/07/04  04:59:35
        Log: adjust change#6299
     Branch: perl
	   ! embed.h embed.pl global.sym objXSUB.h perlapi.c proto.h
	   ! win32/win32.c
____________________________________________________________________________
[  6301] By: jhi                                   on 2000/07/04  04:50:07
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> embed.h embed.pl embedvar.h global.sym hv.c intrpvar.h
	  !> makedef.pl objXSUB.h perl.c perl.h perlapi.c perlapi.h
	  !> pp_hot.c proto.h sv.c t/io/argv.t win32/win32.c
____________________________________________________________________________
[  6300] By: gsar                                  on 2000/07/04  04:42:09
        Log: PERL_OBJECT build tweak
     Branch: perl
	   ! perl.h
____________________________________________________________________________
[  6299] By: gsar                                  on 2000/07/04  04:37:00
        Log: fix memory leak on Windows (PL_sys_intern contents were never
             freed)
     Branch: perl
	   ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
	   ! perlapi.c proto.h win32/win32.c
____________________________________________________________________________
[  6298] By: gsar                                  on 2000/07/04  04:15:59
        Log: fix large memory leak that has been around for ever, masked by
             -DPURIFY (most of the arenas were never freed!)
     Branch: perl
	   ! embedvar.h global.sym hv.c intrpvar.h perl.c perlapi.h sv.c
____________________________________________________________________________
[  6297] By: gsar                                  on 2000/07/04  04:07:46
        Log: fix ~320 byte memory leak (psig_{ptr,name} tables were never freed)
     Branch: perl
	   ! perl.c
____________________________________________________________________________
[  6296] By: jhi                                   on 2000/06/30  18:28:37
        Log: Elaborate POSIX.pod.  Still needs work.
     Branch: cfgperl
	   ! ext/POSIX/POSIX.pod
____________________________________________________________________________
[  6295] By: jhi                                   on 2000/06/30  14:58:18
        Log: Point to perlipc for more SysV IPC examples.
     Branch: cfgperl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[  6294] By: gsar                                  on 2000/06/30  14:47:45
        Log: slurp mode fix in change#4736 still not quite right
     Branch: perl
	   ! pp_hot.c t/io/argv.t
____________________________________________________________________________
[  6293] By: jhi                                   on 2000/06/30  12:02:55
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> cop.h pp_ctl.c pp_hot.c t/op/args.t
____________________________________________________________________________
[  6292] By: jhi                                   on 2000/06/30  12:01:11
        Log: From: simon@brecon.co.uk (Simon Cozens)
             Subject: UTF8 concat
             Date: 30 Jun 2000 06:13:25 GMT
             Message-ID: <slrn8loek5.9ai.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! pp_hot.c
____________________________________________________________________________
[  6291] By: gsar                                  on 2000/06/30  04:37:33
        Log: dounwind() may cause POPSUB() to diddle the wrong PL_curpad
             when @_ is modified, causing coredumps
     Branch: perl
	   ! cop.h pp_ctl.c pp_hot.c t/op/args.t
____________________________________________________________________________
[  6290] By: jhi                                   on 2000/06/30  02:21:44
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> vms/vms.c vms/vmsish.h
____________________________________________________________________________
[  6289] By: jhi                                   on 2000/06/30  02:21:02
        Log: Check VERSIONs.
     Branch: cfgperl
	   ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
	   ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
	   ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
____________________________________________________________________________
[  6288] By: jhi                                   on 2000/06/30  02:18:52
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> ext/Opcode/Opcode.xs lib/File/Spec.pm
	  !> lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
	  !> lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
	  !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm pod/perlembed.pod
____________________________________________________________________________
[  6287] By: gsar                                  on 2000/06/30  02:17:08
        Log: integrate vmsperl changes into mainline
     Branch: perl
	  !> vms/vms.c vms/vmsish.h
____________________________________________________________________________
[  6285] By: gsar                                  on 2000/06/30  02:05:28
        Log: localize %INC in a Safe compartment so that use/require work
             (many other magic globals probably need similar treatment)
     Branch: perl
	   ! ext/Opcode/Opcode.xs
____________________________________________________________________________
[  6284] By: gsar                                  on 2000/06/30  01:54:54
        Log: tweak perlembed for multiplicity/usethreads sanity; correct notes
             about Windows
     Branch: perl
	   ! pod/perlembed.pod
____________________________________________________________________________
[  6283] By: jhi                                   on 2000/06/30  01:50:10
        Log: Subject: [PATCH bleedperl] File::Spec 0.82 beta
             From: Barrie Slaymaker <barries@jester.slaysys.com>
             Date: Wed, 28 Jun 2000 11:35:29 -0400
             Message-Id: <200006281535.LAA21095@jester.slaysys.com>
     Branch: perl
	   ! lib/File/Spec.pm lib/File/Spec/Functions.pm
	   ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
	   ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
	   ! lib/File/Spec/Win32.pm
____________________________________________________________________________
[  6282] By: jhi                                   on 2000/06/29  22:57:22
        Log: Subject: [PATCH 5.6.0]ITHREADs for VMS
             From: Dan Sugalski <dan@sidhe.org>
             Date: Tue, 06 Jun 2000 11:59:50 -0400
             Message-Id: <4.3.2.7.0.20000606115752.01c82220@24.8.96.48>
     Branch: cfgperl
	   ! vms/vms.c
____________________________________________________________________________
[  6281] By: jhi                                   on 2000/06/29  22:52:50
        Log: Subject: [PATCH 5.6.0] utils/h2xs.PL
             From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
             Date: Wed, 7 Jun 2000 04:02:04 -0500
             Message-ID: <20000607040201.A22568@staff1.cso.uiuc.edu>
     Branch: cfgperl
	   ! utils/h2xs.PL
____________________________________________________________________________
[  6280] By: jhi                                   on 2000/06/29  22:45:47
        Log: Subject: Re: backwards compatibility in h2xs and makemaker  [PATCH]
             From: rspier@pobox.com (Robert Spier)
             Date: Wed, 7 Jun 2000 12:47:37 -0400 (EDT)
             Message-ID: <14654.31913.845602.610277@rls.cx>
     Branch: cfgperl
	   ! utils/h2xs.PL
____________________________________________________________________________
[  6279] By: jhi                                   on 2000/06/29  22:38:16
        Log: Subject: [ID 20000602.002] [PATCH] perlsub.pod: ambiguous usage of "closure"
             From: Tim Ayers <tayers@bridge.com>
             Date: Thu, 08 Jun 2000 08:11:06 +0200
             Message-id: <393F38FA.9B5F4C7D@m.dasa.de>
             [resent by Richard Foley, Message-Id probably wrong]
     Branch: cfgperl
	   ! pod/perlsub.pod
____________________________________________________________________________
[  6278] By: jhi                                   on 2000/06/29  22:21:45
        Log: Subject: [ID 20000609.002] Text::Wrap::wrap does not handle multiline strings properly
             From: "Milton L. Hankins" <mlh@swl.msd.ray.com>
             Date: Fri, 09 Jun 2000 12:39:27 -0400
             Message-Id: <39411DBF.A04BB1A@swl.msd.ray.com>
             (plus update the version "number" of Text::Wrap)
     Branch: cfgperl
	   ! lib/Text/Wrap.pm
____________________________________________________________________________
[  6277] By: jhi                                   on 2000/06/29  22:13:10
        Log: Subject: [PATCH] Re: [ID 20000612.001] map {chop; $_} (Literals problem)
             From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
             Date: Mon, 12 Jun 2000 14:55:59 +0100
             Message-Id: <E131Uh5-0002cj-00@ursa.cus.cam.ac.uk>
     Branch: cfgperl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[  6276] By: jhi                                   on 2000/06/29  22:11:06
        Log: Subject: [PATCH] Re: eval documentation: context
             From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
             Date: Mon, 12 Jun 2000 15:07:29 +0100
             Message-Id: <E131UsD-0002ke-00@ursa.cus.cam.ac.uk>
     Branch: cfgperl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[  6275] By: jhi                                   on 2000/06/29  21:59:46
        Log: Subject: [PATCH] 5.6.0 lib/Pod/{Html,Man,Text}.pm
             From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
             Date: Tue, 13 Jun 2000 02:43:48 -0500
             Message-ID: <20000613024347.A28388@staff2.cso.uiuc.edu>
     Branch: cfgperl
	   ! lib/Pod/Html.pm lib/Pod/Man.pm lib/Pod/Text.pm
____________________________________________________________________________
[  6274] By: jhi                                   on 2000/06/29  21:56:14
        Log: Subject: [ID 20000614.003] 5.6.0 File/Glob.pm incompatibility
             From: Andy Dougherty <doughera@lafayette.edu>
             Date: Wed, 14 Jun 2000 13:33:32 -0400 (EDT)
             Message-Id: <Pine.SOL.4.10.10006141332220.3643-100000@maxwell.phys.lafayette.edu>
     Branch: cfgperl
	   ! ext/File/Glob/Glob.pm
____________________________________________________________________________
[  6273] By: jhi                                   on 2000/06/29  21:49:09
        Log: Subject: [PATCH] xsub attributes
             From: Doug MacEachern <dougm@covalent.net>
             Date: Wed, 14 Jun 2000 15:09:22 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006141456050.340-100000@mojo.covalent.net>
     Branch: cfgperl
	   ! embed.h embed.pl embedvar.h global.sym lib/ExtUtils/xsubpp
	   ! objXSUB.h op.c perlapi.c perlapi.h proto.h
____________________________________________________________________________
[  6272] By: jhi                                   on 2000/06/29  21:41:28
        Log: Subject: [ID 20000614.005] [patch] Tweak to Net::Ping docs
             From: Tom Phoenix <rootbeer@redcat.com>
             Received: (qmail 6398 invoked by uid 508); 15 Jun 2000 00:30:54 -0000
             Date: Wed, 14 Jun 2000 17:30:37 -0700 (PDT)
     Branch: cfgperl
	   ! lib/Net/Ping.pm
____________________________________________________________________________
[  6271] By: jhi                                   on 2000/06/29  21:36:55
        Log: Subject: PATCH pod/perltie.pod
             From: Ian Phillipps <Ian.Phillipps@iname.com>
             Date: Fri, 16 Jun 2000 00:17:19 +0100
             Message-ID: <20000616001719.A17108@homer.diplex.co.uk>
             (only the first hunk, the second hunk had already been done
             by some other patch)
     Branch: cfgperl
	   ! pod/perltie.pod
____________________________________________________________________________
[  6270] By: jhi                                   on 2000/06/29  21:24:51
        Log: Subject: PATCH (Re: [ID 20000612.004] Should regression tests fail if user doesn't build XS extensions?)
             From: Nicholas Clark <nick@talking.bollo.cx>
             Date: Fri, 23 Jun 2000 16:21:15 +0100
             Message-ID: <20000623162115.A19894@Bagpuss.unfortu.net>
     Branch: cfgperl
	   ! t/lib/anydbm.t t/lib/dprof.t t/lib/dumper-ovl.t t/lib/dumper.t
	   ! t/lib/hostname.t t/lib/ipc_sysv.t t/op/taint.t
____________________________________________________________________________
[  6269] By: jhi                                   on 2000/06/29  19:38:15
        Log: Regen headers for #6261 (and update embed.pl for this) and #6267,
             silence few compiler warnings.
     Branch: cfgperl
	   ! doop.c embed.pl global.sym objXSUB.h op.c proto.h toke.c
____________________________________________________________________________
[  6268] By: jhi                                   on 2000/06/29  18:21:50
        Log: Subject: [PATCH perl-current] Make op/sprintf.t more comprehensive
             From: Dominic Dunlop <domo@computer.org> 
             Date: Thu, 29 Jun 2000 12:32:39 +0200 
             Message-Id: <p04320403b580cc1338db@[192.168.1.4]> 
     Branch: cfgperl
	   ! t/op/sprintf.t
____________________________________________________________________________
[  6267] By: jhi                                   on 2000/06/29  18:16:07
        Log: Subject: Re: [PATCH] Re: Speeding up method lookups 
             From: Doug MacEachern <dougm@covalent.net>
             Date: Sun, 18 Jun 2000 13:24:55 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006181306031.397-100000@mojo.covalent.net>
     Branch: cfgperl
	   + t/op/method2entersub.t
	   ! MANIFEST embed.pl lib/ExtUtils/Install.pm lib/File/Spec/Mac.pm
	   ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
	   ! lib/File/Spec/Win32.pm lib/base.pm op.c perl.h t/op/sprintf.t
	   ! xsutils.c
____________________________________________________________________________
[  6266] By: jhi                                   on 2000/06/29  15:11:15
        Log: Subject: [PATCH 5.6.0] cygwin port
             Message-ID: <779F20BCCE5AD31186A50008C75D997917173C@silldn_mail1.sanwaint.com>
             From: "Fifer, Eric" <EFifer@sanwaint.com>
             Date: Thu, 29 Jun 2000 12:58:29 +0100
     Branch: cfgperl
	   ! cygwin/Makefile.SHs
____________________________________________________________________________
[  6265] By: jhi                                   on 2000/06/29  15:04:05
        Log: Subject: Re: [ID 20000628.006] POSIX::STRERR_FILENO typo
             From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
             Date: Wed, 28 Jun 2000 17:50:12 -0700
             Message-ID: <E1pW5gzkg2kV092yn@efn.org>
     Branch: cfgperl
	   ! ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs
____________________________________________________________________________
[  6264] By: jhi                                   on 2000/06/29  15:00:57
        Log: Subject: [ID 20000628.004] Re: Problem compiling perl? [BSDI-Support-Request #71232]
             From: Marty Lucich <marty@netcom.com>
             Date: Wed, 28 Jun 2000 14:16:05 -0700 (PDT)
             Message-Id: <200006282116.OAA11148@netcom.com>
             ccdlflags update (the BSD/OS 4.1 part had already been taken
             care of by #6141).
     Branch: cfgperl
	   ! hints/bsdos.sh
____________________________________________________________________________
[  6263] By: jhi                                   on 2000/06/29  13:47:44
        Log: tr fixes from Simon Cozens
     Branch: cfgperl
	   ! doop.c
____________________________________________________________________________
[  6262] By: jhi                                   on 2000/06/28  18:46:01
        Log: Subject: 5.6.0 Patch for EPOC
             From: Olaf Flebbe <o.flebbe@gmx.de>
             Date: Tue, 13 Jun 2000 22:59:29 +0200 (MEST)
             Message-ID: <23449.960929969@www11.gmx.net>
     Branch: cfgperl
	   ! README.epoc epoc/config.sh epoc/createpkg.pl epoc/epocish.c
	   ! epoc/epocish.h
____________________________________________________________________________
[  6261] By: jhi                                   on 2000/06/28  18:29:07
        Log: Subject: Re: [PATCH cfgperl] BOMs away!
             From: simon@brecon.co.uk (Simon Cozens)
             Date: 17 Jun 2000 11:49:57 GMT
             Message-ID: <slrn8kmpf5.8pl.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! pod/perldiag.pod t/comp/require.t toke.c
____________________________________________________________________________
[  6260] By: jhi                                   on 2000/06/28  17:47:16
        Log: Subject: Re: [PATCH] pack('U',$foo) doesn't UTF8
             From: simon@brecon.co.uk (Simon Cozens) 
             Date: 17 Jun 2000 11:56:44 GMT 
             Message-ID: <slrn8kmprs.8pl.simon@justanother.perlhacker.org> 
             pack U0, pack C0
     Branch: cfgperl
	   ! pod/perlfunc.pod pp.c t/op/pack.t
____________________________________________________________________________
[  6259] By: jhi                                   on 2000/06/28  16:43:17
        Log: perlnewmod was missing from MANIFEST.
     Branch: cfgperl
	   ! MANIFEST
____________________________________________________________________________
[  6258] By: jhi                                   on 2000/06/28  15:54:30
        Log: linenumber tweak
     Branch: cfgperl
	   ! t/pragma/warn/regcomp
____________________________________________________________________________
[  6257] By: jhi                                   on 2000/06/28  15:50:44
        Log: Subject: Re: [PATCH] "Constant subroutine redefined" mandatory warning
             From: Doug MacEachern <dougm@covalent.net>
             Date: Sun, 25 Jun 2000 12:11:28 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006251209191.461-100000@mojo.covalent.net>
             (one part of the patch had been applied earlier)
     Branch: cfgperl
	   ! op.c sv.c t/pragma/constant.t t/pragma/warn/op
____________________________________________________________________________
[  6256] By: jhi                                   on 2000/06/28  15:40:22
        Log: tweaks from Simon Conzes to further fix tr/// under utf8
     Branch: cfgperl
	   ! doop.c
____________________________________________________________________________
[  6255] By: jhi                                   on 2000/06/28  15:33:45
        Log: small thinko tweaks
     Branch: cfgperl
	   ! lib/IPC/Open3.pm t/op/my_stash.t
____________________________________________________________________________
[  6254] By: jhi                                   on 2000/06/28  15:33:25
        Log: Subject: tr///, help wanted.
             From: simon@brecon.co.uk (Simon Cozens)
             Date: 28 Jun 2000 11:29:04 GMT
             Message-ID: <slrn8ljoc0.fbd.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! doop.c embed.h embed.pl embedvar.h global.sym objXSUB.h
	   ! pp_proto.h proto.h t/op/tr.t
____________________________________________________________________________
[  6253] By: jhi                                   on 2000/06/28  15:09:17
        Log: Paranoia tweak on #6249.
             Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's
             From: Ronald J Kimball <rjk@linguist.dartmouth.edu>
             Date: Sun, 25 Jun 2000 23:43:12 -0400
             Message-ID: <20000625234312.B74147@linguist.dartmouth.edu>
     Branch: cfgperl
	   ! lib/IPC/Open3.pm
____________________________________________________________________________
[  6252] By: jhi                                   on 2000/06/28  15:01:38
        Log: Document #6249 and #6251.
     Branch: cfgperl
	   ! lib/Exporter.pm lib/IPC/Open3.pm
____________________________________________________________________________
[  6251] By: jhi                                   on 2000/06/28  14:50:43
        Log: Subject: [PATCH] inline AUTOLOADed constants via Exporter.pm
             From: Doug MacEachern <dougm@covalent.net>
             Date: Fri, 23 Jun 2000 00:16:39 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006230009400.322-100000@mojo.covalent.net>
     Branch: cfgperl
	   ! lib/Exporter.pm
____________________________________________________________________________
[  6250] By: jhi                                   on 2000/06/28  14:45:23
        Log: Subject: Re: [PATCH] support 'my __PACKAGE__ $obj = ...'
             From: Doug MacEachern <dougm@covalent.net>
             Date: Tue, 27 Jun 2000 14:17:28 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006271412340.7587-100000@mojo.covalent.net>
     Branch: cfgperl
	   + t/op/my_stash.t
	   ! MANIFEST embed.pl global.sym proto.h toke.c
____________________________________________________________________________
[  6249] By: jhi                                   on 2000/06/28  14:36:34
        Log: Subject: Re: [PATCH 5.6.0 IPC/Open3.pm] Allow the use of numeric fd's 
             From: Frank Tobin <ftobin@uiuc.edu>
             Date: Sun, 25 Jun 2000 19:00:58 -0500 (CDT)
             Message-ID: <Pine.BSF.4.21.0006251855340.20487-100000@srh0902.urh.uiuc.edu>
     Branch: cfgperl
	   ! lib/IPC/Open3.pm
____________________________________________________________________________
[  6248] By: jhi                                   on 2000/06/28  14:11:25
        Log: Subject: DOC PATCH 5.6.0: perlfunc/sprintf does not contain an example
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Tue, 27 Jun 2000 22:36:42 -0400
             Message-ID: <20000628023642.12166.qmail@plover.com>
     Branch: cfgperl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[  6247] By: jhi                                   on 2000/06/27  12:46:37
        Log: Tweak $VERSION, patch from Doug MacEachern.
     Branch: cfgperl
	   ! lib/File/Spec.pm
____________________________________________________________________________
[  6246] By: jhi                                   on 2000/06/27  03:34:46
        Log: Allow for standalone testing.
     Branch: cfgperl
	   ! t/lib/filefunc.t t/lib/filespec.t
____________________________________________________________________________
[  6245] By: jhi                                   on 2000/06/27  02:50:02
        Log: Subject: [ID 20000624.001] PERL_DL_DEBUG=1 DynaLoader message appears to be wrong
             From: Nicholas Clark <nick@Bagpuss.unfortu.net>
             Date: Sat, 24 Jun 2000 13:06:20 +0100
             Message-Id: <200006241206.NAA03771@Bagpuss.unfortu.net>
     Branch: cfgperl
	   ! ext/DynaLoader/DynaLoader_pm.PL
____________________________________________________________________________
[  6244] By: jhi                                   on 2000/06/27  02:46:10
        Log: Subject: [PATCH] avoid mg_ptr in '*' magic
             From: Doug MacEachern <dougm@covalent.net>
             Date: Sun, 25 Jun 2000 11:16:08 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006251045190.461-100000@mojo.covalent.net>
     Branch: cfgperl
	   ! gv.c sv.c t/lib/peek.t
____________________________________________________________________________
[  6243] By: jhi                                   on 2000/06/27  02:38:07
        Log: Subject: [PATCH] is_utf8_string
             From: simon@brecon.co.uk (Simon Cozens)
             Date: 26 Jun 2000 02:25:59 GMT
             Message-ID: <slrn8ldfpn.h5k.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! embed.h embed.pl embedvar.h global.sym objXSUB.h perlapi.c
	   ! perlapi.h pod/perlapi.pod pod/perlintern.pod pp_proto.h
	   ! proto.h utf8.c
____________________________________________________________________________
[  6242] By: jhi                                   on 2000/06/27  02:24:00
        Log: Subject: [PATCH] bytes<->utf8 fixes
             From: simon@brecon.co.uk (Simon Cozens)
             Date: 26 Jun 2000 04:55:45 GMT
             Message-ID: <slrn8ldoih.fbd.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! embed.pl perlapi.c pod/perlapi.pod proto.h utf8.c
____________________________________________________________________________
[  6241] By: jhi                                   on 2000/06/27  02:12:42
        Log: Do no -warn on \_, only on \alpha.
             Subject: New Unrecognized escape warning for /\_/ from activestate perl-current5.6.0
             From: David Dyck <dcd@tc.fluke.com>
             Date: Mon, 26 Jun 2000 09:32:02 -0700 (PDT)
             Message-ID: <Pine.LNX.4.05.10006260830280.3054-100000@dd.tc.fluke.com>
     Branch: cfgperl
	   ! regcomp.c t/pragma/warn/regcomp t/pragma/warn/toke toke.c
____________________________________________________________________________
[  6240] By: jhi                                   on 2000/06/27  02:00:01
        Log: Subject: [ID 20000626.007] h2xs man page contains trailing garbage
             From: Nicholas Clark <nick@Bagpuss.unfortu.net>
             Date: Mon, 26 Jun 2000 18:40:14 +0100
             Message-Id: <200006261740.SAA02740@Bagpuss.unfortu.net>
     Branch: cfgperl
	   ! utils/h2xs.PL
____________________________________________________________________________
[  6239] By: jhi                                   on 2000/06/27  01:53:40
        Log: Configure maintenance.  Sever some dependency cycles,
             separate gccversion from the cc unit,
             address [ID 20000623.006] Configure script patch for using gcc on AIX
             (but solve it a little bit differently),
             unduplex some accidentally duplicated units,
             suggest using gcc if no cc available
             (p5p thread: "Solaris configure: counterproposal", 1999-09)
     Branch: cfgperl
	   ! Configure Todo-5.6 config_h.SH
     Branch: metaconfig
	   ! U/modified/Config_h.U U/modified/cc.U U/modified/cpp_stuff.U
	   ! U/modified/libs.U U/modified/models.U U/modified/usrinc.U
     Branch: metaconfig/U/perl
	   + gccvers.U
	   ! d_getespwnam.U d_getprpwnam.U i_prot.U
____________________________________________________________________________
[  6238] By: jhi                                   on 2000/06/25  18:04:56
        Log: Subject: [PATCH 5.6.0] XS module loading fixup for VMS
             From: Dan Sugalski <dan@sidhe.org>
             Date: Fri, 23 Jun 2000 17:00:00 -0400
             Message-Id: <4.3.2.7.0.20000623165934.00c93d10@24.8.96.48>
     Branch: cfgperl
	   ! lib/ExtUtils/MM_VMS.pm vms/vms.c
____________________________________________________________________________
[  6237] By: jhi                                   on 2000/06/25  16:36:45
        Log: Tweak embed.pl, regen headers.
     Branch: cfgperl
	   ! embed.h embed.pl embedvar.h ext/B/B/Asmdata.pm
	   ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h global.sym
	   ! keywords.h lib/warnings.pm objXSUB.h opcode.h opnames.h
	   ! perlapi.c perlapi.h pod/perlapi.pod pod/perlintern.pod pp.sym
	   ! pp_proto.h proto.h regnodes.h utf8.c warnings.h
____________________________________________________________________________
[  6236] By: jhi                                   on 2000/06/25  15:26:42
        Log: Regen headers.
     Branch: cfgperl
	   ! embed.h embedvar.h ext/B/B/Asmdata.pm ext/ByteLoader/byterun.c
	   ! ext/ByteLoader/byterun.h global.sym keywords.h lib/warnings.pm
	   ! objXSUB.h opcode.h opnames.h perlapi.c perlapi.h
	   ! pod/perlapi.pod pod/perlintern.pod pp.sym pp_proto.h proto.h
	   ! regnodes.h warnings.h
____________________________________________________________________________
[  6235] By: jhi                                   on 2000/06/23  19:39:35
        Log: The thread begun by
             Subject: [ID 20000616.001] Typo on line 390 of .../hints/solaris_2.sh
             From: Kevin.Ruscoe@ubsw.com
             Date: Fri, 16 Jun 2000 16:38:51 +0100
             Message-Id: <H000019b03c300d6@MHS>
     Branch: cfgperl
	   ! hints/solaris_2.sh
____________________________________________________________________________
[  6234] By: jhi                                   on 2000/06/23  19:23:36
        Log: Prefer C:/temp in Win32 as File::Spec->tmpdir to /tmp
             because when run as services (Win32ese for daemons)
             no environment variables are set and tmpdir ends up as /tmp,
             which is ambiguous.
             
             Subject:[ID 20000616.002] File::Spec->tmpdir broken when running as service
             From: matt@sergeant.org
             Date: 16 Jun 2000 16:30:43 -0000
             Message-Id: <20000616163043.26398.qmail@mail.sergeant.org>
     Branch: cfgperl
	   ! lib/File/Spec/Win32.pm
____________________________________________________________________________
[  6233] By: jhi                                   on 2000/06/23  19:18:58
        Log: Subject: PATCH 5.6.0: Document OPf_SPECIAL flag in regcomp op nodes
             From: Mark-Jason Dominus <mjd@plover.com>
             Date: Fri, 16 Jun 2000 20:53:04 -0400
             Message-ID: <20000617005304.8008.qmail@plover.com>
     Branch: cfgperl
	   ! op.h
____________________________________________________________________________
[  6232] By: jhi                                   on 2000/06/23  16:10:02
        Log: Subject: PATCH: pod/perlutil.pod - utilities packaged with the Perl distribution
             From: simon@brecon.co.uk (Simon Cozens)
             Date: 19 Jun 2000 15:18:27 GMT
             Message-ID: <slrn8ksee3.cp9.simon@justanother.perlhacker.org>
             
             plus update pod/Makefile and regenerate perltoc
     Branch: cfgperl
	   + pod/perlutil.pod
	   ! MANIFEST Todo-5.6 pod/Makefile pod/perltoc.pod pod/roffitall
____________________________________________________________________________
[  6231] By: jhi                                   on 2000/06/23  15:19:18
        Log: Subject: [PATCH 5.6.0] cygwin port
             From: "Fifer, Eric" <EFifer@sanwaint.com>
             Date: Tue, 20 Jun 2000 14:30:58 +0100
             Message-ID: <779F20BCCE5AD31186A50008C75D9979171734@silldn_mail1.sanwaint.com>
     Branch: cfgperl
	   ! README.cygwin lib/File/Find.pm
____________________________________________________________________________
[  6230] By: jhi                                   on 2000/06/23  14:25:21
        Log: Upgrade to File::Spec 0.810_01 from CPAN by Barrie Slaymaker.
     Branch: cfgperl
	   ! lib/File/Spec.pm lib/File/Spec/Functions.pm
	   ! lib/File/Spec/Mac.pm lib/File/Spec/OS2.pm
	   ! lib/File/Spec/Unix.pm lib/File/Spec/VMS.pm
	   ! lib/File/Spec/Win32.pm t/lib/filefunc.t t/lib/filespec.t
____________________________________________________________________________
[  6229] By: jhi                                   on 2000/06/23  14:13:34
        Log: Subject: README.hpux version 0.6.1
             Date: Tue, 20 Jun 2000 15:25:51 -0700 (PDT)
             From: Jeff Okamoto <okamoto@xfiles.intercon.hp.com>
             Message-Id: <200006202225.PAA26205@xfiles.intercon.hp.com>
     Branch: cfgperl
	   ! README.hpux
____________________________________________________________________________
[  6228] By: jhi                                   on 2000/06/23  14:07:20
        Log: Subject: [PATCH] "Constant subroutine redefined" mandatory warning
             From: Doug MacEachern <dougm@covalent.net>
             Date: Tue, 20 Jun 2000 21:23:56 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006202116340.321-100000@mojo.covalent.net>
     Branch: cfgperl
	   ! op.c
____________________________________________________________________________
[  6227] By: jhi                                   on 2000/06/23  14:01:06
        Log: Subject: [PATCH] lib.pm -> lib.pm.PL
             From: Doug MacEachern <dougm@covalent.net>
             Date: Tue, 20 Jun 2000 22:14:41 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006202208210.321-100000@mojo.covalent.net>
     Branch: cfgperl
	   + lib/lib.pm.PL
	   - lib/lib.pm
	   ! MANIFEST Makefile.SH
____________________________________________________________________________
[  6226] By: jhi                                   on 2000/06/23  13:53:07
        Log: Subject: [PATCH] remove forward declarations in Socket.pm
             From: Doug MacEachern <dougm@covalent.net>
             Date: Tue, 20 Jun 2000 21:54:12 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006202149190.321-100000@mojo.covalent.net>
             
             From: Doug MacEachern <dougm@covalent.net>
             Subject: Re: [PATCH] remove forward declarations in Socket.pm
             Date: Fri, 23 Jun 2000 00:09:29 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006222349440.322-100000@mojo.covalent.net>
     Branch: cfgperl
	   ! ext/Socket/Socket.pm op.c
____________________________________________________________________________
[  6225] By: jhi                                   on 2000/06/23  13:41:52
        Log: Add source code filenames to apidoc.
             From: simon@brecon.co.uk (Simon Cozens)
             Subject: [PATCH embed.pl] Source X-ref
             Date: 22 Jun 2000 02:18:49 GMT
             Message-ID: <slrn8l2ts8.h5k.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! embed.pl
____________________________________________________________________________
[  6224] By: jhi                                   on 2000/06/23  13:32:33
        Log: A way to avoid English.pm performance hit.
             From: root <root@jester.slaysys.com>
             Subject: [YAPATCH English.pm] My turn to putt again
             Date: Thu, 22 Jun 2000 20:33:58 -0400
             Message-Id: <200006230033.UAA05960@jester.slaysys.com>
     Branch: cfgperl
	   ! lib/English.pm t/lib/english.t
____________________________________________________________________________
[  6223] By: jhi                                   on 2000/06/23  13:27:06
        Log: Avoid double close().
             Subject: [PATCH] avoid double close()
             From: Doug MacEachern <dougm@covalent.net>
             Date: Thu, 22 Jun 2000 23:08:06 -0700 (PDT)
             Message-ID: <Pine.LNX.4.10.10006222251260.322-100000@mojo.covalent.net>
     Branch: cfgperl
	   ! doio.c
____________________________________________________________________________
[  6222] By: jhi                                   on 2000/06/23  13:25:54
        Log: doc typo fix
             Subject: [PATCH] documentation typo in lib/Pod/Usage.pm
             From: Ian Phillipps <Ian.Phillipps@iname.com>
             Date: Fri, 23 Jun 2000 10:40:58 +0100
             Message-ID: <20000623104058.A22791@homer.diplex.co.uk>
     Branch: cfgperl
	   ! lib/Pod/Usage.pm
____________________________________________________________________________
[  6221] By: jhi                                   on 2000/06/23  13:24:15
        Log: Remove tr///CU (the feature is to be obsoleted by better interfaces).
             From: simon@brecon.co.uk (Simon Cozens)
             Subject: [PATCH] Eliminate tr///[CU][CU]
             Date: 23 Jun 2000 11:05:40 GMT
             Message-ID: <slrn8l6h44.h5k.simon@justanother.perlhacker.org>
     Branch: cfgperl
	   ! doop.c embed.pl pod/perlop.pod toke.c utf8.c
____________________________________________________________________________
[  6220] By: jhi                                   on 2000/06/22  16:07:51
        Log: Win32 patches from Benjamin Stuhl.
     Branch: cfgperl
	   ! makedef.pl win32/win32.h
____________________________________________________________________________
[  6219] By: jhi                                   on 2000/06/22  16:06:34
        Log: Bytecode patches from Benjamin Stuhl.
     Branch: cfgperl
	   ! bytecode.pl ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
	   ! ext/B/O.pm ext/B/defsubs_h.PL ext/ByteLoader/ByteLoader.pm
	   ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
____________________________________________________________________________
[  6218] By: jhi                                   on 2000/06/15  23:54:16
        Log: Bytecode patches from Benjamin Stuhl.
     Branch: cfgperl
	   ! ext/B/B/Assembler.pm ext/B/B/Bytecode.pm
____________________________________________________________________________
[  6217] By: jhi                                   on 2000/06/09  13:38:29
        Log: Rename the fdpid locking and integrate with Sarathy.
     Branch: cfgperl
	   ! Configure config_h.SH doio.c embed.h embed.pl embedvar.h
	   ! global.sym gv.c intrpvar.h objXSUB.h perl.c perlapi.h pp.c
	   ! pp_ctl.c proto.h sv.h util.c util.h vmesa/vmesa.c
	   ! win32/win32.c
	  !> av.h cop.h hints/solaris_2.sh t/op/runlevel.t
____________________________________________________________________________
[  6216] By: gsar                                  on 2000/06/08  14:54:21
        Log: be more optimal about clearing @_
     Branch: perl
	   ! cop.h
____________________________________________________________________________
[  6215] By: gsar                                  on 2000/06/08  14:33:04
        Log: tweak comment about @DB::args
     Branch: perl
	   ! av.h pp_ctl.c
____________________________________________________________________________
[  6214] By: gsar                                  on 2000/06/08  13:57:54
        Log: @_ can't have junk in it even in the non-USE_ITHREADS case because
             caller() wants to populate @DB::args with it (causes a coredump
             in Carp::confess())
     Branch: perl
	   ! cop.h t/op/runlevel.t
____________________________________________________________________________
[  6213] By: gsar                                  on 2000/06/08  07:06:35
        Log: back out change#6106 (seems problematic)
     Branch: perl
	   ! hints/solaris_2.sh
____________________________________________________________________________
[  6212] By: jhi                                   on 2000/06/07  03:10:36
        Log: Continuing mopup for #6204.
     Branch: cfgperl
	   ! ext/B/defsubs_h.PL
____________________________________________________________________________
[  6211] By: jhi                                   on 2000/06/07  02:41:50
        Log: Mopup for #6204.
             Under the 5005 threads the t/lib/b.t for B::Deparse fails:
             Can't locate object method "PV" via package "B::RV" at ../lib/B/Deparse.pm line 2360.
             This is comes from const() where POK isn't on when expected.
     Branch: cfgperl
	   ! embedvar.h ext/B/B.xs ext/B/B/Asmdata.pm
	   ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
	   ! ext/ByteLoader/byterun.c ext/ByteLoader/byterun.h perlapi.c
	   ! perlapi.h pod/perlapi.pod
____________________________________________________________________________
[  6210] By: jhi                                   on 2000/06/07  01:56:29
        Log: Mopup for #6207 and #6209.
     Branch: cfgperl
	   ! doio.c gv.c sv.h util.c vmesa/vmesa.c win32/win32.c
____________________________________________________________________________
[  6209] By: jhi                                   on 2000/06/07  01:33:12
        Log: Lock PL_fdpid against race conditions, based on:
             Subject: [PATCH 5.6.0]subprocess fixup for threads
             From: Dan Sugalski <dan@sidhe.org>
             To: perl5-porters@perl.org
             Date: Tue, 11 Apr 2000 17:02:32 -0400
             Message-Id: <4.3.0.20000411170218.01d2f580@24.8.96.48>
     Branch: cfgperl
	   ! doio.c intrpvar.h perl.c sv.h util.c vmesa/vmesa.c
	   ! win32/win32.c
____________________________________________________________________________
[  6208] By: jhi                                   on 2000/06/07  01:05:23
        Log: Regen headers for #6207.
     Branch: cfgperl
	   ! embed.h global.sym objXSUB.h proto.h
____________________________________________________________________________
[  6207] By: jhi                                   on 2000/06/06  23:43:13
        Log: Subject: [PATCH 5.6.0] Threadsafe patches
             From: Dan Sugalski <dan@sidhe.org>
             To: perl5-porters@perl.org
             Date: Mon, 08 May 2000 18:08:13 -0400
             Message-Id: <4.3.1.0.20000508180729.02182de0@24.8.96.48>
     Branch: cfgperl
	   ! embed.pl global.sym gv.c intrpvar.h perl.c pp.c pp_ctl.c
	   ! proto.h sv.h util.c
____________________________________________________________________________
[  6206] By: jhi                                   on 2000/06/06  23:21:23
        Log: Subject: [PATCH] Eliminate $a/$b in pod
             From: David Glasser <me@davidglasser.net>
             To: perl5-porters@perl.org
             Date: Mon, 29 May 2000 21:15:59 -0400
             Message-Id: <l03130302b558bb2640ce@[209.195.241.121]>
     Branch: cfgperl
	   ! pod/perl5004delta.pod pod/perl56delta.pod pod/perlboot.pod
	   ! pod/perlbot.pod pod/perlcall.pod pod/perldata.pod
	   ! pod/perldbmfilter.pod pod/perldiag.pod pod/perldsc.pod
	   ! pod/perlembed.pod pod/perlfaq4.pod pod/perlfaq6.pod
	   ! pod/perlfaq7.pod pod/perlfilter.pod pod/perlfunc.pod
	   ! pod/perlguts.pod pod/perllexwarn.pod pod/perllocale.pod
	   ! pod/perlobj.pod pod/perlop.pod pod/perlref.pod pod/perlsub.pod
	   ! pod/perlsyn.pod pod/perltie.pod pod/perltrap.pod
	   ! pod/perlvar.pod pod/perlxs.pod
____________________________________________________________________________
[  6205] By: jhi                                   on 2000/06/06  23:12:14
        Log: Subject: [PATCH] Win32 improvements
             From: "Benjamin Stuhl" <sho_pi@hotmail.com>
             To: gsar@activestate.com, perl5-porters@perl.org
             Date: Mon, 29 May 2000 17:22:24 PDT
             Message-ID: <20000530002224.91142.qmail@hotmail.com>
             (MUA had mangled many lines by wordwrapping)
     Branch: cfgperl
	   ! utils/c2ph.PL win32/makefile.mk win32/win32.c win32/win32sck.c
____________________________________________________________________________
[  6204] By: jhi                                   on 2000/06/06  23:01:50
        Log: Subject: [PATCH] B::Bytecode patches
             From: "Benjamin Stuhl" <sho_pi@hotmail.com>
             To: gsar@activestate.com, jhi@iki.fi
             Cc: perl5-porters@perl.org
             Message-ID: <20000602202526.48694.qmail@hotmail.com>
             (MUA had mangled many lines by wordwrapping)
     Branch: cfgperl
	   ! bytecode.pl ext/B/B.pm ext/B/B.xs ext/B/B/Assembler.pm
	   ! ext/B/B/Bytecode.pm ext/B/O.pm ext/B/defsubs_h.PL
	   ! ext/ByteLoader/ByteLoader.xs ext/ByteLoader/bytecode.h
	   ! intrpvar.h perl.c
____________________________________________________________________________
[  6203] By: jhi                                   on 2000/06/06  22:32:43
        Log: Subject: [PATCH] perldiag should refer to perlos2.pod not README.os2
             From: sthoenna@efn.org (Yitzchak Scott-Thoennes)
             Date: Tue, 06 Jun 2000 13:07:45 -0700
             Message-ID: <RoVP5gzkgmTL092yn@efn.org>
     Branch: cfgperl
	   ! pod/perldiag.pod
____________________________________________________________________________
[  6202] By: jhi                                   on 2000/06/06  19:38:35
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> perl.c
____________________________________________________________________________
[  6201] By: gsar                                  on 2000/06/06  00:42:59
        Log: Perl_eval_pv() leaks 4 bytes every time it is called because it
             does a PUSHMARK that's never ever POPMARKed; in general, only
             Perl_call_[sp]v() need a PUSHMARK for incoming arguments;
             Perl_eval_[sp]v() don't because they don't take any incoming
             arguments (this leak has been around since the original version
             of perl_eval_pv() in 5.003_97e)
     Branch: perl
	   ! perl.c
____________________________________________________________________________
[  6200] By: jhi                                   on 2000/06/04  03:44:52
        Log: Update to cperl-mode.el 4.31 from
             ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode.el
             Subject: A couple of notes
             From: Ilya Zakharevich <ilya@math.ohio-state.edu>
             To: Mailing list Perl5 <perl5-porters@perl.org>
             Date: Sat, 3 Jun 2000 23:33:32 -0400
             Message-ID: <20000603233332.A6790@monk.mps.ohio-state.edu>
     Branch: cfgperl
	   ! emacs/cperl-mode.el
____________________________________________________________________________
[  6199] By: jhi                                   on 2000/06/03  15:11:05
        Log: Subject: [PATCH 5.6.0]Make perl's malloc work on VMS
             From: Dan Sugalski <dan@sidhe.org>
             To: perl5-porters@perl.org, vmsperl@perl.org
             Date: Fri, 02 Jun 2000 17:30:51 -0400
             Message-Id: <4.3.2.7.0.20000602173021.01f03570@24.8.96.48>
     Branch: cfgperl
	   ! vms/descrip_mms.template vms/gen_shrfls.pl
____________________________________________________________________________
[  6198] By: jhi                                   on 2000/06/03  14:59:15
        Log: Subject: [PATCH 5.6.0]VMS fixups so we can build with MULTIPLICITY
             From: Dan Sugalski <dan@sidhe.org>
             To: vmsperl@perl.org, perl5-porters@perl.org
             Date: Fri, 02 Jun 2000 16:00:41 -0400
             Message-Id: <4.3.2.7.0.20000602155951.01f02b20@24.8.96.48>
             Message-Id: <4.3.2.7.0.20000602164011.01ec8c30@24.8.96.48>
     Branch: cfgperl
	   ! embed.h embed.pl embedvar.h ext/POSIX/POSIX.xs global.sym
	   ! objXSUB.h perlapi.c perlapi.h pod/perlapi.pod
	   ! pod/perlintern.pod proto.h vms/vms.c vms/vmsish.h
____________________________________________________________________________
[  6197] By: jhi                                   on 2000/06/03  14:41:30
        Log: Subject: [ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
             From: John Borwick <jhborwic@unity.ncsu.edu>
             Date: Fri, 2 Jun 2000 14:35:03 -0400 (EDT)
             Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>
     Branch: cfgperl
	   ! pod/perlsyn.pod
____________________________________________________________________________
[  6196] By: jhi                                   on 2000/06/03  14:38:09
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
	  !> perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
	  !> vms/perly_c.vms
____________________________________________________________________________
[  6195] By: gsar                                  on 2000/06/02  22:43:13
        Log: fix yet another eval"" leak under USE_ITHREADS
     Branch: perl
	   ! op.c
____________________________________________________________________________
[  6194] By: gsar                                  on 2000/06/02  18:22:06
        Log: fix small eval"" memory leaks under USE_ITHREADS
     Branch: perl
	   ! cop.h embed.h embed.pl objXSUB.h op.c perl.c perlapi.c perly.c
	   ! perly_c.diff pp_ctl.c proto.h scope.c scope.h sv.c toke.c
	   ! vms/perly_c.vms
____________________________________________________________________________
[  6193] By: jhi                                   on 2000/06/01  13:03:56
        Log: Signals-be-gone for microperl.
     Branch: cfgperl
	   ! Todo.micro doop.c mg.c perl.c perl.h pp_sys.c util.c
____________________________________________________________________________
[  6192] By: jhi                                   on 2000/06/01  12:52:02
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  +> lib/Pod/LaTeX.pm t/lib/selfloader.t
	  !> AUTHORS MAINTAIN MANIFEST doop.c embed.pl
	  !> ext/Devel/Peek/Peek.pm handy.h lib/SelfLoader.pm perl.c
	  !> pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
	  !> pod/perlfaq9.pod pod/perlfunc.pod pod/perllocale.pod
	  !> pod/perlre.pod pod/perltrap.pod pod/pod2latex.PL t/op/tr.t
	  !> t/op/vec.t utils/h2xs.PL
____________________________________________________________________________
[  6191] By: gsar                                  on 2000/06/01  09:38:21
        Log: vec() loses numericalness (modified version of patch suggested
             by Robin Barker)
     Branch: perl
	   ! doop.c t/op/vec.t
____________________________________________________________________________
[  6190] By: gsar                                  on 2000/06/01  09:26:15
        Log: submit missing embed.pl change
     Branch: perl
	   ! embed.pl
____________________________________________________________________________
[  6189] By: gsar                                  on 2000/06/01  09:05:34
        Log: counting tr/// corrupts later operation (from M.J.T Guy)
     Branch: perl
	   ! doop.c t/op/tr.t
____________________________________________________________________________
[  6188] By: gsar                                  on 2000/06/01  08:58:39
        Log: h2xs tweaks
     Branch: perl
	   ! utils/h2xs.PL
____________________________________________________________________________
[  6187] By: gsar                                  on 2000/06/01  08:50:07
        Log: replace pod2latex with the one in Pod-LaTeX v0.52 from CPAN
             (from Tim Jenness <t.jenness@jach.hawaii.edu>)
     Branch: perl
	   + lib/Pod/LaTeX.pm
	   ! AUTHORS MAINTAIN MANIFEST ext/Devel/Peek/Peek.pm
	   ! pod/pod2latex.PL
____________________________________________________________________________
[  6186] By: gsar                                  on 2000/06/01  08:24:40
        Log: further qualify references to "alphanumeric" (from Wolfgang Laun
             <wolfgang.laun@alcatel.at>)
     Branch: perl
	   ! handy.h pod/perlapi.pod pod/perldata.pod pod/perlfaq6.pod
	   ! pod/perlfaq9.pod pod/perllocale.pod pod/perlre.pod
____________________________________________________________________________
[  6185] By: gsar                                  on 2000/06/01  08:12:00
        Log: remove incorrect documentation about implicit split to @_ in
             list context, which never really worked in perl 5 (from
             M.J.T. Guy)
     Branch: perl
	   ! pod/perlfunc.pod pod/perltrap.pod
____________________________________________________________________________
[  6184] By: gsar                                  on 2000/06/01  07:52:27
        Log: tweak for change#6127
     Branch: perl
	   ! perl.c
____________________________________________________________________________
[  6183] By: gsar                                  on 2000/06/01  07:41:02
        Log: SelfLoader can lose $@ in AUTOLOAD() (from Nicholas Clark
             <nick@ccl4.org>)
     Branch: perl
	   + t/lib/selfloader.t
	   ! MANIFEST lib/SelfLoader.pm
____________________________________________________________________________
[  6182] By: jhi                                   on 2000/06/01  00:34:42
        Log: Be Cleaner Part Deux.
     Branch: cfgperl
	   ! Makefile.SH
____________________________________________________________________________
[  6181] By: jhi                                   on 2000/06/01  00:32:09
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> pp.c t/op/arith.t
____________________________________________________________________________
[  6180] By: jhi                                   on 2000/06/01  00:31:13
        Log: microperl nits from Simon Cozens.
     Branch: cfgperl
	   + uconfig.h
	   ! MAINTAIN MANIFEST Makefile.SH Todo.micro perl.h uconfig.sh
	   ! unixish.h
____________________________________________________________________________
[  6179] By: gsar                                  on 2000/05/31  22:37:51
        Log: buggy modulus on UVs introduced by change#3378 (resulted in
             4063328477 % 65535 amounting to 27406, instead of 27407)
     Branch: perl
	   ! pp.c t/op/arith.t
____________________________________________________________________________
[  6178] By: jhi                                   on 2000/05/31  21:52:41
        Log: Be cleaner.
     Branch: cfgperl
	   ! Makefile.SH
____________________________________________________________________________
[  6177] By: jhi                                   on 2000/05/31  21:47:33
        Log: Substitution utf8 patch from Simon Cozens.
     Branch: cfgperl
	   ! pp_hot.c
____________________________________________________________________________
[  6176] By: jhi                                   on 2000/05/31  21:45:34
        Log: Single-quoted utf8 patch from Simon Cozens.
     Branch: cfgperl
	   ! toke.c
____________________________________________________________________________
[  6175] By: jhi                                   on 2000/05/31  21:40:18
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> op.c regexec.c t/lib/filefind.t t/op/re_tests t/op/wantarray.t
____________________________________________________________________________
[  6174] By: jhi                                   on 2000/05/31  21:37:31
        Log: microperl changes from Simon Cozens; Makefile for microperl
             written from scratch; few casts added as microperl compilation
             doesn't have all prototypes available.
     Branch: cfgperl
	   + Makefile.micro README.micro Todo.micro uconfig.sh
	   ! Configure MAINTAIN MANIFEST config_h.SH doop.c mg.c op.c
	   ! perl.c perl.h perlio.c unixish.h utf8.c util.c
     Branch: metaconfig
	   + U/modified/Config_h.U
____________________________________________________________________________
[  6173] By: jhi                                   on 2000/05/31  20:00:24
        Log: metaconfig maintenance.
     Branch: metaconfig
	   + U/modified/Inhdr.U U/typedefs/inotype.U
     Branch: metaconfig/U/perl
	   + d_finitel.U d_getcwd.U d_llseek.U i_fp_class.U i_iconv.U
	   + i_ieeefp.U i_syslog.U i_sysrusage.U i_ulimit.U
____________________________________________________________________________
[  6172] By: gsar                                  on 2000/05/31  05:05:42
        Log: fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
             (from Ilya Zakharevich)
     Branch: perl
	   ! regexec.c t/op/re_tests
____________________________________________________________________________
[  6171] By: gsar                                  on 2000/05/31  05:01:47
        Log: scalar() doesn't force scalar context when used in void context
             (from Simon Cozens)
     Branch: perl
	   ! op.c t/op/wantarray.t
____________________________________________________________________________
[  6170] By: gsar                                  on 2000/05/31  04:41:33
        Log: change#6142 needs tweaks to tests to work where there's no symlink()
             (from Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
     Branch: perl
	   ! t/lib/filefind.t
____________________________________________________________________________
[  6169] By: gsar                                  on 2000/05/31  04:29:49
        Log: integrate cfgperl contents into mainline
     Branch: perl
	  +> pod/perlmodlib.PL pod/perlnewmod.pod
	  !> (integrate 42 files)
____________________________________________________________________________
[  6168] By: jhi                                   on 2000/05/30  22:53:37
        Log: Tweak NV_PRESERVES_UV*, vms/subconfigure.com left untouched.
     Branch: cfgperl
	   ! Configure Porting/Glossary Porting/config.sh Porting/config_H
	   ! config_h.SH epoc/config.sh perl.h toke.c vms/subconfigure.com
	   ! vos/config.def vos/config.h vos/config.pl vos/config_h.SH_orig
	   ! win32/config.bc win32/config.gc win32/config.vc
	   ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
	   ! win32/config_h.PL win32/config_sh.PL
     Branch: metaconfig/U/perl
	   ! perlxv.U
____________________________________________________________________________
[  6167] By: jhi                                   on 2000/05/30  22:20:21
        Log: tweak todo 
     Branch: cfgperl
	   ! Todo-5.6
____________________________________________________________________________
[  6166] By: jhi                                   on 2000/05/30  22:11:51
        Log: Introduce HAS_GETESPWNAM, HAS_GETPRPWNAM, and I_PROT
             in case somebody wants to write an extension for more
             shadow database interfaces.
     Branch: cfgperl
	   ! Configure Porting/Glossary Porting/config.sh Porting/config_H
	   ! config_h.SH epoc/config.sh pp_sys.c vms/subconfigure.com
	   ! vos/config.def vos/config.h vos/config_h.SH_orig
	   ! win32/config.bc win32/config.gc win32/config.vc
	   ! win32/config_H.bc win32/config_H.gc win32/config_H.vc
     Branch: metaconfig
	   ! U/modified/Myinit.U
     Branch: metaconfig/U/perl
	   + d_getespwnam.U d_getprpwnam.U i_prot.U
____________________________________________________________________________
[  6165] By: jhi                                   on 2000/05/30  18:35:34
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> op.c
____________________________________________________________________________
[  6164] By: jhi                                   on 2000/05/30  18:30:16
        Log: detypo
     Branch: cfgperl
	   ! Configure config_h.SH
     Branch: metaconfig/U/perl
	   ! perlxv.U
____________________________________________________________________________
[  6163] By: gsar                                  on 2000/05/30  03:24:03
        Log: fix memory leak in C<eval "BEGIN {}"> (bug in change#4579)
     Branch: perl
	   ! op.c
____________________________________________________________________________
[  6162] By: gsar                                  on 2000/05/30  03:09:38
        Log: fix memory leak in method call optimization (change#3768);
             made C<eval "$x->foo()"> leak
     Branch: perl
	   ! op.c
____________________________________________________________________________
[  6161] By: jhi                                   on 2000/05/29  17:56:26
        Log: Add autogeneration of perlmodlib.pod and the new perlnewmod.pod,
             both from Simon Cozens.
     Branch: cfgperl
	   + pod/perlmodlib.PL pod/perlnewmod.pod
	   ! AUTHORS MAINTAIN MANIFEST pod/Makefile pod/perl.pod
	   ! pod/perlmodlib.pod pod/perltoc.pod
____________________________________________________________________________
[  6160] By: jhi                                   on 2000/05/29  17:23:55
        Log: Changes for the File::Temp 0.08 (change #6159) test suite
             to fit better into the Perl distribution test framework.
     Branch: cfgperl
	   ! t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t t/lib/ftmp-security.t
	   ! t/lib/ftmp-tempfile.t
____________________________________________________________________________
[  6159] By: jhi                                   on 2000/05/29  16:55:36
        Log: Upgrade to File::Temp 0.08 from Tim Jenness via CPAN.
     Branch: cfgperl
	   ! lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
	   ! t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
____________________________________________________________________________
[  6158] By: bailey                                on 2000/05/29  16:22:08
        Log: Add fallback to tmpfile for use in cases where user's relying on
             ACLs on SYS$SCRATCH to permit file creation. (based on Charles
             Lane's patch)
     Branch: vmsperl
	   ! vms/vms.c vms/vmsish.h
____________________________________________________________________________
[  6157] By: jhi                                   on 2000/05/29  03:10:36
        Log: Regen Configure to jive with #6149.
     Branch: cfgperl
	   ! Configure
     Branch: metaconfig
	   ! U/modified/Getfile.U
____________________________________________________________________________
[  6156] By: jhi                                   on 2000/05/29  03:01:38
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  +> ext/DynaLoader/dl_mac.xs
	  !> (integrate 38 files)
____________________________________________________________________________
[  6155] By: gsar                                  on 2000/05/28  21:15:58
        Log: small bug in change#6144; remove random \xA0 character that snuck
             in via change#6145
     Branch: perl
	   ! lib/AutoSplit.pm lib/ExtUtils/xsubpp
____________________________________________________________________________
[  6154] By: gsar                                  on 2000/05/28  21:04:19
        Log: avoid type mismatch warning
     Branch: perl
	   ! perl.c
____________________________________________________________________________
[  6153] By: gsar                                  on 2000/05/28  20:58:31
        Log: prettier Test::Harness output on failed tests (from Nicholas Clark
             <nick@Bagpuss.uk.boo.com>)
     Branch: perl
	   ! lib/Test/Harness.pm
____________________________________________________________________________
[  6152] By: gsar                                  on 2000/05/28  20:53:42
        Log: cosmetic fixups of RE debug output (from Ilya Zakharevich)
     Branch: perl
	   ! regexec.c
____________________________________________________________________________
[  6151] By: gsar                                  on 2000/05/28  20:50:28
        Log: fix accidental pessimization in RE optimizer (from Ilya Zakharevich)
     Branch: perl
	   ! regexec.c
____________________________________________________________________________
[  6150] By: gsar                                  on 2000/05/28  20:39:58
        Log: perlrequick.pod updates (from Mark Kvale <kvale@phy.ucsf.edu>)
     Branch: perl
	   ! pod/perlrequick.pod
____________________________________________________________________________
[  6149] By: gsar                                  on 2000/05/28  20:35:16
        Log: OS/2 tweaks for usethreads build (from Rocco Caputo
             <troc@netrus.net>)
     Branch: perl
	   ! Configure hints/os2.sh makedef.pl os2/Makefile.SHs
	   ! os2/OS2/REXX/t/rx_dllld.t os2/OS2/REXX/t/rx_objcall.t
	   ! os2/OS2/REXX/t/rx_tievar.t os2/OS2/REXX/t/rx_tieydb.t
	   ! os2/os2.c os2/os2ish.h perl.c util.c x2p/a2p.h
____________________________________________________________________________
[  6148] By: gsar                                  on 2000/05/28  20:21:07
        Log: close open file before chmod() (from Rocco Caputo <troc@netrus.net>)
     Branch: perl
	   ! lib/ExtUtils/MM_Unix.pm
____________________________________________________________________________
[  6147] By: gsar                                  on 2000/05/28  20:12:41
        Log: add a make entry to Config.pm so "perl -V:make" works on VMS
             (from Peter Prymmer)
     Branch: perl
	   ! vms/subconfigure.com
____________________________________________________________________________
[  6146] By: gsar                                  on 2000/05/28  20:06:15
        Log: doc typo
     Branch: perl
	   ! lib/warnings.pm warnings.h warnings.pl
____________________________________________________________________________
[  6145] By: gsar                                  on 2000/05/28  18:44:33
        Log: make xsubpp skip embedded pod (from Matthias Neeracher
             <neeri@iis.ee.ethz.ch>)
     Branch: perl
	   ! lib/ExtUtils/xsubpp
____________________________________________________________________________
[  6144] By: gsar                                  on 2000/05/28  18:42:49
        Log: MacOS support, part 2: make AutoSplit use File::Spec instead
             of assuming Unixisms; *UNTESTED on Unix* (from Matthias Neeracher
             <neeri@iis.ee.ethz.ch>)
     Branch: perl
	   ! lib/AutoSplit.pm
____________________________________________________________________________
[  6143] By: gsar                                  on 2000/05/28  18:41:12
        Log: MacOS support, part 1 (from Matthias Neeracher
             <neeri@iis.ee.ethz.ch>)
     Branch: perl
	   + ext/DynaLoader/dl_mac.xs
	   ! MANIFEST ext/DB_File/Makefile.PL ext/NDBM_File/Makefile.PL
	   ! ext/POSIX/POSIX.xs lib/ExtUtils/MakeMaker.pm mg.c perl.c
	   ! perlsfio.h pod/perlfaq4.pod pp_ctl.c proto.h toke.c util.c
	   ! util.h
____________________________________________________________________________
[  6142] By: gsar                                  on 2000/05/28  18:21:51
        Log: File::Find fails to chdir when chasing symlinks (from
             Helmut Jarausch <jarausch@igpm.rwth-aachen.de>)
     Branch: perl
	   ! lib/File/Find.pm t/lib/filefind.t
____________________________________________________________________________
[  6141] By: jhi                                   on 2000/05/28  14:25:15
        Log: BSD/OS (bsdi) hints update by Timur I. Bakeyev and Todd C. Miller,
             forwarded by Peter Seebach from the bsdi-users mailing list.
             p5p Message-Id: <200005280543.AAA24519@guild.plethora.net>
     Branch: perl
	   ! hints/bsdos.sh
____________________________________________________________________________
[  6140] By: jhi                                   on 2000/05/28  14:11:57
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  +> (branch 30 files)
	  !> (integrate 93 files)
____________________________________________________________________________
[  6139] By: gsar                                  on 2000/05/28  10:01:48
        Log: revise mktables.PL for bugs and newness in Unicode 3.0
             (from James Bence <jbence@amgen.com>)
     Branch: perl
	   + lib/unicode/Is/BidiAL.pl lib/unicode/Is/BidiBN.pl
	   + lib/unicode/Is/BidiLRE.pl lib/unicode/Is/BidiLRO.pl
	   + lib/unicode/Is/BidiNSM.pl lib/unicode/Is/BidiPDF.pl
	   + lib/unicode/Is/BidiRLE.pl lib/unicode/Is/BidiRLO.pl
	   + lib/unicode/Is/Cf.pl lib/unicode/Is/Cs.pl
	   + lib/unicode/Is/DCfraction.pl lib/unicode/Is/Me.pl
	   + lib/unicode/Is/Nl.pl lib/unicode/Is/Pc.pl lib/unicode/Is/Pf.pl
	   + lib/unicode/Is/Pi.pl lib/unicode/Is/Sk.pl
	   + lib/unicode/Is/SylAA.pl lib/unicode/Is/SylAAI.pl
	   + lib/unicode/Is/SylAI.pl lib/unicode/Is/SylEE.pl
	   + lib/unicode/Is/SylII.pl lib/unicode/Is/SylN.pl
	   + lib/unicode/Is/SylOO.pl lib/unicode/Is/SylWAA.pl
	   + lib/unicode/Is/SylWEE.pl lib/unicode/Is/SylWII.pl
	   + lib/unicode/Is/SylWO.pl lib/unicode/Is/SylWOO.pl
	   + lib/unicode/Is/SylWU.pl
	   ! MANIFEST lib/unicode/Is/Cn.pl lib/unicode/Is/Graph.pl
	   ! lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
	   ! lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
	   ! lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
	   ! lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
	   ! lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
	   ! lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
	   ! lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
	   ! lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
	   ! lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
	   ! lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
	   ! lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
	   ! lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
	   ! lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
	   ! lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
	   ! lib/unicode/Is/LbrkZW.pl lib/unicode/Is/Punct.pl
	   ! lib/unicode/Is/Space.pl lib/unicode/Is/SylA.pl
	   ! lib/unicode/Is/SylC.pl lib/unicode/Is/SylE.pl
	   ! lib/unicode/Is/SylI.pl lib/unicode/Is/SylO.pl
	   ! lib/unicode/Is/SylU.pl lib/unicode/Is/SylV.pl
	   ! lib/unicode/Is/SylWA.pl lib/unicode/Is/SylWC.pl
	   ! lib/unicode/Is/SylWE.pl lib/unicode/Is/SylWI.pl
	   ! lib/unicode/Is/SylWV.pl lib/unicode/Is/Upper.pl
	   ! lib/unicode/Makefile lib/unicode/mktables.PL
____________________________________________________________________________
[  6138] By: gsar                                  on 2000/05/28  08:50:32
        Log: add note about the handling of negative indices to tied arrays
             (from Michael G Schwern <schwern@pobox.com>)
     Branch: perl
	   ! pod/perltie.pod
____________________________________________________________________________
[  6137] By: gsar                                  on 2000/05/28  08:46:10
        Log: fix bogus redeclaration warning for "our" variables in different
             scopes
     Branch: perl
	   ! op.c t/pragma/strict-vars
____________________________________________________________________________
[  6136] By: gsar                                  on 2000/05/28  08:31:20
        Log: random pod typos (from Peter Scott <Peter@PSDT.com>)
     Branch: perl
	   ! ext/Devel/Peek/Peek.pm pod/perldebguts.pod
____________________________________________________________________________
[  6135] By: gsar                                  on 2000/05/28  08:17:50
        Log: enable Test::Harness to dynamically determine column width etc.
             (from Rob Napier <rnapier@employees.org>)
     Branch: perl
	   ! lib/Test/Harness.pm
____________________________________________________________________________
[  6134] By: gsar                                  on 2000/05/28  08:13:39
        Log: make Test::Harness use wait.h/WCOREDUMP if available
             (from Ben Tilly <ben_tilly@hotmail.com>)
     Branch: perl
	   ! lib/Test/Harness.pm
____________________________________________________________________________
[  6133] By: gsar                                  on 2000/05/28  08:08:05
        Log: elide bogus test in change#6132
     Branch: perl
	   ! t/pragma/warn/9enabled
____________________________________________________________________________
[  6132] By: gsar                                  on 2000/05/28  08:03:14
        Log: warnings::enabled() doesn't fall back to looking at $^W if
             caller isn't using lexical warnings (from Paul Marquess)
     Branch: perl
	   ! pp_ctl.c t/pragma/warn/9enabled
____________________________________________________________________________
[  6131] By: gsar                                  on 2000/05/28  07:57:47
        Log: avoid warnings in POSIX.pm (from Barrie Slaymaker)
     Branch: perl
	   ! ext/POSIX/POSIX.pm
____________________________________________________________________________
[  6130] By: gsar                                  on 2000/05/28  07:29:12
        Log: fix places that mean C<"word" character> but say C<alphanumeric
             character>
     Branch: perl
	   ! pod/perlfunc.pod pod/perlre.pod pod/perlretut.pod
____________________________________________________________________________
[  6129] By: gsar                                  on 2000/05/28  07:18:41
        Log: VMS test harness tweak (from Jesper Naur <jesper.naur@post.tele.dk>)
     Branch: perl
	   ! vms/test.com
____________________________________________________________________________
[  6128] By: gsar                                  on 2000/05/28  07:12:55
        Log: new perlxstut example for passing/returning refs to arrays
             (from David Lowe <dlowe@pootpoot.com>)
     Branch: perl
	   ! pod/perlxstut.pod
____________________________________________________________________________
[  6127] By: gsar                                  on 2000/05/28  07:02:50
        Log: call_method(...,G_EVAL) can longjmp() out if the method probing
             failed (from Gisle Aas)
     Branch: perl
	   ! cop.h perl.c
____________________________________________________________________________
[  6126] By: gsar                                  on 2000/05/28  06:39:53
        Log: change#2879 broke rvalue autovivification of magicals such as ${$num}
             (reworked variant of patch suggested by Simon Cozens)
     Branch: perl
	   ! embed.h embed.pl gv.c pod/perlapi.pod pod/perlintern.pod pp.c
	   ! pp_hot.c proto.h t/op/gv.t
____________________________________________________________________________
[  6125] By: gsar                                  on 2000/05/28  05:14:55
        Log: enable propagating exception objects via Perl_croak() in XS code
             (from Gisle Aas)
     Branch: perl
	   ! util.c
____________________________________________________________________________
[  6124] By: gsar                                  on 2000/05/28  05:07:28
        Log: integrate vmsperl contents into mainline
     Branch: perl
	  !> lib/ExtUtils/MM_VMS.pm lib/File/Spec/VMS.pm t/op/lex_assign.t
	  !> vms/ext/vmsish.pm vms/ext/vmsish.t vms/test.com vms/vms.c
	  !> vms/vmsish.h
____________________________________________________________________________
[  6123] By: gsar                                  on 2000/05/28  05:03:53
        Log: clarify gotcha with #line directives (from Rocco Caputo
             <troc@netrus.net>)
     Branch: perl
	   ! pod/perldebug.pod pod/perlsyn.pod
____________________________________________________________________________
[  6122] By: gsar                                  on 2000/05/28  04:58:29
        Log: downgrade fatal error on C<"foo@nosucharray.com"> to optional warning
             (from Mark-Jason Dominus)
     Branch: perl
	   ! lib/ExtUtils/typemap pod/perl56delta.pod pod/perlsub.pod
	   ! pod/perltrap.pod t/base/lex.t t/pragma/strict-vars
	   ! t/pragma/strict.t t/pragma/warn/toke t/pragma/warnings.t
	   ! toke.c
____________________________________________________________________________
[  6121] By: bailey                                on 2000/05/25  04:46:54
        Log: Allow eliminate_macros() and fixpath() to handle space-delimited
             lists (based on fixes by Craig Berry)
     Branch: vmsperl
	   ! lib/File/Spec/VMS.pm
____________________________________________________________________________
[  6120] By: bailey                                on 2000/05/25  04:25:38
        Log: Add missing escape (Charles Lane)
     Branch: vmsperl
	   ! t/op/lex_assign.t
____________________________________________________________________________
[  6119] By: bailey                                on 2000/05/25  04:21:25
        Log: Quiet error messages in vmsish.t (Charles Lane)
     Branch: vmsperl
	   ! vms/ext/vmsish.t
____________________________________________________________________________
[  6118] By: bailey                                on 2000/05/25  04:17:57
        Log: Regularize distinction between RMS$_DNF and RMS$_DIR (Craig Berry)
             Flatten case labels in switch statements uniformly (Charles Bailey)
     Branch: vmsperl
	   ! vms/vms.c
____________________________________________________________________________
[  6117] By: bailey                                on 2000/05/25  03:58:09
        Log: Treat sockets as special in sys(read|write) (Charles Lane et al.)
     Branch: vmsperl
	   ! vms/vmsish.h
____________________________________________________________________________
[  6116] By: bailey                                on 2000/05/25  03:11:15
        Log: Miscellaneous cosmetic fixes (Charles Lane)
     Branch: vmsperl
	   ! lib/ExtUtils/MM_VMS.pm
____________________________________________________________________________
[  6115] By: bailey                                on 2000/05/25  03:10:36
        Log: Add bounds checking for several strings (Charles Lane)
     Branch: vmsperl
	   ! vms/vms.c
____________________________________________________________________________
[  6114] By: bailey                                on 2000/05/25  02:25:34
        Log: Urk -- undo previous removal of vmsish 'exit' change
     Branch: vmsperl
	   ! vms/ext/vmsish.pm vms/vmsish.h
____________________________________________________________________________
[  6113] By: bailey                                on 2000/05/24  02:24:40
        Log: Ugly workaround for version-specific RTL error
     Branch: vmsperl
	   ! vms/vms.c
____________________________________________________________________________
[  6112] By: bailey                                on 2000/05/24  02:19:55
        Log: Check for existence of file before trying to delete
     Branch: vmsperl
	   ! vms/test.com
____________________________________________________________________________
[  6111] By: bailey                                on 2000/05/23  23:35:13
        Log: Resync with mainline prior to post-5.6.0 updates
     Branch: vmsperl
	  +> (branch 49 files)
	   - t/lib/thread.t t/op/64bit.t t/op/nothread.t
	   ! vms/ext/vmsish.pm
	  !> (integrate 334 files)
____________________________________________________________________________
[  6110] By: jhi                                   on 2000/05/23  19:28:32
        Log: todo tweak
     Branch: cfgperl
	   ! Todo-5.6
____________________________________________________________________________
[  6109] By: jhi                                   on 2000/05/18  17:38:54
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> mg.c perl.h win32/perlhost.h
____________________________________________________________________________
[  6108] By: gsar                                  on 2000/05/17  02:24:56
        Log: reenable fake signal handling on Windows, bugs and all
     Branch: perl
	   ! mg.c perl.h win32/perlhost.h
____________________________________________________________________________
[  6107] By: jhi                                   on 2000/05/15  18:01:41
        Log: Tweak the todo list.
     Branch: cfgperl
	   ! Todo-5.6
____________________________________________________________________________
[  6106] By: jhi                                   on 2000/05/15  13:41:48
        Log: The (Configure) script refuses to go on, after asking for
             'You may also choose to try maximal 64-bitness....'.
             If answer is yes the script can't find the 'workshoplibpth.cbu' file.
             -- Patrick Zima
             p5p Message-Id: <200005151108.NAA19733@pc026991.otn.lm.dasa.de> 
     Branch: cfgperl
	   ! hints/solaris_2.sh
____________________________________________________________________________
[  6105] By: jhi                                   on 2000/05/11  14:37:43
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
	  !> perlapi.c pod/perlapi.pod proto.h win32/win32.c
____________________________________________________________________________
[  6104] By: gsar                                  on 2000/05/11  03:39:07
        Log: PL_sys_intern was being initialized too late on windows
     Branch: perl
	   ! embed.h embed.pl global.sym makedef.pl objXSUB.h perl.c
	   ! perlapi.c pod/perlapi.pod proto.h win32/win32.c
____________________________________________________________________________
[  6103] By: jhi                                   on 2000/05/09  19:42:20
        Log: Test tweaking for Unicos continues.
     Branch: cfgperl
	   ! t/op/64bitint.t
____________________________________________________________________________
[  6102] By: jhi                                   on 2000/05/09  16:47:27
        Log: The test suite tweak in #6101 wasn't quite right.
     Branch: cfgperl
	   ! t/lib/complex.t
____________________________________________________________________________
[  6101] By: jhi                                   on 2000/05/09  15:35:34
        Log: Hints and test tweaks for Unicos.
     Branch: cfgperl
	   ! hints/unicos.sh t/lib/b.t t/lib/complex.t t/op/64bitint.t
____________________________________________________________________________
[  6100] By: jhi                                   on 2000/05/08  21:15:06
        Log: More compilation tweakery from Allen Smith.
     Branch: cfgperl
	   ! hints/irix_6.sh
____________________________________________________________________________
[  6099] By: jhi                                   on 2000/05/08  19:21:18
        Log: Tweaks for the cc bugs from Allen Smith.
     Branch: cfgperl
	   ! hints/irix_6.sh
____________________________________________________________________________
[  6098] By: jhi                                   on 2000/05/08  19:13:37
        Log: Add a note about other, yet unsupported, shadow password APIs.
     Branch: cfgperl
	   ! pp_sys.c
____________________________________________________________________________
[  6097] By: jhi                                   on 2000/05/08  18:46:34
        Log: Add a note about possible compilation problems from Allen Smith.
     Branch: cfgperl
	   ! hints/irix_6.sh
____________________________________________________________________________
[  6096] By: jhi                                   on 2000/05/08  17:33:10
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
	  !> hints/cygwin.sh pp_sys.c sv.c win32/perlhost.h
____________________________________________________________________________
[  6095] By: jhi                                   on 2000/05/08  16:21:33
        Log: Introduce NV_PRESERVED_BITS.  Not yet used anywhere but
             might be useful in future.
     Branch: cfgperl
	   ! Configure Porting/Glossary Porting/config.sh Porting/config_H
	   ! config_h.SH
     Branch: metaconfig
	   ! U/installdirs/inc_version_list.U
     Branch: metaconfig/U/perl
	   ! perlxv.U
____________________________________________________________________________
[  6094] By: gsar                                  on 2000/05/08  14:22:22
        Log: cygwin update (from Eric Fifer <efifer@sanwaint.com>)
     Branch: perl
	   ! README.cygwin cygwin/Makefile.SHs cygwin/cygwin.c
	   ! hints/cygwin.sh pp_sys.c
____________________________________________________________________________
[  6093] By: gsar                                  on 2000/05/08  12:52:28
        Log: fork() failure to create pseudo process sets errno=EAGAIN and returns
             undef on windows (from Clinton Pierce <clintp@geeksalad.org>)
     Branch: perl
	   ! pp_sys.c sv.c win32/perlhost.h
____________________________________________________________________________
[  6092] By: jhi                                   on 2000/05/07  22:40:34
        Log: Regen perltoc with the fixed buildtoc.
     Branch: cfgperl
	   ! pod/perltoc.pod
____________________________________________________________________________
[  6091] By: jhi                                   on 2000/05/07  22:24:16
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> perl.c pod/buildtoc pp.c pp_hot.c sv.c t/op/quotemeta.t
	  !> t/op/substr.t toke.c
____________________________________________________________________________
[  6090] By: gsar                                  on 2000/05/07  19:47:07
        Log: concat doesn't preserve utf8-ness, and doesn't invalidate
             [NI]OK; added tests for both
     Branch: perl
	   ! perl.c pp_hot.c sv.c t/op/substr.t
____________________________________________________________________________
[  6089] By: gsar                                  on 2000/05/07  18:18:38
        Log: buildtoc tweak to fix newline lossage
     Branch: perl
	   ! pod/buildtoc
____________________________________________________________________________
[  6088] By: jhi                                   on 2000/05/07  16:35:36
        Log: Remove HAS_SETSPENT, HAS_GETSPENT, HAS_ENDSPENT,
             because we do not use those.  The HAS_GETSPNAM remains,
             though, because we still do use that.
     Branch: cfgperl
	   ! Configure Porting/Glossary Porting/config.sh Porting/config_H
	   ! config_h.SH epoc/config.sh hints/machten.sh pod/perltoc.pod
	   ! pp_sys.c vms/subconfigure.com vos/config.def vos/config.h
	   ! vos/config_h.SH_orig win32/config.bc win32/config.gc
	   ! win32/config.vc win32/config_H.bc win32/config_H.gc
	   ! win32/config_H.vc win32/config_h.PL win32/config_sh.PL
____________________________________________________________________________
[  6087] By: gsar                                  on 2000/05/07  16:05:16
        Log: reverse() and quotemeta() weren't preserving utf8-ness; add tests
     Branch: perl
	   ! pp.c sv.c t/op/quotemeta.t t/op/substr.t toke.c
____________________________________________________________________________
[  6086] By: jhi                                   on 2000/05/07  15:27:07
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  +> lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
	  +> t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
	  !> AUTHORS MAINTAIN MANIFEST iperlsys.h lib/Carp/Heavy.pm
	  !> lib/diagnostics.pm pod/perlfunc.pod pod/perlrun.pod
	  !> pod/perltie.pod pp.c t/lib/peek.t t/op/substr.t
	  !> utils/perlbug.PL vms/vms.c vms/vmsish.h
____________________________________________________________________________
[  6085] By: gsar                                  on 2000/05/07  05:52:02
        Log: repeat operator (x) doesn't preserve utf8-ness
     Branch: perl
	   ! pp.c t/op/substr.t
____________________________________________________________________________
[  6084] By: gsar                                  on 2000/05/07  05:39:55
        Log: substr() does not preserve utf8-ness (from Stefan Eissing
             <Eissing@medicaldataservice.de>); added tests
     Branch: perl
	   ! pp.c t/op/substr.t
____________________________________________________________________________
[  6083] By: gsar                                  on 2000/05/07  05:24:46
        Log: note about undocumented caller() return value (from M.J.T. Guy);
             yet another peek.t tweak
     Branch: perl
	   ! pod/perlfunc.pod t/lib/peek.t
____________________________________________________________________________
[  6082] By: gsar                                  on 2000/05/07  05:08:40
        Log: peek.t non-portable to ithreads
     Branch: perl
	   ! t/lib/peek.t
____________________________________________________________________________
[  6081] By: gsar                                  on 2000/05/07  04:17:04
        Log: better default perlbug categories for ok reports (from Richard Foley)
     Branch: perl
	   ! utils/perlbug.PL
____________________________________________________________________________
[  6080] By: gsar                                  on 2000/05/07  04:08:07
        Log: add File::Temp v0.08 from CPAN, with small tweaks to testsuite
             (from Tim Jenness <t.jenness@jach.hawaii.edu>)
     Branch: perl
	   + lib/File/Temp.pm t/lib/ftmp-mktemp.t t/lib/ftmp-posix.t
	   + t/lib/ftmp-security.t t/lib/ftmp-tempfile.t
	   ! AUTHORS MAINTAIN MANIFEST
____________________________________________________________________________
[  6079] By: gsar                                  on 2000/05/07  04:01:38
        Log: remove outdated kludge in Carp (NULLs are permitted in diagnostics now)
     Branch: perl
	   ! lib/Carp/Heavy.pm
____________________________________________________________________________
[  6078] By: gsar                                  on 2000/05/07  01:24:19
        Log: workaround for CRT bug in chdir() (from Charles Lane, via
             Peter Prymmer)
     Branch: perl
	   ! iperlsys.h vms/vms.c vms/vmsish.h
____________________________________________________________________________
[  6077] By: gsar                                  on 2000/05/07  01:22:23
        Log: avoid warnings in diagnostics.pm; pod tweaks (from Peter Prymmer
             and Tom Phoenix)
     Branch: perl
	   ! lib/diagnostics.pm pod/perlrun.pod pod/perltie.pod
____________________________________________________________________________
[  6076] By: gsar                                  on 2000/05/06  17:36:29
        Log: integrate cfgperl contents into mainline
     Branch: perl
	  +> t/lib/peek.t
	  !> Configure MANIFEST Porting/Glossary Porting/config.sh
	  !> Porting/config_H config_h.SH ext/POSIX/POSIX.xs
	  !> hints/unicos.sh lib/Math/Complex.pm pp_sys.c sv.c
	  !> t/lib/complex.t t/op/grent.t t/op/pwent.t toke.c util.c
____________________________________________________________________________
[  6075] By: jhi                                   on 2000/05/05  18:56:10
        Log: Make the test more portable.
     Branch: cfgperl
	   ! t/lib/peek.t
____________________________________________________________________________
[  6074] By: jhi                                   on 2000/05/05  18:49:20
        Log: Introduce t/lib/peek.t.
     Branch: cfgperl
	   + t/lib/peek.t
	   ! MANIFEST
____________________________________________________________________________
[  6073] By: jhi                                   on 2000/05/05  14:30:45
        Log: Complex tweaks.
     Branch: cfgperl
	   ! lib/Math/Complex.pm t/lib/complex.t
____________________________________________________________________________
[  6072] By: jhi                                   on 2000/05/05  12:27:13
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
	  !> lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
	  !> lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm perl.c
	  !> pod/perlfunc.pod t/lib/anydbm.t win32/win32.c
____________________________________________________________________________
[  6071] By: gsar                                  on 2000/05/05  02:24:46
        Log: misformatted perllocal.pod (from Tim Jenness
             <t.jenness@jach.hawaii.edu>)
     Branch: perl
	   ! lib/ExtUtils/MM_Unix.pm lib/ExtUtils/MM_Win32.pm
____________________________________________________________________________
[  6070] By: gsar                                  on 2000/05/05  02:16:52
        Log: remove misleading comment (from M.J.T. Guy)
     Branch: perl
	   ! t/lib/anydbm.t
____________________________________________________________________________
[  6069] By: gsar                                  on 2000/05/05  02:15:13
        Log: File::Spec compatibility update (from Barrie Slaymaker
             <barries@slaysys.com>)
     Branch: perl
	   ! lib/File/Spec.pm lib/File/Spec/Mac.pm lib/File/Spec/Unix.pm
	   ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
____________________________________________________________________________
[  6068] By: gsar                                  on 2000/05/05  02:01:50
        Log: note about values()
     Branch: perl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[  6067] By: gsar                                  on 2000/05/05  01:33:09
        Log: replace direct call to sighandler() with (*PL_sighandlerp)()
     Branch: perl
	   ! win32/win32.c
____________________________________________________________________________
[  6066] By: gsar                                  on 2000/05/05  01:23:43
        Log: s/END/CHECK/
     Branch: perl
	   ! perl.c
____________________________________________________________________________
[  6065] By: jhi                                   on 2000/05/04  17:30:22
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> pp_sys.c sv.c t/pragma/utf8.t toke.c
____________________________________________________________________________
[  6064] By: gsar                                  on 2000/05/04  17:26:14
        Log: change#5905 wasn't quite right--it's intent only applies when arguments
             to sv_vcatpvfn() are SVs instead of C types; back out change#5907 as well
     Branch: perl
	   ! pp_sys.c sv.c
____________________________________________________________________________
[  6063] By: gsar                                  on 2000/05/04  16:52:29
        Log: tokeq() could read unallocated field in argument
     Branch: perl
	   ! toke.c
____________________________________________________________________________
[  6062] By: gsar                                  on 2000/05/04  16:34:51
        Log: additional tests for utf8.t
     Branch: perl
	   ! t/pragma/utf8.t
____________________________________________________________________________
[  6061] By: gsar                                  on 2000/05/04  16:09:28
        Log: change#5921 neglected to make eq honor "use bytes"
     Branch: perl
	   ! sv.c
____________________________________________________________________________
[  6060] By: jhi                                   on 2000/05/04  15:30:16
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> perl.c regcomp.c t/pragma/utf8.t
____________________________________________________________________________
[  6059] By: jhi                                   on 2000/05/04  15:26:37
        Log: The logic of choosing strtol/strtoul/strtoll/strtoull was wrong
             in natively 64-bit platforms where a long is a quad (no need
             for long longs).  Also added bias for IVs.
     Branch: cfgperl
	   ! toke.c
____________________________________________________________________________
[  6058] By: gsar                                  on 2000/05/04  00:19:14
        Log: printf(...) should be PerlIO_printf(PerlIO_stdout(), ...)
             (spotted by Donald Kinzer <dkinzer@premia.com>)
     Branch: perl
	   ! perl.c
____________________________________________________________________________
[  6057] By: gsar                                  on 2000/05/03  18:34:01
        Log: fix broken parsing of /\x{ab}/
     Branch: perl
	   ! regcomp.c t/pragma/utf8.t
____________________________________________________________________________
[  6056] By: jhi                                   on 2000/05/03  17:57:16
        Log: The search of infinity continues, this time simplified.
     Branch: cfgperl
	   ! lib/Math/Complex.pm
____________________________________________________________________________
[  6055] By: jhi                                   on 2000/05/03  17:45:30
        Log: Detypo.
     Branch: cfgperl
	   ! hints/unicos.sh
____________________________________________________________________________
[  6054] By: jhi                                   on 2000/05/02  22:28:27
        Log: Be more forgiving in POSIX about HUGE_VALL.
     Branch: cfgperl
	   ! ext/POSIX/POSIX.xs
____________________________________________________________________________
[  6053] By: jhi                                   on 2000/05/02  22:25:05
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> hints/irix_6.sh pod/perlop.pod
____________________________________________________________________________
[  6052] By: jhi                                   on 2000/05/02  22:24:31
        Log: Unicos hint tweak.
     Branch: cfgperl
	   ! hints/unicos.sh
____________________________________________________________________________
[  6051] By: jhi                                   on 2000/05/02  22:21:26
        Log: Complex tweakery.
     Branch: cfgperl
	   ! lib/Math/Complex.pm t/lib/complex.t
____________________________________________________________________________
[  6050] By: jhi                                   on 2000/05/02  19:26:22
        Log: Use setxxent()/endxxent().
     Branch: cfgperl
	   ! t/op/grent.t t/op/pwent.t
____________________________________________________________________________
[  6049] By: jhi                                   on 2000/05/02  19:06:02
        Log: Test both the scalar and array contexts.
     Branch: cfgperl
	   ! t/op/grent.t t/op/pwent.t
____________________________________________________________________________
[  6048] By: gsar                                  on 2000/05/02  18:29:10
        Log: add note about how $( doesn't interpolate in REs (from
             Philip Newton <newton@ficus.frogspace.net>)
     Branch: perl
	   ! pod/perlop.pod
____________________________________________________________________________
[  6047] By: jhi                                   on 2000/05/02  17:41:24
        Log: Call getspnam() only iff needd.
     Branch: cfgperl
	   ! pp_sys.c
____________________________________________________________________________
[  6046] By: gsar                                  on 2000/05/02  17:07:25
        Log: libscheck has insufficient checks for n32 libs (from
             Albert Chin-A-Young <china@thewrittenword.com>)
     Branch: perl
	   ! hints/irix_6.sh
____________________________________________________________________________
[  6045] By: jhi                                   on 2000/05/02  13:57:17
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> MANIFEST Porting/makerel perl.c pod/perlretut.pod
	  !> pod/perltrap.pod pp.c regcomp.c t/op/oct.t toke.c util.c
____________________________________________________________________________
[  6044] By: gsar                                  on 2000/05/02  06:48:19
        Log: change#3798 broke the meaning of "\0_7_7", tr/\0_// etc.; fix it
             such that underscores are only ignored in literal numbers,
             "\x{...}", and hex/oct argument
     Branch: perl
	   ! perl.c pp.c regcomp.c t/op/oct.t toke.c util.c
____________________________________________________________________________
[  6043] By: gsar                                  on 2000/05/02  02:22:29
        Log: perlretut revisions (from Mark Kvale <kvale@phy.ucsf.edu>)
     Branch: perl
	   ! pod/perlretut.pod
____________________________________________________________________________
[  6042] By: gsar                                  on 2000/05/02  02:17:51
        Log: remove outdated perltrap entry (from Peter Scott <Peter@PSDT.com>)
     Branch: perl
	   ! pod/perltrap.pod
____________________________________________________________________________
[  6041] By: gsar                                  on 2000/05/02  01:53:51
        Log: cpio 2.4.2 on Linux creates directories in 0700 mode, adjust makerel
             to compensate
     Branch: perl
	   ! Porting/makerel
____________________________________________________________________________
[  6040] By: gsar                                  on 2000/05/02  01:51:57
        Log: missing files in MANIFEST
     Branch: perl
	   ! MANIFEST
____________________________________________________________________________
[  6039] By: jhi                                   on 2000/05/02  00:36:46
        Log: Infinite problems.
     Branch: cfgperl
	   ! lib/Math/Complex.pm
____________________________________________________________________________
[  6038] By: jhi                                   on 2000/05/02  00:06:38
        Log: pwent/spent #ifdef imbalance.
     Branch: cfgperl
	   ! pp_sys.c
____________________________________________________________________________
[  6037] By: jhi                                   on 2000/05/01  22:50:11
        Log: Use HUGE_VALL if applicable.
     Branch: cfgperl
	   ! ext/POSIX/POSIX.xs util.c
____________________________________________________________________________
[  6036] By: jhi                                   on 2000/05/01  22:20:53
        Log: Correct Freudian slip.
     Branch: cfgperl
	   ! pp_sys.c
____________________________________________________________________________
[  6035] By: jhi                                   on 2000/05/01  21:07:38
        Log: Continue on the pwent/spent case.
     Branch: cfgperl
	   ! pp_sys.c
____________________________________________________________________________
[  6034] By: jhi                                   on 2000/05/01  17:45:14
        Log: Integrate with Sarathy; unfortunately Sarathy's whitespace
             adjustments in 6032 conflicted badly with this, will have
             to revisit them later.
     Branch: cfgperl
	  +> lib/CGI/Util.pm t/lib/cgi-pretty.t
	  !> MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
	  !> lib/CGI/Pretty.pm lib/CGI/Push.pm lib/English.pm
	  !> lib/Pod/Man.pm lib/Pod/Text.pm lib/diagnostics.pm
	  !> pod/perldiag.pod pod/perlvar.pod pp_sys.c t/lib/cgi-function.t
	  !> t/lib/cgi-html.t t/lib/cgi-request.t
____________________________________________________________________________
[  6033] By: jhi                                   on 2000/05/01  17:40:49
        Log: Rewrite the pwent/spent logic to be a little bit more clearer.
     Branch: cfgperl
	   ! pp_sys.c
____________________________________________________________________________
[  6032] By: gsar                                  on 2000/05/01  15:56:32
        Log: whitespace adjustments
     Branch: perl
	   ! pp_sys.c
____________________________________________________________________________
[  6031] By: gsar                                  on 2000/05/01  15:19:41
        Log: small nits in diagnostics.pm (from Robin Barker)
     Branch: perl
	   ! lib/diagnostics.pm pod/perldiag.pod
____________________________________________________________________________
[  6030] By: gsar                                  on 2000/05/01  08:39:18
        Log: introduce @LAST_MATCH_START and @LAST_MATCH_END, English aliases
             for @- and @+ (from Johan Vromans)
     Branch: perl
	   ! lib/English.pm pod/perlvar.pod
____________________________________________________________________________
[  6029] By: gsar                                  on 2000/05/01  08:16:10
        Log: add CGI.pm v2.66 (from Lincoln Stein)
     Branch: perl
	   + lib/CGI/Util.pm t/lib/cgi-pretty.t
	   ! MANIFEST lib/CGI.pm lib/CGI/Carp.pm lib/CGI/Cookie.pm
	   ! lib/CGI/Pretty.pm lib/CGI/Push.pm t/lib/cgi-function.t
	   ! t/lib/cgi-html.t t/lib/cgi-request.t
____________________________________________________________________________
[  6028] By: gsar                                  on 2000/05/01  06:34:41
        Log: Pod::Man generates groff-incompatible macro definition (from
             Tom Christiansen)
     Branch: perl
	   ! lib/Pod/Man.pm
____________________________________________________________________________
[  6027] By: gsar                                  on 2000/05/01  06:31:36
        Log: podlators-1.02 update (from Russ Allbery)
     Branch: perl
	   ! lib/Pod/Man.pm lib/Pod/Text.pm
____________________________________________________________________________
[  6026] By: jhi                                   on 2000/04/30  23:24:23
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> README.win32 ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
	  !> ext/Sys/Syslog/Syslog.xs lib/perl5db.pl
	  !> lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
	  !> lib/unicode/Is/Word.pl lib/unicode/mktables.PL
	  !> pod/perl56delta.pod sv.c t/lib/b.t t/lib/open3.t
	  !> t/lib/syslog.t toke.c win32/win32.h
____________________________________________________________________________
[  6025] By: gsar                                  on 2000/04/30  18:17:47
        Log: Is{Alnum,Alpha,Word} don't match titlecase
             
             TODO: IsSpace is defined recursively!
             
             (both spotted by Larry)
     Branch: perl
	   ! lib/unicode/Is/Alnum.pl lib/unicode/Is/Alpha.pl
	   ! lib/unicode/Is/Word.pl lib/unicode/mktables.PL
____________________________________________________________________________
[  6024] By: gsar                                  on 2000/04/30  17:50:19
        Log: extend "Unrecognized escape" warning to \8, \9, and \_ as well
             (from Hugo van der Sanden)
     Branch: perl
	   ! toke.c
____________________________________________________________________________
[  6023] By: gsar                                  on 2000/04/30  17:14:43
        Log: debugger stomps on $. (from M.J.T. Guy)
     Branch: perl
	   ! lib/perl5db.pl
____________________________________________________________________________
[  6022] By: gsar                                  on 2000/04/30  16:59:22
        Log: unbalanced LEAVE after perl_clone(...,0) (from Doug MacEachern)
     Branch: perl
	   ! sv.c
____________________________________________________________________________
[  6021] By: gsar                                  on 2000/04/29  21:00:08
        Log: remove Win2K issue in pod (fixed by change#6020)
     Branch: perl
	   ! README.win32 pod/perl56delta.pod
____________________________________________________________________________
[  6020] By: gsar                                  on 2000/04/29  20:51:49
        Log: test tweak
     Branch: perl
	   ! t/lib/open3.t
____________________________________________________________________________
[  6019] By: gsar                                  on 2000/04/29  20:34:27
        Log: windows portability tweaks
     Branch: perl
	   ! t/lib/b.t win32/win32.h
____________________________________________________________________________
[  6018] By: gsar                                  on 2000/04/29  19:55:24
        Log: make lib/syslog.t portable to systems that don't have _PATH_LOG,
             make _PATH_LOG() return "" if unavailable
     Branch: perl
	   ! ext/File/Glob/Glob.pm ext/Sys/Syslog/Syslog.pm
	   ! ext/Sys/Syslog/Syslog.xs t/lib/syslog.t
____________________________________________________________________________
[  6017] By: jhi                                   on 2000/04/28  22:49:46
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> op.c perl.c pod/perldiag.pod t/lib/b.t
____________________________________________________________________________
[  6016] By: jhi                                   on 2000/04/28  22:46:14
        Log: Do not warn that an infinity does not look like a number.
     Branch: cfgperl
	   ! sv.c
____________________________________________________________________________
[  6015] By: gsar                                  on 2000/04/28  22:35:49
        Log: tweak test for portability
     Branch: perl
	   ! t/lib/b.t
____________________________________________________________________________
[  6014] By: gsar                                  on 2000/04/28  22:05:31
        Log: glob() loading File::Glob behind the scenes may cause syntax errors
     Branch: perl
	   ! op.c
____________________________________________________________________________
[  6013] By: gsar                                  on 2000/04/28  21:25:22
        Log: tweak change#5945 to display correct switch name in diagnostic
     Branch: perl
	   ! perl.c pod/perldiag.pod
____________________________________________________________________________
[  6012] By: jhi                                   on 2000/04/28  21:08:12
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> Changes ext/IO/lib/IO/Poll.pm installperl pod/perl56delta.pod
	  !> pod/perldelta.pod pod/perlfunc.pod pod/perlmod.pod
	  !> t/lib/io_poll.t utils/perldoc.PL vms/subconfigure.com
____________________________________________________________________________
[  6011] By: jhi                                   on 2000/04/28  21:04:46
        Log: &HUGE_VAL is not defined, it exists.
     Branch: cfgperl
	   ! lib/Math/Complex.pm
____________________________________________________________________________
[  6010] By: gsar                                  on 2000/04/28  21:02:58
        Log: clarify note about shadow password support (from
             gellyfish@gellyfish.com)
     Branch: perl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[  6009] By: gsar                                  on 2000/04/28  21:00:00
        Log: IO::Poll bugs fixed (from Lincoln Stein <lstein@cshl.org>)
     Branch: perl
	   ! ext/IO/lib/IO/Poll.pm t/lib/io_poll.t
____________________________________________________________________________
[  6008] By: gsar                                  on 2000/04/28  20:56:33
        Log: VMS config tweak (from Craig A. Berry <craig.berry@metamorgs.com>)
     Branch: perl
	   ! installperl vms/subconfigure.com
____________________________________________________________________________
[  6007] By: gsar                                  on 2000/04/28  20:51:21
        Log: note about compile failures and END blocks (from M.J.T. Guy)
     Branch: perl
	   ! pod/perl56delta.pod pod/perlmod.pod
____________________________________________________________________________
[  6006] By: jhi                                   on 2000/04/28  20:42:14
        Log: Regen Configure.
     Branch: cfgperl
	   ! Configure Porting/Glossary Porting/config.sh Porting/config_H
	   ! config_h.SH
____________________________________________________________________________
[  6005] By: gsar                                  on 2000/04/28  20:41:16
        Log: perldoc might fail via "use blib" (from Hugo van der Sanden)
     Branch: perl
	   ! utils/perldoc.PL
____________________________________________________________________________
[  6004] By: jhi                                   on 2000/04/28  20:28:21
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> Configure INSTALL Porting/Glossary Porting/config.sh
	  !> Porting/config_H config_h.SH epoc/config.sh perl.c sv.c
	  !> t/pragma/warn/toke toke.c vms/subconfigure.com vos/config.def
	  !> vos/config_h.SH_orig win32/config.bc win32/config.gc
	  !> win32/config.vc win32/win32.c
____________________________________________________________________________
[  6003] By: gsar                                  on 2000/04/28  20:11:20
        Log: allow REG_EXPAND_SZ keys in Windows registry (from
             John Clayton <John.Clayton@barclayscapital.com>)
     Branch: perl
	   ! win32/win32.c
____________________________________________________________________________
[  6002] By: gsar                                  on 2000/04/28  19:34:16
        Log: destructive sv_setsv() can lose UV-ness from source, causing
             numeric promotions/comparisons to fail to do the right thing
     Branch: perl
	   ! sv.c
____________________________________________________________________________
[  6001] By: gsar                                  on 2000/04/28  18:44:15
        Log: support additional library locations via $Config{otherlibdirs}
             (from Andy Dougherty)
     Branch: perl
	   ! Configure INSTALL Porting/Glossary Porting/config.sh
	   ! Porting/config_H config_h.SH epoc/config.sh perl.c
	   ! vms/subconfigure.com vos/config.def vos/config_h.SH_orig
	   ! win32/config.bc win32/config.gc win32/config.vc
____________________________________________________________________________
[  6000] By: gsar                                  on 2000/04/28  18:26:58
        Log: reworked otherlibdirs.U (from Andy Dougherty)
     Branch: metaconfig
	   ! U/installdirs/otherlibdirs.U
____________________________________________________________________________
[  5999] By: gsar                                  on 2000/04/28  18:17:07
        Log: fix line renumbering bug in C<eval qq[#line 10 "X"\nwarn]>
     Branch: perl
	   ! t/pragma/warn/toke toke.c
____________________________________________________________________________
[  5998] By: jhi                                   on 2000/04/28  13:32:17
        Log: Try to get "Inf" by using &POSIX::HUGE_VAL in sprintf.
     Branch: cfgperl
	   ! lib/Math/Complex.pm
____________________________________________________________________________
[  5997] By: jhi                                   on 2000/04/28  13:14:04
        Log: Preserve $!.
     Branch: cfgperl
	   ! lib/Math/Complex.pm
____________________________________________________________________________
[  5996] By: jhi                                   on 2000/04/28  12:59:23
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  +> pod/perlrequick.pod pod/perlretut.pod
	  !> (integrate 51 files)
____________________________________________________________________________
[  5995] By: gsar                                  on 2000/04/28  09:37:36
        Log: fixes for bugs in C<use warnings qw(FATAL all)> (from Paul Marquess)
     Branch: perl
	   ! mg.c t/pragma/warn/7fatal warnings.h warnings.pl
____________________________________________________________________________
[  5994] By: gsar                                  on 2000/04/28  09:33:26
        Log: fix for missed accounting for null byte in pack("Z",...) (from
             M.J.T. Guy)
     Branch: perl
	   ! pp.c t/op/pack.t
____________________________________________________________________________
[  5993] By: gsar                                  on 2000/04/28  09:30:05
        Log: various minor tweaks seen on p5p
     Branch: perl
	   ! lib/perl5db.pl pod/perlipc.pod pod/perlvar.pod
____________________________________________________________________________
[  5992] By: gsar                                  on 2000/04/28  09:08:19
        Log: pod nit (from Simon Cozens)
     Branch: perl
	   ! pod/perlop.pod
____________________________________________________________________________
[  5991] By: gsar                                  on 2000/04/28  09:06:36
        Log: posix-bc patches (from Dorner Thomas <Thomas.Dorner@start.de>)
     Branch: perl
	   ! README.posix-bc hints/posix-bc.sh
____________________________________________________________________________
[  5990] By: gsar                                  on 2000/04/28  08:54:52
        Log: use $ENV{LIB} to search for libs under Visual C compiler
             on Windows (from Jochen Wiedmann <joe@ispsoft.de>)
     Branch: perl
	   ! lib/ExtUtils/Liblist.pm
____________________________________________________________________________
[  5989] By: gsar                                  on 2000/04/28  08:27:12
        Log: qw(a\\b) must be parsed like 'a\\b', i.e., backslash escapes
             itself and no other (from Tom Hughes)
     Branch: perl
	   ! t/op/array.t toke.c
____________________________________________________________________________
[  5988] By: gsar                                  on 2000/04/28  08:01:38
        Log: s/HTMLSCRIPTPOD/HTMLSCRIPTPODS/ (from Paul Sharpe
             <paul@miraclefish.com>)
     Branch: perl
	   ! lib/ExtUtils/MakeMaker.pm
____________________________________________________________________________
[  5987] By: gsar                                  on 2000/04/28  07:53:09
        Log: B::Bytecode tweaks (from Simon Cozens <simon@brecon.co.uk>)
     Branch: perl
	   ! ext/B/B/Bytecode.pm ext/B/B/Disassembler.pm
____________________________________________________________________________
[  5986] By: gsar                                  on 2000/04/28  07:44:17
        Log: add regular expressions tutorial and quick-start guide (from
             Mark Kvale <kvale@phy.ucsf.edu>)
     Branch: perl
	   + pod/perlrequick.pod pod/perlretut.pod
	   ! AUTHORS MAINTAIN MANIFEST
____________________________________________________________________________
[  5985] By: gsar                                  on 2000/04/28  07:30:28
        Log: forked child may not exit correctly if it failed to open
             /dev/console (from Graham Barr)
     Branch: perl
	   ! ext/Sys/Syslog/Syslog.pm
____________________________________________________________________________
[  5984] By: gsar                                  on 2000/04/28  07:27:20
        Log: attributes::reftype() doesn't work on tied argument
     Branch: perl
	   ! xsutils.c
____________________________________________________________________________
[  5983] By: gsar                                  on 2000/04/28  07:15:04
        Log: numeric conversion of non-number in change#3378 tramples on
             OOK offset, causing segfaults
     Branch: perl
	   ! sv.c
____________________________________________________________________________
[  5982] By: gsar                                  on 2000/04/28  04:48:25
        Log: avoid error in IO::Socket::INET when given an unknown service name
             with a port number (from Brian Raven <brianr@ssprdmh01.liffe.com>)
     Branch: perl
	   ! ext/IO/lib/IO/Socket/INET.pm
____________________________________________________________________________
[  5981] By: gsar                                  on 2000/04/28  04:31:31
        Log: rename File::Glob::glob() to File::Glob::bsd_glob() to avoid
             prototype mismatch with CORE::glob(); update pod and tests to
             suit (File::Glob::glob() is still available for backward
             compatibility, but should be considered deprecated)
     Branch: perl
	   ! ext/File/Glob/Glob.pm t/lib/glob-basic.t t/lib/glob-case.t
	   ! t/lib/glob-taint.t
____________________________________________________________________________
[  5980] By: gsar                                  on 2000/04/28  03:47:29
        Log: allow Configure -S to run non-interactively (spotted by Greg Hudson
             <ghudson@mit.edu>)
     Branch: metaconfig
	   ! U/modified/Options.U
     Branch: perl
	   ! Configure
____________________________________________________________________________
[  5979] By: gsar                                  on 2000/04/28  03:07:54
        Log: under useithreads, constant pad entries could inadvertantly be
             shared across threads (from Eric Blood <eblood@xmission.com>);
             added Eric's test case to testsuite
     Branch: perl
	   ! op.c t/op/misc.t
____________________________________________________________________________
[  5978] By: gsar                                  on 2000/04/27  21:13:00
        Log: sync version numbers in File::Spec with the ones on CPAN
             (from Barrie Slaymaker)
     Branch: perl
	   ! lib/File/Spec/Functions.pm lib/File/Spec/Mac.pm
	   ! lib/File/Spec/OS2.pm lib/File/Spec/Unix.pm
	   ! lib/File/Spec/VMS.pm lib/File/Spec/Win32.pm
____________________________________________________________________________
[  5977] By: gsar                                  on 2000/04/27  21:07:29
        Log: autoquote barewords followed by newline and arrow properly
             (variant of fix suggested by Rick Delaney and M.J.T. Guy)
     Branch: perl
	   ! t/pragma/warn/toke toke.c
____________________________________________________________________________
[  5976] By: gsar                                  on 2000/04/27  20:41:20
        Log: DB_File v1.73 update (from Paul Marquess)
     Branch: perl
	   ! ext/DB_File/Changes ext/DB_File/DB_File.pm
	   ! ext/DB_File/DB_File.xs ext/DB_File/version.c
____________________________________________________________________________
[  5975] By: gsar                                  on 2000/04/27  20:34:24
        Log: allow sort() reentrancy (variant of patch suggested by
             Hugo van der Sanden)
     Branch: perl
	   ! pp_ctl.c t/op/sort.t
____________________________________________________________________________
[  5974] By: gsar                                  on 2000/04/27  19:46:57
        Log: change#4197 somehow missed initializing PL_errors, meaning
             sytax error queueing wasn't working outside eval"" at all;
             also fixed eval"" to localize PL_error_count, so that compile-time
             eval's don't clobber the error state of the outer context
     Branch: perl
	   ! lib/Math/Complex.pm perl.c pp_ctl.c t/pragma/warn/op
	   ! t/pragma/warn/toke
____________________________________________________________________________
[  5973] By: gsar                                  on 2000/04/27  18:29:05
        Log: fix for failure to match $foo =~ /(?i)/ (from Ilya Zakharevich)
     Branch: perl
	   ! regcomp.c regexec.c t/op/re_tests
____________________________________________________________________________
[  5972] By: jhi                                   on 2000/04/27  18:22:41
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  +> t/lib/b.t t/lib/syslog.t
	  !> (integrate 31 files)
____________________________________________________________________________
[  5971] By: jhi                                   on 2000/04/27  18:18:46
        Log: Unicos tweaks from Mark P. Lutz.
     Branch: cfgperl
	   ! hints/unicos.sh lib/Math/Complex.pm
____________________________________________________________________________
[  5970] By: gsar                                  on 2000/04/27  18:05:11
        Log: Data::Dumper fumbles negative numbers on 32-bit platforms where
             IV is >32bits
     Branch: perl
	   ! ext/Data/Dumper/Dumper.xs t/lib/dumper.t
____________________________________________________________________________
[  5969] By: gsar                                  on 2000/04/27  17:50:56
        Log: fix Sys::Syslog breakage on domain sockets (from Tom Hughes)
     Branch: perl
	   + t/lib/syslog.t
	   ! MANIFEST ext/Sys/Syslog/Syslog.pm
____________________________________________________________________________
[  5968] By: gsar                                  on 2000/04/27  17:44:49
        Log: tolerate spaces in group names in test on solaris (from David Boyce
             <dsb@boyski.com>)
     Branch: perl
	   ! t/op/groups.t
____________________________________________________________________________
[  5967] By: gsar                                  on 2000/04/27  17:41:22
        Log: improved docs on the warn_uninit diagnostic (from David Glasser
             and Simon Cozens)
     Branch: perl
	   ! pod/perldiag.pod
____________________________________________________________________________
[  5966] By: gsar                                  on 2000/04/27  16:54:58
        Log: add testsuite for B backends, fix bug in B::Deparse (from
             Simon Cozens <simon@brecon.co.uk>)
     Branch: perl
	   + t/lib/b.t
	   ! MANIFEST ext/B/B/Deparse.pm ext/B/B/Stash.pm
____________________________________________________________________________
[  5965] By: gsar                                  on 2000/04/27  16:10:37
        Log: avoid "will not stay shared" warnings for our variables (from
             Robin Barker)
     Branch: perl
	   ! op.c t/pragma/warn/op
____________________________________________________________________________
[  5964] By: gsar                                  on 2000/04/27  07:05:05
        Log: reformat to 72 columns (again)
     Branch: perl
	   ! pod/perldiag.pod
____________________________________________________________________________
[  5963] By: gsar                                  on 2000/04/27  06:28:31
        Log: patch from Larry to make (\&) prototype work; added tests for
             the same
     Branch: perl
	   ! op.c t/comp/proto.t
____________________________________________________________________________
[  5962] By: gsar                                  on 2000/04/27  06:15:47
        Log: updated README.hpux (from Jeff Okamoto)
     Branch: perl
	   ! README.hpux
____________________________________________________________________________
[  5961] By: gsar                                  on 2000/04/27  05:55:03
        Log: recognize our, CHECK and INIT in cperl-mode (from Doug MacEachern)
     Branch: perl
	   ! emacs/cperl-mode.el
____________________________________________________________________________
[  5960] By: gsar                                  on 2000/04/27  05:49:26
        Log: better INSTALL notes on Solaris issues (from Dominic Dunlop)
     Branch: perl
	   ! INSTALL
____________________________________________________________________________
[  5959] By: gsar                                  on 2000/04/27  05:33:41
        Log: doubled words in pods (from Simon Cozens
             <simon.p.cozens@jp.pwcglobal.com>)
     Branch: perl
	   ! pod/perl56delta.pod pod/perldebguts.pod pod/perlfaq5.pod
	   ! pod/perlfork.pod pod/perlfunc.pod pod/perlipc.pod
	   ! pod/perllexwarn.pod pod/perllocale.pod pod/perlmodlib.pod
	   ! pod/perlnumber.pod pod/perlopentut.pod pod/perltodo.pod
	   ! pod/perltootc.pod
____________________________________________________________________________
[  5958] By: gsar                                  on 2000/04/27  05:11:39
        Log: change#3569 deleted some essential code, revert; avoid use of
             atexit() to make DynaLoader work properly on AIX under mod_perl
             (from Jens-Uwe Mager <jum@helios.de>)
     Branch: perl
	   ! ext/DynaLoader/dl_aix.xs
____________________________________________________________________________
[  5957] By: gsar                                  on 2000/04/27  04:54:51
        Log: pod nits (from A. C. Yardley <yardley@tanet.net>)
     Branch: perl
	   ! pod/perlmod.pod
____________________________________________________________________________
[  5956] By: gsar                                  on 2000/04/27  04:51:47
        Log: better diagnostics on failed tests (from Ilya Zakharevich)
     Branch: perl
	   ! t/op/lex_assign.t
____________________________________________________________________________
[  5955] By: gsar                                  on 2000/04/27  04:26:44
        Log: longstanding bug exposed by change#3307: sort arguments weren't
             compiled with the right wantarray context (ensuing runtime lookup
             via block_gimme() was getting the incidental context of the
             sort() itself)
     Branch: perl
	   ! op.c t/op/sort.t
____________________________________________________________________________
[  5954] By: gsar                                  on 2000/04/26  23:42:12
        Log: integrate cfgperl contents into mainline
     Branch: perl
	  !> (integrate 30 files)
____________________________________________________________________________
[  5953] By: jhi                                   on 2000/04/26  23:06:42
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> README.win32 ext/B/B/Deparse.pm
	  !> ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
	  !> lib/vars.pm perl.c pod/perldiag.pod pod/perlsub.pod
	  !> pod/perlsyn.pod pod/perlthrtut.pod pod/perltoc.pod
	  !> pod/perltodo.pod pod/perlxs.pod pod/perlxstut.pod
	  !> utils/perldoc.PL vms/perlvms.pod
____________________________________________________________________________
[  5952] By: jhi                                   on 2000/04/26  23:03:46
        Log: Undo "use integer" addition from 64bitint as it seems
             to break most of the subtests in Digital UNIX;
             Unicos needs to find another way.
     Branch: cfgperl
	   ! t/op/64bitint.t
____________________________________________________________________________
[  5951] By: jhi                                   on 2000/04/26  22:57:53
        Log: Be more robust on "extreme" (large absolute value)
             arguments.  Originally reported by Daniel Connelly
             as a problem with asinh() on large negative arguments,
             asinh() used to bail out because an argument to log()
             ended up being zero.  Ilya Zakharevich proposed using
             Taylor's series in such cases, which for such large
             arguments is a very good approximation.
     Branch: cfgperl
	   ! lib/Math/Complex.pm t/lib/complex.t
____________________________________________________________________________
[  5950] By: gsar                                  on 2000/04/25  19:13:12
        Log: reformat perldiag to avoid long lines
     Branch: perl
	   ! pod/perldiag.pod
____________________________________________________________________________
[  5949] By: gsar                                  on 2000/04/25  18:41:11
        Log: make perldoc use the pod2man from the same version (from
             M.J.T. Guy)
     Branch: perl
	   ! utils/perldoc.PL
____________________________________________________________________________
[  5948] By: gsar                                  on 2000/04/25  18:21:57
        Log: typo in vars.pm that leads to cryptic message (from Piotr Piatkowski
             <kompas@kompas.usr.onet.pl>)
     Branch: perl
	   ! lib/vars.pm
____________________________________________________________________________
[  5947] By: gsar                                  on 2000/04/25  18:11:53
        Log: use &dl_error rather than &dl_load_file as the guard for calling
             boot_DynaLoader() (meant to fix dl_error() redefined warnings in
             statically built perl)
     Branch: perl
	   ! ext/DynaLoader/DynaLoader_pm.PL ext/DynaLoader/XSLoader_pm.PL
____________________________________________________________________________
[  5946] By: jhi                                   on 2000/04/25  17:37:54
        Log: Document that tr() is not tr(1).
     Branch: cfgperl
	   ! pod/perlop.pod
____________________________________________________________________________
[  5945] By: gsar                                  on 2000/04/25  16:34:33
        Log: make module name mandatory after -M switch; reorder perldiag
             alphabetically (from Mark-Jason Dominus)
     Branch: perl
	   ! perl.c pod/perldiag.pod
____________________________________________________________________________
[  5944] By: jhi                                   on 2000/04/25  01:15:18
        Log: On second thoughts frexp() does have two arguments.
     Branch: cfgperl
	   ! perl.h
____________________________________________________________________________
[  5943] By: jhi                                   on 2000/04/24  22:56:32
        Log: Add HAS_FREXPL, HAS_ISNAN, HAS_ISNANL, and HAS_MODFL.
             Now pp_ncmp() returns undef is either operand is a NaN.
     Branch: cfgperl
	   ! Configure Porting/Glossary Porting/config.sh Porting/config_H
	   ! Todo-5.6 config_h.SH epoc/config.sh perl.h pp.c pp_sys.c
	   ! vms/subconfigure.com vos/config.def vos/config.h
	   ! vos/config_h.SH_orig win32/config.bc win32/config.gc
	   ! win32/config.vc win32/config_H.bc win32/config_H.gc
	   ! win32/config_H.vc
     Branch: metaconfig/U/perl
	   + d_modfl.U
____________________________________________________________________________
[  5942] By: jhi                                   on 2000/04/24  19:45:17
        Log: Regen Configure to match #5937.
     Branch: cfgperl
	   ! Configure Porting/Glossary Porting/config.sh Porting/config_H
	   ! config_h.SH
     Branch: metaconfig
	   ! U/installdirs/inc_version_list.U U/modified/cpp_stuff.U
____________________________________________________________________________
[  5941] By: jhi                                   on 2000/04/24  19:24:11
        Log: Further Unicos fixes for Mark Lutz.
     Branch: cfgperl
	   ! hints/unicos.sh pp_ctl.c
____________________________________________________________________________
[  5940] By: jhi                                   on 2000/04/24  19:09:06
        Log: Various Unicos 10.0.0.6 fixes.
             
             Subject: [ID 20000414.007] Test suite failures in perl 5.6 on Cray T90
             From: Mark P Lutz <tecmpl1@triton.ca.boeing.com> 
             Reply-To: tecmpl1@triton.ca.boeing.com 
             To: perl5-porters@perl.org 
             Date: Fri, 14 Apr 2000 20:21:00 GMT 
             Message-Id: <200004142021.UAA36232@triton.ca.boeing.com> 
     Branch: cfgperl
	   ! hints/unicos.sh pp.c pp_ctl.c t/op/64bitint.t
____________________________________________________________________________
[  5939] By: gsar                                  on 2000/04/24  19:01:24
        Log: more pod nits (from Larry Virden)
     Branch: perl
	   ! README.win32 pod/perlsub.pod pod/perlsyn.pod
	   ! pod/perlthrtut.pod pod/perltoc.pod pod/perltodo.pod
	   ! pod/perlxs.pod pod/perlxstut.pod vms/perlvms.pod
____________________________________________________________________________
[  5938] By: gsar                                  on 2000/04/24  18:54:01
        Log: Consolidated B::Deparse fixes (from Stephen McCamant)
     Branch: perl
	   ! ext/B/B/Deparse.pm
____________________________________________________________________________
[  5937] By: jhi                                   on 2000/04/24  17:39:00
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  +> (branch 31 files)
	  !> (integrate 73 files)
____________________________________________________________________________
[  5936] By: gsar                                  on 2000/04/24  17:30:06
        Log: additional tests for change#5934 (from Paul Marquess, who also
             sent in the same fix)
     Branch: perl
	   ! t/pragma/warn/2use t/pragma/warn/3both t/pragma/warn/4lint
	   ! t/pragma/warn/5nolint t/pragma/warn/6default
____________________________________________________________________________
[  5935] By: jhi                                   on 2000/04/24  17:26:05
        Log: Do not assume sign propagation.
             Subject:  [PATCH] Re: [ID 20000410.010] Unicoss 10.0.0.6 and perl 5.6.0
             From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk> 
             To: payner@ncifcrf.gov, perl5-porters@perl.org 
             Date: Tue, 18 Apr 2000 18:24:49 +0100 
             Message-Id: <E12hbk1-0006Ws-00@ursa.cus.cam.ac.uk> 
     Branch: cfgperl
	   ! t/op/bop.t t/op/misc.t
____________________________________________________________________________
[  5934] By: gsar                                  on 2000/04/24  17:16:54
        Log: propagate lexical warnings from surrounding scope correctly
             within string eval()
     Branch: perl
	   ! pp_ctl.c t/pragma/warn/pp_ctl
____________________________________________________________________________
[  5933] By: jhi                                   on 2000/04/24  17:01:07
        Log: Flatten the cpp jungle doing the nosuid checking.
     Branch: cfgperl
	   ! perl.c
____________________________________________________________________________
[  5932] By: gsar                                  on 2000/04/24  09:08:14
        Log: add rsignal(), whichsig() and do_join() to public API list
             (mod_perl uses them to good advantage)
     Branch: perl
	   ! embed.pl global.sym objXSUB.h perlapi.c proto.h
____________________________________________________________________________
[  5931] By: gsar                                  on 2000/04/24  09:01:40
        Log: fix RE brokenness on refs/overloaded things (from Ilya Zakharevich)
     Branch: perl
	   ! pp_hot.c regexec.c t/op/pat.t
____________________________________________________________________________
[  5930] By: gsar                                  on 2000/04/24  08:58:33
        Log: small os390 tweaks (from Peter Prymmer)
     Branch: perl
	   ! config_h.SH makedepend.SH
____________________________________________________________________________
[  5929] By: gsar                                  on 2000/04/24  08:55:25
        Log: pod nits
     Branch: perl
	   ! pod/perlguts.pod
____________________________________________________________________________
[  5928] By: gsar                                  on 2000/04/24  08:50:13
        Log: revert change#5923 ("breaks" t/lib/io_poll.t)
     Branch: perl
	   ! ext/IO/lib/IO/Poll.pm
____________________________________________________________________________
[  5927] By: gsar                                  on 2000/04/24  08:43:24
        Log: arrange for next() to resume at the unstack op rather than the
             loop conditional, so that scope cleanup happens correctly
             (from Stephen McCamant)
     Branch: perl
	   ! op.c pp_ctl.c t/op/misc.t
____________________________________________________________________________
[  5926] By: gsar                                  on 2000/04/24  08:18:40
        Log: on windows, reserve 16M of stack rather than 128M (allows more
             threads to run concurrently)
     Branch: perl
	   ! win32/Makefile win32/makefile.mk
____________________________________________________________________________
[  5925] By: gsar                                  on 2000/04/24  08:13:52
        Log: POSIX-BC tweak (from Ignasi Roca <ignasi.roca@fujitsu.siemens.es>)
     Branch: perl
	   ! toke.c
____________________________________________________________________________
[  5924] By: gsar                                  on 2000/04/24  08:08:59
        Log: avoid using uninitialized memory in require version check
     Branch: perl
	   ! pp_ctl.c universal.c
____________________________________________________________________________
[  5923] By: gsar                                  on 2000/04/24  07:20:14
        Log: various bugs in IO::Poll (from Lincoln D. Stein <lstein@cshl.org>)
     Branch: perl
	   ! ext/IO/lib/IO/Poll.pm
____________________________________________________________________________
[  5922] By: gsar                                  on 2000/04/24  07:08:42
        Log: commentary about IoTYPE() (from Nathan Torkington)
     Branch: perl
	   ! sv.h
____________________________________________________________________________
[  5921] By: gsar                                  on 2000/04/24  06:58:26
        Log: make eq unicode-aware (from Gisle Aas); fix bogus tests revealed
             by fix
     Branch: perl
	   ! sv.c t/lib/charnames.t t/pragma/utf8.t
____________________________________________________________________________
[  5920] By: gsar                                  on 2000/04/24  06:37:59
        Log: Larry's fix for buggy propagation of utf8-ness in join(); add test
     Branch: perl
	   ! doop.c t/op/ver.t
____________________________________________________________________________
[  5919] By: gsar                                  on 2000/04/24  06:21:58
        Log: Configure might miss old directories when prefix must be
             expanded (from Robin Barker)
     Branch: metaconfig
	   ! U/installdirs/inc_version_list.U
     Branch: perl
	   ! Configure
____________________________________________________________________________
[  5918] By: gsar                                  on 2000/04/24  06:16:11
        Log: VMS nits in glob() test (from Charles Lane)
     Branch: perl
	   ! t/lib/glob-basic.t
____________________________________________________________________________
[  5917] By: gsar                                  on 2000/04/24  06:11:56
        Log: various pod nits (from Larry Virden and others)
     Branch: perl
	   ! README.amiga README.hpux README.machten README.os2
	   ! README.os390 README.win32 embed.pl handy.h lib/IPC/Open3.pm
	   ! pod/Win32.pod pod/perl56delta.pod pod/perlapi.pod
	   ! pod/perlbook.pod pod/perlcompile.pod pod/perldebguts.pod
	   ! pod/perldiag.pod pod/perlfork.pod pod/perlfunc.pod
	   ! pod/perlguts.pod pod/perlintern.pod pod/perlipc.pod
	   ! pod/perlmod.pod pod/perlmodinstall.pod pod/perlnumber.pod
	   ! pod/perlop.pod pod/perlport.pod pod/perlre.pod
	   ! pod/perltrap.pod pod/perlunicode.pod pod/perlvar.pod pp.h
____________________________________________________________________________
[  5916] By: gsar                                  on 2000/04/24  05:52:43
        Log: ignore dotfiles (.cvsignore etc) in test (from Warren Jones
             <wjones@tc.fluke.com>)
     Branch: perl
	   ! t/lib/glob-basic.t
____________________________________________________________________________
[  5915] By: gsar                                  on 2000/04/24  05:07:01
        Log: supported platforms mixed up
     Branch: perl
	   ! pod/perl56delta.pod pod/perlport.pod
____________________________________________________________________________
[  5914] By: gsar                                  on 2000/04/24  04:56:08
        Log: caller() wasn't returning the right number of elements for
             eval {...}
     Branch: perl
	   ! pp_ctl.c t/pragma/warn/9enabled
____________________________________________________________________________
[  5913] By: gsar                                  on 2000/04/24  04:35:41
        Log: pod nit: $yday range for localtime/gmtime is 0..364 not 1..365 (from
             Mark-Jason Dominus)
     Branch: perl
	   ! pod/perlfunc.pod
____________________________________________________________________________
[  5912] By: gsar                                  on 2000/04/24  04:17:15
        Log: fix totally broken caching in UNIVERSAL::isa() (from
             Nick Ing-Simmons)
     Branch: perl
	   ! t/op/universal.t universal.c
____________________________________________________________________________
[  5911] By: gsar                                  on 2000/04/24  03:39:47
        Log: add linebreak properties from unicode/LineBrk.txt (from
             Dave Hartnoll <Dave_Hartnoll@3b2.com>)
     Branch: perl
	   + lib/unicode/Is/LbrkAI.pl lib/unicode/Is/LbrkAL.pl
	   + lib/unicode/Is/LbrkB2.pl lib/unicode/Is/LbrkBA.pl
	   + lib/unicode/Is/LbrkBB.pl lib/unicode/Is/LbrkBK.pl
	   + lib/unicode/Is/LbrkCB.pl lib/unicode/Is/LbrkCL.pl
	   + lib/unicode/Is/LbrkCM.pl lib/unicode/Is/LbrkCR.pl
	   + lib/unicode/Is/LbrkEX.pl lib/unicode/Is/LbrkGL.pl
	   + lib/unicode/Is/LbrkHY.pl lib/unicode/Is/LbrkID.pl
	   + lib/unicode/Is/LbrkIN.pl lib/unicode/Is/LbrkIS.pl
	   + lib/unicode/Is/LbrkLF.pl lib/unicode/Is/LbrkNS.pl
	   + lib/unicode/Is/LbrkNU.pl lib/unicode/Is/LbrkOP.pl
	   + lib/unicode/Is/LbrkPO.pl lib/unicode/Is/LbrkPR.pl
	   + lib/unicode/Is/LbrkQU.pl lib/unicode/Is/LbrkSA.pl
	   + lib/unicode/Is/LbrkSG.pl lib/unicode/Is/LbrkSP.pl
	   + lib/unicode/Is/LbrkSY.pl lib/unicode/Is/LbrkXX.pl
	   + lib/unicode/Is/LbrkZW.pl
	   ! lib/unicode/mktables.PL
____________________________________________________________________________
[  5910] By: gsar                                  on 2000/04/24  03:23:10
        Log: typo in pod
     Branch: perl
	   ! ext/Thread/Thread.pm
____________________________________________________________________________
[  5909] By: gsar                                  on 2000/04/24  03:22:03
        Log: mode argument to do_binmode() should be file mode, not boolean
     Branch: perl
	   ! pp_sys.c
____________________________________________________________________________
[  5908] By: gsar                                  on 2000/04/16  16:51:08
        Log: introduce illegal symbols into null package so that gv_fetchpv(...,TRUE)
             always returns a valid GV even when the symbol is trapped by strictures
             (avoids coredumps)
             
             TODO: the C<package;> hack needs similar treatment
     Branch: perl
	   ! embedvar.h gv.c intrpvar.h perl.c perlapi.h
	   ! t/pragma/strict-vars
____________________________________________________________________________
[  5907] By: jhi                                   on 2000/03/31  23:42:56
        Log: pp_gmtime() assumed that newSVpvf %d would take C ints,
             an assumption which #5905 demolished.
     Branch: cfgperl
	   ! pp_sys.c
____________________________________________________________________________
[  5906] By: jhi                                   on 2000/03/31  18:54:37
        Log: Typo in #5905.
     Branch: cfgperl
	   ! t/op/64bitint.t
____________________________________________________________________________
[  5905] By: jhi                                   on 2000/03/31  18:50:54
        Log: Fix for "[ID 20000329.080] quad printing does not work as documented",
             reported by Joseph N. Hall.  The bug was that even with use64bitint
             one had to use the prefixes q, L, or ll with printf/sprintf,
             contrary to the documentation and common sense.
     Branch: cfgperl
	   ! sv.c t/op/64bitint.t
____________________________________________________________________________
[  5904] By: gsar                                  on 2000/03/28  02:31:32
        Log: add Changes, perldelta.pod
     Branch: perl
	   + Changes pod/perldelta.pod
____________________________________________________________________________
[  5903] By: gsar                                  on 2000/03/28  02:03:55
        Log: rename Changes and perldelta.pod
     Branch: perl
	  +> Changes5.6 pod/perl56delta.pod
	   - Changes pod/perldelta.pod
	   ! MANIFEST
____________________________________________________________________________
[  5902] By: gsar                                  on 2000/03/28  01:59:14
        Log: create maint-5.6 branch
     Branch: maint-5.6/perl
	  +> (branch 1611 files)
____________________________________________________________________________
[  5901] By: jhi                                   on 2000/03/23  05:48:43
        Log: Integrate with Sarathy.
     Branch: cfgperl
	  !> Changes patchlevel.h pod/perlhist.pod pod/perltoc.pod
____________________________________________________________________________
[  5900] By: gsar                                  on 2000/03/23  05:42:43
        Log: three guesses on what this is :-)
     Branch: perl
	   ! Changes