about summary refs log tree commit diff
path: root/ChangeLog
blob: 953c61830cc5867fd3a9f3f2c80bd80f57678f74 (plain) (blame)
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
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
2006-02-06  Peter Stephenson  <pws@csr.com>

	* 22195: README, Src/init.c, Src/params.c, Src/subst.c,
	Src/utils.c, Src/Modules/newuser.c: don't set HOME in the shell,
	only if passed by the environment; handle the fallout.

2006-02-05  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  A few more fixes
	and improvements.

2006-02-05  Clint Adams  <clint@zsh.org>

	* 22193: Completion/Debian/Command/_wanna-build: completion
	for wanna-build.

2006-02-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22192: Danek Duvall: Completion/Unix/Type/_users: also remove
	comments from .ssh/known_hosts.

2006-02-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22191: from Danek Duvall: Completion/Unix/Type/_hosts,
	Completion/Unix/Type/_users: neaten _hosts and make _users
	more consistent.

2006-02-03  Peter Stephenson  <pws@csr.com>

	* 22187: Completion/Unix/Type/_hosts: don't trounce any global
	$hosts; don't use hacky array assignment; do examine
	~/.ssh/known_hosts for default set of hosts to complete.

2006-01-29  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  Added new options
	for the upcoming 2.6.7 release of rsync.

2006-01-29  Clint Adams  <clint@zsh.org>

	* 22179: Completion/Unix/Command/_cplay: complete audio files
	and playlists based on a list of file extensions provided
	by Joe Wreschnig.

2006-01-28  Clint Adams  <clint@zsh.org>

	* 22174: Completion/Unix/Command/_vorbis: fix misspelling
	of -Q for oggdec.

2006-01-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22169: Doc/Zsh/zle.yo, Src/Zle/zle_keymap.c: hook function
	zle-keymap-select called when $KEYMAP changes.

2006-01-21  Clint Adams  <clint@zsh.org>

	* 22168: Completion/Debian/Command/_bts: add options and
	handling for new subcommands added in 22166 except for
	cache and cleancache.

	* 22167: Completion/Unix/Command/_cp: completion for
	GNU cp.

	* 22166: Completion/Debian/Command/_bts: add new
	subcommands (clone, submitter, found, notfound, block, unblock,
	user, usertag, package, owner, noowner, reportspam, cache,
	cleancache).

2006-01-18  Clint Adams  <clint@zsh.org>

	* 22165: Doc/Zsh/builtins.yo, Doc/Zsh/expn.yo,
	Doc/Zsh/roadmap.yo: change "zshparams" to "zshparam".

2006-01-17  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/prompt.c:  Fixed 2 free()-related bugs in the
	handling of %D.

2006-01-16  Bart Schaefer  <schaefer@zsh.org>

	* 22110 (slightly tweaked): Completion/Unix/Command/_su: complete
	options, be more clever about determining the shell being used,
	and treat the argument of the -c option as a command (cf. _sh).

2006-01-13  Wayne Davison  <wayned@users.sourceforge.net>

	* 22162: Src/prompt.c, Src/Modules/datetime.c, Src/Modules/stat.c:
	some strings needed to be metafied:  strftime values going into the
	expansion of the prompt, and strftime/username/groupname values
	that were assigned to a variable.

	* unposted: Src/prompt.c, Src/utils.c, Src/Zle/complist.c,
	Src/Zle/zle_utils.c: got rid of some superfluous STOUC() uses, such
	as the onces I recently added for the arg of nicechar() (which can
	handle the int being a negative or positive value).

	* unposted: Src/Zle/zle_refresh.c: fixed an unused-variable
	compiler warning when compiling the non-multibyte version of zsh.

2006-01-12  Clint Adams  <clint@zsh.org>

	* 22159: Completion/Linux/Command/_tpb: completion for tpb.

	* 22153: Completion/Linux/Command/_tpconfig: completion
	for tpconfig.

2006-01-11  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/zsh.h, Src/prompt.c, Src/utils.c,
	Src/Zle/complist.c, Src/Zle/compmatch.c, Src/Zle/zle_main.c,
	Src/Zle/zle_refresh.c, Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c:
	more multibyte cleanup, including the MB_INVALID and MB_INCOMPLETE
	defines to make the mbrtowc() and mbsrtowcs() return values clearer.

2006-01-10  Peter Stephenson  <pws@csr.com>

	* 22151: Src/text.c: a here-string got too many quotes when
	output by which etc.

2006-01-09  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/utils.c, Src/Zle/compmatch.c, Src/Zle/zle_utils.c:
	a little more cleanup of the mbrtowc() code, including a bugfix
	for my new code in sub_match() that needed to check for -2.

2006-01-08  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/Zle/zle_refresh.c, Src/Zle/zle_utils.c,
	Src/Zle/complist.c, Src/Zle/compmatch.c: changed the code that
	calls mbrtowc() to deal with its size_t return value as a size_t.
	Also, use STOUC() on char values passed to nicechar(), make sure
	that the mbstate_t object never gets left in an undefined state,
	and fixed a problem in sub_match() when dealing with a character
	that was assembled from multiple bytes.

	* 22140 (modified): Src/utils.c: Changed mb_niceformat() so that it
	does not truncate a name that has an invalid character sequence in
	the current character set (affected chars display as \M-... chars).

	* unposted: configure.ac: got rid of probe for wcswidth() and added
	probes for fchown() and fchmod() (the latter changes were accidentally
	left out of my 22091 patch).

	* unposted: Src/utils.c, Src/system.h: Changed the single spot
	that used wcswidth() over to use wcwidth() and got rid of the
	work-around for OpenBSD (which lacks wcswidth()).

2006-01-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22146: Functions/Zle/define-composed-chars: typo in AE and OE
	ligatures.

2006-01-06  Peter Stephenson  <pws@csr.com>

	* 22124: Src/Zle/zle_hist.c, Src/Zle/zle_misc.c: feep()
	if getrestchar() indicates bad character.

	* 22123: configure.ac, Src/system.h: probe for wcswidth() and
	assume 1 if not found.

2006-01-05  Peter Stephenson  <pws@csr.com>

	* 22118: Doc/Zsh/builtins.yo: fix documentation for what
	happens when . does or does not appear in $cdpath.

2006-01-04  Peter Stephenson  <pws@csr.com>

	* unposted: Completion/Unix/Command/_perforce: when deleting
	 a fix, complete only jobs for the changelist given; when
	 deleting changes, unless -f is given complete only changes
	 on the current client.

2006-01-02  Clint Adams  <clint@zsh.org>

	* 22113: Completion/Unix/Command/_last: allow single option
	characters to be combined.

2005-12-26  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Doc/Zsh/options.yo: A couple more improvements to the
	HIST_SAVE_BY_COPY section.

2005-12-25  Clint Adams  <clint@zsh.org>

	* 22104, 22105: Completion/Unix/Command/_ssh: add
	support for new options such as ControlMaster and
	ControlPath, and for -M, -S, -O switches.

2005-12-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Scott Murray <semurray@ntlworld.com>:
	Completion/Redhat/Command/_yum: update.

2005-12-19  Peter Stephenson  <pws@csr.com>

	* 22082: Src/Modules/stat.c: print out UID or GID instead
	of ??? if the user or group name is unavailable.

2005-12-18  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Etc/FAQ.yo, Doc/Zsh/contrib.yo: Changed some UTF-8
	closing-single-quotes into ASCII apostrophes.

2005-12-18  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22095: INSTALL, Etc/FAQ.yo: more multibyte notes.

2005-12-17  Wayne Davison  <wayned@users.sourceforge.net>

	* 22091: Src/hist.c: improved HIST_SAVE_BY_COPY to have it (1)
	preserve the group and permissions on the history file, and (2)
	refuse to re-copy the history file if zsh's euid differs from
	the file's uid (to avoid changing the file's owner).

2005-12-15  Peter Stephenson  <pws@csr.com>

	* 22085 and back off 22075: Src/system.h, Src/utils.c: we
	may need <langinfo.h> even with MULTIBYTE_SUPPORT to get iconv.

	* 22076: INSTALL, Etc/FAQ.yo: more information on multibyte
	handling.

	* users/9788: Doc/Zsh/expn.yo, Src/glob.c: add (oN) qualifier
	for no sorting.

2005-12-14  Bart Schaefer  <schaefer@zsh.org>

	* 21814: Src/loop.c, Src/signals.c: if an error occurs in an
	inline trap, set $? to 1, to match the behavior of pre-4.2
	versions of zsh.  If and only if the trap is executed within the
	"try" part of an "always" construct, also propagate the error
	condition so that the "try" section is aborted.  (Belated commit.)

2005-12-14  Wayne Davison  <wayned@users.sourceforge.net>

	* 22078: Src/utils.c: made ucs4toutf8() a static function (when
	it's even defined).

2005-12-14  Peter Stephenson  <pws@csr.com>

	* 22075: Src/utils.c: assume the effect of __STDC_ISO_10646__ for
	character conversion when --enable-multibyte is in effect (since
	we do everywhere else).

2005-12-12  Peter Stephenson  <pws@csr.com>

	* unposted: Config/version.mk: aargh, didn't commit this for
	4.3.0-dev-2.

2005-12-12  Wayne Davison  <wayned@users.sourceforge.net>

	* 22071: Src/Zle/zle_hist.c: fixed a bug in zle_setline() where
	it would set zlecs to -1 for an empty line. (Reported by Jun T.)

2005-12-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22069: Src/Zle/complist.c: completion listings didn't get
	unmetafied.

2005-12-10  Clint Adams  <clint@zsh.org>

	* 22068: Completion/Debian/Command/_debdiff: completion
	for debdiff.

2005-12-09  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/Modules/newuser.c: fixed return-without-value
	compiler warning.

2005-12-09  Oliver Kiddle  <opk@zsh.org>

	* Completion/Unix/Command/_surfraw, Completion/Unix/Command/_arp,
	Completion/Unix/Command/_joe, Completion/Unix/Command/_quilt,
	Completion/Debian/Command/_mergechanges: reindent and use lowercase
	letters for descriptions

	* unposted: Completion/Unix/Command/_mh: better completion for sortm

	* unposted: configure.ac: require autoconf 2.53b

2005-12-09  Clint Adams  <clint@zsh.org>

	* 22065: Functions/TCP/tcp_read: cope with TCP output that
	starts with "--".

2005-12-09  Peter Stephenson  <pws@csr.com>

	* 22058: NEWS, Doc/Zsh/roadmap.yo: tweak docs for release.

	* 22057: Doc/Zsh/mod_newuser.yo, Src/options.c,
	Src/Modules/newuser.c: make it explicit that zsh/newuser isn't
	used during emulation.

2005-12-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22056: Functions/MIME/zsh-mime-handler: restore original default
	settings for current-shell and never-background styles.

2005-12-07  Clint Adams  <clint@zsh.org>

	* 22054: Completion/Linux/Command/_fusermount:
	completion for fusermount.

	* 22055: Completion/Linux/Command/_sshfs: completion for
	the FUSE sshfs.

2005-12-06  Peter Stephenson  <pws@csr.com>

	* 22053: Etc/FAQ.yo, Functions/Newuser/zsh-newuser-install:
	minor FAQ addition plus improved documentation for options
	and parameters in zsh-newuser-install.

2005-12-05  Clint Adams  <clint@zsh.org>

	* Micah Anderson: 22052: Completion/Unix/Command/_surfraw:
	improvements to surfraw completion.

2005-12-05  Oliver Kiddle  <opk@zsh.org>

	* 22050: configure.ac, Completion/Unix/Command/_mount,
	Completion/Unix/Command/_sysctl, Completion/Unix/Type/_locales:
	fixes for Debian GNU/kfreebsd

	* 21712: Completion/Unix/Command/_date: include fallback for
	where $OSTYPE is not matched

2005-12-04  Bart Schaefer  <schaefer@zsh.org>

	* unposted (cf. users/9744): Functions/Zle/keeper: call
	_expand_word from _expand_word_and_keep so that completion context
	is not changed; add most-specific zstyle necessary to identify the
	all-expansions group within _expand_word_and_keep.

2005-12-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 22049: Src/init.c: "exit" within sourced file within shell
	function caused return from sourced file but execution of function
	continued.

2005-11-30  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/Zle/zle_misc.c: fixed parsedigit() to have
	it use its arg instead of "lastchar".

	* unposted: configure.ac: changed the hard-wired "grep -E"
	into $EGREP (which is defined by AC_PROG_EGREP).

2005-11-29  Clint Adams  <clint@zsh.org>

	* 22046: Completion/Unix/Command/_rar: descriptions for
	unrar commands, some additional switches.

	* 22042: configure.ac: handle the Hurd's errno.h.

2005-11-29  Geoff Wing  <gcw@zsh.org>

	* unposted: Src/utils.c: fix prototype generation for non
	multibyte compilation

2005-11-25  Peter Stephenson  <pws@csr.com>

	* 22031: Nikolai Weibull: Completion/Unix/Command/_git: new
	completion function.

	* 22028: Src/exec.c: WARN_GLOBAL_CREATE warned when temporarily
	altering a global in the environment of a builtin or shell
	function.

	* 22027: Functions/Newuser/zsh-newuser-install: fix multiple
	compinstall lines; suggest selecting emacs keymap slightly
	more forcefully; ensure recommended selections are saved
	if not edited; trap bad keymap names; don't show initial
	explanatory screen if rerun explicitly by user; fix message
	about copying old .zshrc.

2005-11-25  Oliver Kiddle  <opk@zsh.org>

	* 22022: Completion/Debian/Command/_dchroot: completion for dchroot

2005-11-24  Peter Stephenson  <pws@csr.com>

	* 22021: Functions/Zle/insert-unicode-char: back-to-back
	insertions didn't work.

	* 22018: INSTALL, Functions/Newuser/zsh-newuser-install: tweak
	following suggestions from Bart.

	* 22014: Doc/Zsh/Contrib.yo, Doc/Zsh/zle.yo,
	Functions/Zle/.distfiles, Functions/Zle/insert-unicode-char,
	Src/Zle/iwidgets.list, Src/Zle/zle.h, Src/Zle/zle_main.c,
	Src/Zle/zle_misc.c: internal widget argument-base sets
	numeric base for next prefix argument, widget insert-unicode-char
	uses this to insert Unicode character by \U........

2005-11-23  Peter Stephenson  <pws@csr.com>

	* 22013: INSTALL, NEWS, Completion/compinstall,
	Functions/Newuser/zsh-newuser-install: initial go at a
	working zsh-newuser-install function.

2005-11-22  Clint Adams  <clint@zsh.org>

	* 22012: Completion/Debian/Command/_mergechanges:
	completion for mergechanges.

2005-11-22  Peter Stephenson  <pws@csr.com>

	* Mårten Svantesson <msv@kth.se>: 22011:
	Completion/Unix/Command/_cvs: the -R options is more generally
	available.

2005-11-21  Peter Stephenson  <pws@csr.com>

	* 22009: Src/Zle/zle_refresh.c: fix for double-width characters:
	stop when we reach the NULL at the end of the new line.

2005-11-18  Wayne Davison  <wayned@users.sourceforge.net>

	* users/9690: Completion/Unix/Command/_ssh: improved Hannu's
	completion code to handle multiple hostnames per "Host" directive
	and to skip wildcard-containing names.

	* unposted: Src/Zle/zle_tricky.c: got rid of two unneeded casts.

2005-11-18  Peter Stephenson  <pws@csr.com>

	* users/9688: Completion/Unix/Command/_ssh: improved
	_ssh_hosts from Hannu Koivisto <azure@iki.fi>; also
	rationalise reference to hosts to "remote host name".

2005-11-17  Clint Adams  <clint@zsh.org>

	* 22005: Completion/Unix/Command/_flasher: completion
	for flasher utility for Nokia 770 Internet Tablet.

2005-11-15  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/Zle/zle_misc.c: Got rid of some compiler warnings
	about comparisons between signed and unsigned variables.

	* 22001: Src/hashtable.c, Src/input.c, Src/loop.c, Src/Zle/compcore.c,
	Src/Zle/compctl.c, Src/Zle/complist.c, Src/Zle/compresult.c,
	Src/Zle/zle_hist.c, Src/Zle/zle_misc.c, Src/Zle/zle_params.c,
	Src/Zle/zle_thingy.c, Src/init.c, Src/zsh.h, Src/utils.c, Src/Zle/zle.h,
	Src/Zle/zle_main.c, Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c:
	Changed several functions and vars from using unsigned char pointers
	to normal char pointers, removing a bunch of forced casts in the code.

2005-11-13  Oliver Kiddle  <opk@zsh.org>

	* unposted: Completion/X/Command/qiv: fix completion of -F option

2005-11-11  Clint Adams  <clint@zsh.org>

	* 21999: Completion/Unix/Command/_gnutls:
	completion for certtool and srptool.

	* 22000: Completion/Unix/Command/_totd:
	completion for totdconfig.

2005-11-10  Clint Adams  <clint@zsh.org>

	* 21998: Completion/Unix/Command/_gnutls:
	completion for gnutls-cli and gnutls-cli-debug.

2005-11-10  Bart Schaefer  <schaefer@zsh.org>

	* 21994: Completion/Unix/Command/_sed: use correct semantics for
	arguments of the -e -f -i and -l options.  May need further tweaks
	for non-GNU seds.

2005-11-07  Clint Adams  <clint@zsh.org>

	* 21989: Completion/Debian/Command/_dpkg-cross:
	completion for dpkg-cross.

	* 21990: Completion/Debian/Command/_toolchain-source:
	completion for tpkg-debarch, tpkg-install, tpkg-install-libc,
	tpkg-make, and tpkg-update.

2005-11-07  Peter Stephenson  <pws@csr.com>

	* unposted: NEWS: note roadmap.

	* 21986: Src/Zle/compresult.c, Src/Zle/iwidgets.list,
	Src/Zle/zle.h, Src/Zle/zle_misc.c: make completion suffix
	system work with wide characters; also make magic-space
	behave like a normal space when it follows a suffix.

	* users/9638: Src/builtin.c, Doc/Zsh/builtins.yo,
	Doc/Zsh/roadmap.yo: allow FCEDIT to default to EDITOR before
	defaulting to the builtin default; mention edit-command-line in
	menu in roadmap.  Also (unposted) indicate roadmap in detailed
	texinfo node listing even though it doesn't have subentries.

2005-11-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Scott Murray <semurray@ntlworld.com>: users/9648:
	Completion/Redhat/Command/_yum,
	Completion/Redhat/Command/.distfiles: new yum completion.

2005-11-05  Clint Adams  <clint@zsh.org>

	* 21987: Completion/Unix/Command/_cplay: completion for
	cplay.

	* 21988: Completion/Debian/Command/_dput: fix "simulare"
	typo.

2005-11-04  Peter Stephenson  <pws@csr.com>

	* users/9618 modified as suggested in users/9621: Doc/Zsh/expn.yo,
	Src/hist.c: extend history substitution to allow trailing :G for
	global.

2005-11-02  Andrey Borzenkov  <bor@zsh.org>

	* 21978: Src/Modules/stat.c: unmetafy file name before calling
	system (l)stat

2005-11-02  Peter Stephenson  <pws@csr.com>

	* 21974: Src/params.c: memory leak with tied parameters.

	* users/9610: Src/Zle/zle_misc.c: Handle digit argument
	in copy-prev-word and copy-prev-shell-word.

	* 21973: Src/Zle/zle_misc.c: idigit() test in digitargument()
	had reversed sense.

2005-11-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 21971: Src/Zle/zle_refresh.c, Src/Zle/zle_tricky.c: rewrite
	pfxlen() for multibyte characters.

2005-11-01  Peter Stephenson  <pws@csr.com>

	* users/9604: Functions/Misc/run-help: enhanced to strip quotes
	from argument if necessary.

	* 21967 (documentation tweaked): Doc/Zsh/expn.yo, Src/subst.c:
	${(#)foo} uses matheval to produce characters.

2005-10-31  Wayne Davison  <wayned@users.sourceforge.net>

	* 21949 (modified): Src/zsh.h, Src/Zle/zle.h, Src/Zle/zle_misc.c,
	Src/Zle/zle_refresh.c, Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c:
	Changed (in non-multibyte mode) ZLE_CHAR_T to be "char" (not int)
	and ZLE_STRING_T to be "char *" (not "unsigned char *"), including
	some related type changes (e.g. zle_text) and code improvements.

	* 21962: Src/utils.c, Src/ztype.h, Src/Modules/zftp.c,
	Src/Modules/zselect.c, Src/Zle/zle.h, Src/Zle/zle_move.c,
	Src/Zle/zle_vi.c, Src/Zle/zle_word.c: a bunch of fixes for
	iTYPE()/isTYPE() problems, e.g. avoiding using isTYPE() on
	a char value (which is undefined) and avoiding using normal
	isTYPE() functions on wide-character values.

	* unposted: Src/Zle/deltochar.c, Src/Zle/zle_move.c,
	Src/Zle/zle_utils.c: Fixed some compiler warnings about
	signed/unsigned comparisons.

	* unposted: Src/Modules/files.c, Src/Modules/mathfunc.c,
	Src/Modules/zutil.c, Src/Zle/computil.c: use idigit() instead
	of range-checking '0' - '9'.

2005-10-31  Clint Adams  <clint@zsh.org>

	* 21960: R. Ramkumar: Functions/Misc/zcalc:
	  put zcalc history file in ZDOTDIR if set.

2005-10-30  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Doc/Zsh/roadmap.yo: capitalize section headings to
	be consistent and add note on default history size.

	* 21957: Src/Zle/zle_refresh.c: more wide character stuff.

	* 21954 (plus comment): configure.ac: use /dev/fd/3 to check
	for availability of feature (works around FreeBSD 5
	configuration).

2005-10-28  Wayne Davison  <wayned@users.sourceforge.net>

	* 21948: Src/zsh.h, Src/Zle/zle_refresh.c: fixed a couple
	compiler warnings about comparing signed & unsigned values.
	The latter change should also remove a potential problem of
	using WEOF without multibyte support being enabled.

2005-10-28  Clint Adams  <clint@zsh.org>

	* 21946, 21947: Completion/Unix/Command/_gcc: update
	options for ia32, amd64, and sparc.

2005-10-28  Peter Stephenson  <pws@csr.com>

	* unposted: Src/Zle/zle_keymap.c: missed this out.

	* 21943, 21945: configure.ac, Src/prompt.c, Src/string.c,
	Src/system.h, Src/utils.c, Src/zsh.h, Src/Zle/complist.c,
	Src/Zle/compmatch.c, Src/Zle/compresult.c, Src/Zle/zle.h,
	Src/Zle/zle_hist.c, Src/Zle/zle_keymap.c, Src/Zle/zle_main.c,
	Src/Zle/zle_misc.c, Src/Zle/zle_refresh.c, Src/Zle/zle_thingy.c,
	Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c, Src/Zle/zle_vi.c:
	Replace ZLE_UNICODE_SUPPORT by MULTIBYTE_SUPPORT throughout.
	Use multibyte versions of "nicechar" functions wherever
	possible.

	* 21942: Src/Zle/zle_refresh.c: another bug found when deleting
	an extra-wide character.

2005-10-26  Peter Stephenson  <pws@csr.com>

	* 21939: Src/Zle/zle_thingy.c: new UNMETACHECK() was too ruthless.

2005-10-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 21936: Src/Zle/zle_refresh.c: fix one bug when deleting
	an extra-wide character.

2005-10-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 21935: Documentation for 21933.

	* 21933: R. Ramkumar <ramk@cse.iitm.ernet.in>:
	Functions/MIME/zsh-mime-handler, Functions/MIME/zsh-mime-setup:
	add three styles to the MIME system.

2005-10-24  Peter Stephenson  <pws@csr.com>

	* 21931: 21913 means _hosts shouldn't complete for ping.

	* 21930: Src/Zle/zle_refresh.c: handle extra-wide characters at
	end of line by adding spaces.

2005-10-24  Clint Adams  <clint@zsh.org>

	* 21912: Src/Modules/cap.c: silence unused parameter
	compile warnings.

	* 21913: Completion/Unix/Command/_ping: completion
	for ping.

2005-10-23  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Src/prompt.c: fix --disable-multibyte compile error
	introduced by 21906.

2005-10-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 21910:  abnormal return from insertlastword() didn't unmetafy
	the line; add extra UNMETACHECK() to pick up problems early from
	zle within widget.

2005-10-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 21906: Src/prompt.c, Src/zle_refresh.c: use modified
	multibyte truncation code for single byte truncation, fixing
	a bug with long truncation indicators; remove a couple of
	outmoded TODOs.

	* Spotted by Mikael Magnusson, 21905: Doc/Zsh/roadmap.yo: typos.

2005-10-21  Clint Adams  <clint@zsh.org>

	* 21902: Completion/Unix/Command/_xmlsoft: update for
	xmllint 2.6.22.

2005-10-21  Peter Stephenson  <pws@csr.com>

	* 21899: Doc/.distfiles, Doc/Makefile.in, Doc/zsh.yo,
	Doc/zshroadmap.yo, Doc/Zsh/.distfiles, Doc/Zsh/intro.yo,
	Doc/Zsh/invoke.yo, Doc/Zsh/manual.yo, Doc/Zsh/roadmap.yo:
	Add "roadmap" section to manual for new users to get
	acquainted.

	* 21898: Functions/Zle/insert-composed-char, Doc/Zsh/contrib.yo:
	insert-composed-char can take a command line argument.

2005-10-19  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/Zle/zle_refresh.c: fixed a compiler warning.

2005-10-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 21891: Functions/Zle/define-composed-chars, Doc/Zsh/contrib.yo:
	double width characters can be composed with ^A etc.

	* 21890: Src/builtin.c, Src/prompt.c, Src/zle_utils.c: allocation
	inconsistencies in print builtin, segmentation error with
	left prompt truncation from 21882, warning about variable
	signedness in zle_utils.c.

	* 21887: Src/Zle/zle_refresh.c: attempt to display wide characters
	wider than one screen cell properly.

2005-10-19  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21885: Src/Zle/zle_refresh.c: Convert some large macros
	into functions.

2005-10-19  Peter Stephenson  <pws@csr.com>

	* 21882: Src/prompt.c, Src/utils.c, Test/D01prompt.ztst: extend
	prompt truncation to handle multibyte characters.

2005-10-17  Bart Schaefer  <schaefer@zsh.org>

	* 21880: Completion/compinit: explicitly set IFS to the usual
	default string, plus carriage return, in case the surrounding
	environment has messed with it or a file with CRLF line breaks
	needs to be parsed.

2005-10-17  Peter Stephenson  <pws@csr.com>

	* unposted: Functions/Zle/define-composed-chars,
	Doc/Zsh/contrib.yo: a few more miscellaneous composable symbols.

2005-10-14  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Etc/FAQ.yo: Tweaked the precmd that works like
	PROMPT_SP so that it outputs "%#" like PROMPT_SP now does.

2005-10-13  Peter Stephenson  <pws@csr.com>

	* 21872: Src/jobs.c: job table wasn't cleared properly in
	subshells, possibly causing shell to hang; more efficient
	search for free job entry; don't record current job for
	use in saved job table.

	* 21871: Src/exec.c, Src/glob.c, Src/params.c, Src/subst.c,
	Src/utils.c, Src/zsh.h, Src/ztype.h, Src/Zle/compcore.c,
	Src/Zle/compctl.c, Src/Zle/zle_tricky.c: replace INULL() with
	more sensible inull() macro.

	* 21869: Src/prompt.c, Src/complist.c: fix multibyte characters
	in %-substitutions and output of invalid multibyte characters
	in completion listings.

	* 21870: Src/zsh.h: definition of INULL() in 21862/21863 was too
	liberal, causing problems with output of certain characters
	e.g. Cyrillic UTF-8.

2005-10-11  Peter Stephenson  <pws@csr.com>

	* 21862/21863: Src/glob.c, Src/lex.c, Src/pattern.c, Src/subst.c,
	Src/zsh.h, Test/D04parameter.ztst, Test/ztst.zsh:  Ensure that
	backslashes in parameters substituted by GLOB_SUBST are not
	swallowed up if there is no pattern match.

2005-10-07  Peter Stephenson  <pws@csr.com>

	* Stephen Rüger: 21846: Completion/Unix/Command/_chmod: too
	greedy looking for r, w, x, s, t in initial arguments to chmod.

2005-10-04  Bart Schaefer  <schaefer@zsh.org>

	* 21822 (annotated): Src/Zle/complist.c: prevent a long-standing
	infinite loop when redrawing the listing during menu-selection
	with a very narrow window.

	* 21821: Src/Zle/complist.c: fix infinite loop when multibyte
	support is disabled, introduced by 21784.

2005-10-03  Peter Stephenson  <pws@csr.com>

	* 21809: Src/utils.c: need to export nicedup() for
	--disable-multibyte in zle.

	* 21790: INSTALL, NEWS, README: add some documentation about
	the 4.3 release.

2005-10-02  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21802: Src/Zle/complist.c, Src/Zle/compmatch.c,
	Src/Zle/zle_main.c: attempt to prevent matches ending in
	the middle of multibyte characters, also some minor tidy-ups.

	* unposted, c.f. 21799: Doc/Zsh/func.yo: documentation for
	returns from TRAPNAL functions was wayward.

2005-10-01  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/utils.c: changed PROMPT_SP to use the prompt-
	escape "%#" (as Bart suggested) instead of a hard-wired "#".

2005-09-29  Peter Stephenson  <pws@csr.com>

	* 21784: Src/utils.c, Src/Zle/complist.c, Src/Zle/compresult.c,
	Src/Zle/zle.h, Src/Zle/zle_keymap.c, Src/Zle/zle_main.c,
	Src/Zle/zle_thingy.c, Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c:
	Use correct character lengths and widths for formatted character
	output.

2005-09-28  Clint Adams  <clint@zsh.org>

	* 21781: Completion/Unix/Command/_iconv: cope with
	`iconv --list` output from glibc 2.3.5.

	* 21780: Completion/Debian/Command/_dlocate: completion for
	dlocate.

2005-09-28  Peter Stephenson  <pws@csr.com>

	* 21779: Doc/Zsh/contrib.yo, Functions/Exceptions/throw, plus
	unposted Functions/Exceptions/catch: improvements from Bart in
	users/9452 plus clarifications to documentation.

2005-09-28  Clint Adams  <clint@zsh.org>

	* 21778: Completion/Debian/Command/_piuparts: completion for
	piuparts.
 
2005-09-27  Bart Schaefer  <schaefer@zsh.org>

	* 21770: Src/Zle/zle_keymap.c: tweak 21760 so binding XYA in a
	local keymap does not prevent bindings X or XY in the global
	keymap from being chosen (upon key timeout).

2005-09-27  Peter Stephenson  <pws@csr.com>

	* 21769: Src/utils.c, Src/Zle/complist.c: fix some consequences of
	21730 in completion lists.

2005-09-27  Clint Adams  <clint@zsh.org>

	* Vincent Lefevre: 21767: Completion/Unix/Command/_subversion:
	add ~ to the default svn status pattern.

2005-09-26  Peter Stephenson  <pws@csr.com>

	* 21764: Src/Zle/zle_hist.c: unmetafication mangled history lines
	in zle.

	* unposted: Doc/Zsh/redirect.yo: alter text referring to process
	substitutions slightly.

2005-09-26  Clint Adams  <clint@zsh.org>

	* 21763: Completion/Unix/Command/_baz: remove stray
	underscore.

2005-09-24  Bart Schaefer  <schaefer@zsh.org>

	* 21760: Src/Zle/zle_keymap.c: fix test for sequence prefixes
	in the local keymap in getkeymapcmd().

	* unposted: Functions/Misc/zargs: add range-checking of numeric
	options.

2005-09-23  Peter Stephenson  <pws@csr.com>

	* 21758: Doc/Zsh/expn.yo, Src/exec.c: optimise =(<<<...) to
	replace an argument by a filename containing it within the
	shell.

2005-09-22  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* unposted, c.f. 21752: Doc/Zsh/contrib.yo,
	Functions/Zle/.distfiles, Functions/Zle/defined-composed-chars,
	Functions/Zle/insert-composed-char: add some alphabets to
	insert-composed-chars.

2005-09-22  Clint Adams  <clint@zsh.org>

	* Stephen Rueger: 21744: Src/prompt.c: unconditionally assume
	that \t or \n are not part of multi-byte characters.

2005-09-20  Clint Adams  <clint@zsh.org>

	* 21740: Completion/Unix/Command/_quilt: completion for
	quilt.

2005-09-20  Wayne Davison  <wayned@users.sourceforge.net>

	* 21739: Src/utils.c: made PROMPT_SP work properly even when
	PROMPT_PERCENT is not set (as it is not when running as "sh").

2005-09-20  Peter Stephenson  <pws@csr.com>

	* unposted: Src/utils.c: screwed up iident() test in wcsiident().

	* 21737: Src/utils.c: unmetafy wordchars before looking for
	multibyte characters.

	* 21736: Src/init.c, Src/params.c, Src/pattern.c, Src/utils.c,
	Src/Zle/zle.h, Src/Zle/zle_main.c: Fix WORDCHARS to use multibyte
	characters; rationalise test for identifiers only to use ASCII
	characters; remove existing hack for 8-bit characters.

2005-09-19  Peter Stephenson  <pws@csr.com>

	* unposted, c.f. 21735: Doc/Zsh/grammar.yo: document
	that return at the top level of a script behaves like exit
	in a try-block.

2005-09-17  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21731: Src/prompt.c, Src/Zle/zle_refresh.c: count multibyte
	characters and their widths properly in prompts.

	* 21730: Src/builtin.c, Src/utils.c: nicechar(), used in
	prompts and other forms of formatted output, didn't return
	a metafied string with confusing results.  Also outputting
	pwd didn't unmetafy it in one place.

2005-09-14  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_rake: update for version 0.6.0

2005-09-13  Clint Adams  <clint@zsh.org>

	* 21718: Completion/Unix/Command/_bzr: complete files
	after bzr's first argument until the bzr shell-complete
	stuff is improved.

2005-09-09  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21722: Src/utils.c, Src/Zle/zle.h, Src/Zle/zle_misc.c,
	Src/Zle/zle_word.c: fix broken transpose-words and improve
	word character detection by assuming non-ASCII characters are word
	characters if and only if alphanumeric.

2005-09-09  Peter Stephenson  <pws@csr.com>

	* 21720: Src/Zle/zle_main.c: getrestchar() from 21709 didn't
	return properly.

	* d'après 21719: Src/builtin.c, Src/init.c, Src/params.c: Add some
	mod_exports.

	* 21717: Src/Zle/zle_misc.c: where-is and execute-named-command
	didn't work with multibyte support because the remainder of
	the character wasn't read properly.

	* 21709 plus tweaks: Doc/Zsh/zle.yo, Src/builtin.c, Src/init.c,
	Src/Zle/zle_keymap.c, Src/Zle/zle_main.c, Src/Zle/zle_misc.c,
	Src/Zle/zle_vi.c: Use $KEYTIMOUT for bytes after the first
	in a multibyte character.  Reset input state on invalid
	character or EOF.

2005-09-07  Clint Adams  <clint@zsh.org>

	* 21704, 21705: Completion/Unix/Command/_date: completion for
	Solaris, FreeBSD, and OpenBSD.

2005-09-06  Clint Adams  <clint@zsh.org>

	* 21703: Completion/Unix/Command/_bzr: completion for bzr 0.0.7.

2005-09-06  Peter Stephenson  <pws@csr.com>

	* 21701: Src/params.c, Test/D06subscript.ztst: negative offsets
	that indexed before the start of a scalar weren't handled properly.

2005-09-05  Peter Stephenson  <pws@csr.com>

	* 21698: Jean-Baptiste Quenot: Completion/Unix/Command/_ant:
	recursive completion could change directory.

2005-09-02  Clint Adams  <clint@zsh.org>

	* 21696: Completion/Unix/Command/_date: completion for
	GNU date.

2005-09-02  Peter Stephenson  <pws@csr.com>

	* 21695: Doc/Zsh/expn.yo: rewrite entry for u globbing flag.

	* 21693: Jean-Baptiste Quenot: Completion/Unix/Command/_ant:
	recursively find targets.

2005-08-31  Clint Adams  <clint@zsh.org>

	* 21686: Completion/Debian/Command/_make-kpkg: modernize
	make-kpkg completion.

	* 21692: Completion/Unix/Command/_baz: remove set-tree-version, fix
	tree-version, add tree-id.

2005-08-31  Peter Stephenson  <pws@csr.com>

	* users/9359: Francisco Borges: Completion/X/Command/_gv:
	completion of ps and PDF files was broken for gv.

2005-08-25  Clint Adams  <clint@zsh.org>

	* 21683: Completion/X/Command/_urxvt: more fixes
	to urxvt completion.

2005-08-23  Clint Adams  <clint@zsh.org>

	* 21682: Completion/Unix/Command/_subversion: handle usage output
	of commands with [0-9]. alternatives, and actually parse that
	output again.

2005-08-22  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Doc/Makefile.in: An even better fix than the one
	from 21677:  we now avoid more cases of lost characters due
	to yodl not escaping start-of-line apostrophes.

2005-08-22  Peter Stephenson  <pws@csr.com>

	* 21678: Src/params.c, Test/D04parameter.ztst: unsetting
	tied parameters was fraught with crashes.

	* 21676: Doc/zmacros.yo, Doc/Zsh/contrib.yo,
	Functions/Zle/.distfiles, Functions/Zle/insert-composed-char,
	Functions/Zle/insert-unicode-char: insert-unicode-char is now
	insert-composed-char and uses RFC 1345 for composing characters.

2005-08-22  Geoff Wing  <gcw@zsh.org>

	* unposted: Doc/Zsh/metafaq.yo, Etc/FAQ.yo: update some
	mirror site information

2005-08-19  Wayne Davison  <wayned@users.sourceforge.net>

	* 21677: Doc/Makefile.in: Filter apostrophes in the \fB...\fP
	headers of the nroff output since it appears that yodl is not
	properly escaping them.

2005-08-18  Andrey Borzenkov  <bor@zsh.org>

	* 21663: Src/Zle/complete.c: check for string overflow
	in do_comp_vars()

	* 21664: Src/Zle/compcore.c, Src/Zle/compresult.c: unmetafy
	argument in ztat() before calling (l)stat

2005-08-18  Peter Stephenson  <pws@csr.com>

	* unposted: Doc/Zsh/contrib.yo, Functions/Zle/insert-unicode-char:
	cent is now p % to avoid duplication.

	* 21662: Doc/Zsh/contrib.yo, Functions/Zle/insert-unicode-char:
	compose and insert a Unicode character using two-key codes.

	* 21661: Src/glob.c: variable in 21655 shouldn't be static.

2005-08-18  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21655: Src/glob.c, Test/D04parameter.ztst: replacing multiple
	matches where the replacement string itself came from a match
	could get confused.

2005-08-17  Wayne Davison  <wayned@users.sourceforge.net>

	* 21654: Src/string.c, Src/utils.c: Marked some ifdef/endif lines
	as exportable to fix a compile bug when ZLE_UNICODE_SUPPORT is not
	defined.

	* unposted: configure.ac, aczsh.m4: Use AC_HELP_STRING macro in
	all AC_ARG_ENABLE and AC_ARG_WITH macros.

2005-08-16  Wayne Davison  <wayned@users.sourceforge.net>

	* 21629: configure.ac, Src/system.h: moved the optional definition
	of ZLE_UNICODE_SUPPORT into configure, and added support for the
	new --enable-multibyte and --disable-multibyte configure options.

	* 1/2 of 21644: Src/Zle/complete.c: fixed bug in do_comp_vars()
	when the first char in compprefix is metafied.

2005-08-16  Andrey Borzenkov  <bor@zsh.org>

	* 21642: Src/Zle/compcore.c: cleanup for 21627, remove redundant
	checks

2005-08-16  Clint Adams  <clint@zsh.org>

	* 21631: Src/Zle/compcore.c: make sure an unmetafied string is
	passed to ztat to determine file type.

2005-08-15  Andrey Borzenkov  <bor@zsh.org>

	* 21622: Src/Zle/zle_refresh.c: metafy line back before calling
	completion code in zrefresh()

	* 21627: Src/Zle/compcore.c: unmetafy line back before calling
	ZLE from within completion code in do_completion()

2005-08-15  Clint Adams  <clint@zsh.org>

	* 21619: Src/string.c, Src/utils.c, Src/Zle/zle.h: define wide
	versions of zarrdup, zputs, niceztrlen.

	* 21565: Completion/Unix/Command/_man: better handle uncompressed
	manpages with .[0-9] in their names.

2005-08-15  Wayne Davison  <wayned@users.sourceforge.net>

	* 21609: Src/glob.c: fixed the readlink() call in statfullpath().

2005-08-15  Felix Rosencrantz <f.rosencrantz@gmail.com>

	* 21611: Completion/X/Command/_mozilla: Added Firefox support.

2005-08-15  Peter Stephenson  <pws@csr.com>

	* c.f. 21616: Src/zle_misc.c: "unmetafy_line" typo.

	* 21610: Src/system.h, Src/Zle/zle_hist.c, Src/Zle/zle_keymap.c,
	Src/Zle/zle_misc.c: Turn on ZLE_UNICODE_SUPPORT by default where
	allowed; fix suffix removal; fix metafication when removing
	suffix by function; fix insert-last-word.

2005-08-14  Bart Schaefer  <schaefer@zsh.org>

	* 21369: Completion/Unix/Command/_cvs: assign to array with
	builtin stat rather than parsing stdout.

	* unposted: Functions/Prompts/prompt_bart_setup: more adjustments
	for the PROMPT_SP option.

	* 21366: Src/jobs.c: LONG_LIST_JOBS applies to more places where
	job listing are printed.

2005-08-12  Wayne Davison  <wayned@users.sourceforge.net>

	* 21606: Src/Zle/zle.h: When compiled with gcc, the ZS_str* macros
	get replaced by inline functions that give us complete compile-time
	type-checking.  For other compilers, the ZS_str* macros now cast
	the string pointers to char*, which will avoid any warnings about
	pointer signedness.

2005-08-12  Peter Stephenson  <pws@csr.com>

	* 21603: Src/Zle/zle_utils.c: conversions from wide character
	to multibyte didn't convert the cursor position properly if it
	was at the end of the line.

	* 21412: Travis Spencer: Completion/Unix/Command/_pkg-config:
	new completion.

2005-08-11  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/Zle/zle_hist.c, Src/Zle/zle_refresh.c: changed some
	uses of ZWC() on string literals to use ZWS().

	* unposted: Test/B02typeset.ztst: improved the final test to ensure
	that all the locally-unset environment variables get restored after
	a function call. This also fixed an interaction with the cleanup
	code that caused the ztst.* temporary files to not be removed.

2005-08-11  Oliver Kiddle  <opk@zsh.org>

	* 21598: Completion/Unix/Command/_subversion: fix typo that broke
	svn ci completion and avoid problem if LC_ALL overrides LC_MESSAGES

	* 21571: Completion/Debian/Command/_aptitude: avoid localised
	translations that break parsing

2005-08-10  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21596: Src/Zle/compresult.c, Src/Zle/zle_tricky.c: more fall out
	from 21590: run-help, which-command and accept-and-menu-complete
	were broken.

2005-08-10  Peter Stephenson  <pws@csr.com>

	* 21593: Src/Zle/complist.c, Src/Zle/zle_refresh.c: character
	arrays wrongly declared with ZLE_UNICODE_SUPPORT.

	* 21592: Src/Zle/complist.c: attempt to browse a new directory
	in menu selection caused crash.

	* c.f. 21590: Src/hist.c, Src/lex.c, Src/utils.c,
	Src/Zle/compcore.c, Src/Zle/compctl.c, Src/Zle/complist.c,
	Src/Zle/compresult.c, Src/Zle/zle.h, Src/Zle/zle_hist.c,
	Src/Zle/zle_main.c, Src/Zle/zle_misc.c, Src/Zle/zle_params.c,
	Src/Zle/zle_refresh.c, Src/Zle/zle_thingy.c, Src/Zle/zle_tricky.c,
	Src/Zle/zle_utils.c: upgrade metafy_line()/unmetafy_line() to
	take account of wide characters.  Add extra conversion where
	necessary.  Also attempt fix for singlerefresh() prompt with
	ZLE_UNICODE_SUPPORT (untested).

2005-08-10  Wayne Davison  <wayned@users.sourceforge.net>

	* 21579: Thorsten Dahlheimer: Src/builtin.c: Made printf %s
	handle embedded nuls in its arg.

2005-08-09  Peter Stephenson  <pws@csr.com>

	* 21583: Thorsten Dahlheimer: Src/module.c: extend circularity
	test of zmodload -A.

	* 21582: Thorsten Dahlheimer: Src/module.c: failure status of
	zmodload -R was wrong.

	* 21578: Thorsten Dahlheimer: Src/mkmakemod.sh: script used not
	to exit after cleaning up.

	* 21577 (adapted): Dan Bullok: Src/Zle/zle_main.c, Src/init.c,
	Src/utils.c: improved 21567 which re-expands the prompt and
	refreshes but doesn't trash the line editor.

2005-08-08  Wayne Davison  <wayned@users.sourceforge.net>

	* 21580: Thorsten Dahlheimer: Test/C03traps.ztst: disable any
	pre-existing traps that could interfere with the tests.

	* 21581: Thorsten Dahlheimer: Src/builtin.c: fixed error output
	for unknown signal names when using "trap -".

	* 21581 (modified): Doc/Zsh/builtins.yo: improved "trap" docs.

	* 21584: Src/builtin.c, Test/B03print.ztst: fixed a bug in printf
	%b (introduced in the 21552 changes) where a missing arg could not
	be printed with a zero width.

2005-08-08  Peter Stephenson  <pws@csr.com>

	* 21576: Test/E01options.ztst: test for 21575.

	* unposted: Src/exec.c: removed unnecessary augment variable from
	21575

	* 21575 plus unposted changes to Functions/TCP/*:
	Completion/compinit, Doc/Zsh/options.yo, Functions/TCP/tcp_expect,
	Functions/TCP/tcp_open, Functions/TCP/tcp_read, Src/exec.c,
	Src/options.c, Src/params.c, Src/zsh.h: Add WARN_CREATE_GLOBAL
	option to warn when an assignment in a function creates a global
	parameter.

	* 21567: Dan Bullok: Src/utils.c: trash zle when updating window
	size since otherwise multiline prompts get screwed up.

2005-08-08  Oliver Kiddle  <opk@zsh.org>

	* 21570: Completion/Unix/Command/_subversion: complete for the
	help sub-command

	* unposted: Completion/Linux/Command/_brctl: new brctl completion

	* 21566: Tobias Gruetzmacher: Completion/Unix/Command/_darcs:
	fix to list all repositories

2005-08-07  Clint Adams  <clint@zsh.org>

	unposted: Completion/Unix/Command/_mencal: fix syntax error
	introduced by recent cleanup.

2005-08-02  Peter Stephenson  <pws@csr.com>

	* 21557: Thorsten Dahlheimer: Src/glob.c: BRACE_CCL was broken
	for character 255.

2005-08-01  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/builtin.c: silenced a compiler warning.

	* unposted: Test/B03print.ztst: some slight improvements to
	the existing no-newline test cases, plus a few more tests.

2005-08-01  Oliver Kiddle  <opk@zsh.org>

	* unposted: Completion/Debian/Command/_apt-move,
	Completion/Debian/Command/_module-assistant,
	Completion/Debian/Command/_uscan, Completion/Debian/Command/_wajig,
	Completion/Unix/Command/_cal, Completion/Unix/Command/_ccal,
	Completion/Unix/Command/_dhclient, Completion/Unix/Command/_fortune,
	Completion/Unix/Command/_mencal, Completion/Unix/Command/_perforce,
	Completion/Unix/Command/_pump, Completion/Unix/Command/_surfraw:
	various cleanups: fix indentation and capitalisation of descriptions

	* 21393: Completion/Unix/Command/_kvno: add missing local declarations

2005-08-01  Peter Stephenson  <pws@csr.com>

	* 21552: Thorsten Dahlheimer: Src/builtin.c: various fixes to the
	print builtin.

	* unposted: Completion/Unix/Command/_perforce: add the as yet
	undocumented "attribute" command.

	* 21551: Matthias Kopfermann: FEATURES: file<20-> globbing
	example is confusing.

	* 21546: Doc/Zsh/params.yo: document the oddities of subscripts
	when searching arrays.

	* 21544: Thorsten Dahlheimer: configure.ac, Src/system.h: ioctl()
	prototyping was substandard and missing on Cygwin.

2005-07-31  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21553: Doc/Makefile.in, Doc/.distfiles: Create zsh.pdf
	using texi2dvi to ensure cross-references and indexes are OK;
	don't distribute PostScript files any more, though they can
	still be made.

2005-07-29  Wayne Davison  <wayned@users.sourceforge.net>

	* 21548: Completion/Unix/Command/_rsync:  Made file completion
	work after --include-from= and --exclude-from=.

2005-07-28  Peter Stephenson  <pws@csr.com>

	* unposted: Functions/Exceptions/.distfiles: added to archive.

	* 21541: Src/Zle/zle_hist.c, Src/Zle/zle_main.c,
	Src/Zle/zle_misc.c, Src/Zle/zle_params.c, Src/Zle/zle_tricky.c,
	Src/Zle/zle_utils.c: remove some warnings from
	ZLE_UNICODE_SUPPORT.

	* unposted: Completion/Unix/Command/_perforce: updated for
	features of Perforce 2005.1 release.

2005-07-28  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21540: Completion/Unix/Command/_aap: update aap completion for version
	1.076; add target descriptions; search up directory tree for main.aap
	recipe file if --up is specified

2005-07-26  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/utils.c, Src/Zle/zle_main.c, Doc/Zsh/options.yo:
	Moved the PROMPT_SP output into preprompt() so that it takes
	effect prior to things like precmd, the mail-check output, etc.
	Also added an inverse hash (#) that helps to distinguish when a
	partial line was preserved.

	* 21532: Etc/FAQ.yo: updated the precmd in the prompt-
	overwriting section to output an inverse hash when we preserve a
	partial line, to simplify the output (it's all one "print" now),
	and include a \r at the end (so that the echoing of user-input
	will be less likely to cause an unintended wrap).

2005-07-26  Clint Adams  <clint@zsh.org>

	* 21529: configure.ac, Src/zsh.mdd: move scriptdir to a scripts
	subdir, and don't include Scripts in fpath.

2005-07-26  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_rake: declare expl local

2005-07-26  Peter Stephenson  <pws@csr.com>

	* 21527: Functions/Newuser/.distfiles,
	Functions/Newuser/zsh-install-newuser,
	Functions/Newuser/zsh-newuser-install, Scripts/newuser: don't
	use function if it failed to load; rename to zsh-newuser-install
	in case there are more zsh-newuser-* functions in future.

2005-07-25  Clint Adams  <clint@zsh.org>

	* 21526: Completion/Unix/Command/_dhclient: handle dhclient V3 as
	well as V2.

	* 21523, 21524: Julius Plenz: Completion/Unix/Command/_dhclient,
	Completion/Unix/Command/_pump: completions for pump and dhclient.

2005-07-25  Wayne Davison  <wayned@users.sourceforge.net>

	* 21518 (modified): Src/builtin.c, Src/utils.c, Test/B03print.ztst:
	more collaboration with Thorsten Dahlheimer to change the handling
	of \c in echo and printf to make it comply with POSIX.

2005-07-25  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_php: add missing compset -S call
	when completing directives

2005-07-24  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/utils.c: improved the function comment for
	getkeystring().

	* 21509: Thorsten Dahlheimer: Src/utils.c, Src/params.c: fixed
	some issues with \c parsing.

	* 21501: Thorsten Dahlheimer: Src/Makefile.in: fixed a cygwin
	install target to make sure the bindir exists.

2005-07-24  Clint Adams  <clint@zsh.org>

	* 21519: Completion/Unix/Command/_baz: only complete files
	after baz commit, not archive/version.

	* 21517: Completion/Unix/Command/_baz: complete files after
	build-config if there's a configs subdir, even if one is not in a
	project tree.

	* 21510: Config/installfns.sh: use && rather than -a binary
	test operator.

2005-07-23  Clint Adams  <clint@zsh.org>

	* 21505, 21506: Completion/Unix/Command/_rubber: use an array for
	common arguments rather than an additional function, and use
	globbing instead of ls and sed.

	* 21504: Completion/Unix/Command/_xscreensaver,
	Completion/X/Command/_xscreensaver: move xscreensaver-command
	completion to the X dir.

2005-07-21  Peter Stephenson  <pws@csr.com>

	* unposted: Completion/Debian/Command/.distfiles,
	Completion/Unix/Command/.distfiles,
	Completion/Unix/Type/.distfiles, Completion/X/Command/.distfiles,
	Doc/Zsh/.distfiles, Functions/MIME/.distfiles,
	Functions/Newuser/.distfiles, Functions/TCP/.distfiles,
	Functions/Zle/.distfiles, Scripts/.distfiles,
	Src/Modules/.distfiles:  Bring .distfiles up to date.

2005-07-20  Peter Stephenson  <pws@csr.com>

	* 21500: Makefile.in, Config/installfns.sh,
	Config/uninstallfns.sh, Functions/Newuser/zsh-install-newuser,
	Scripts/newuser, Src/Modules/newuser.mdd: Add framework for
	function to be edited to provide new user startup files.

2005-07-20  Clint Adams  <clint@zsh.org>

	* 21499: Doc/Makefile.in: use newer texi2html syntax.

2005-07-20  Peter Stephenson  <pws@csr.com>

	* 21498: configure.ac, Configs/defs.mk.in, Doc/Makefile.in,
	Doc/Zsh/mod_newuser.yo, Src/init.c, Src/module.c, Src/zsh.mdd,
	Src/Modules/newuser.c, Src/Modules/newuser.mdd: Add zsh/newuser
	module, currently with no associated shell code.

2005-07-20  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_rake: add -s option to _arguments

2005-07-19  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Etc/FAQ.yo: revert erroneous 3.0 -> 4.3.0 change.

	* 21492: Etc/FAQ.yo: a more extensive update to the prompt-
	overwriting section in light of PROMPT_SP.

2005-07-18  Peter Stephenson  <pws@csr.com>

	* unposted: Etc/FAQ.yo: version in 21490 should be 4.3.0.

	* 21490: Etc/FAQ.yo: update FAQ to reflect 21464.

2005-07-16  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_python: escape colons in -W option
	argument message

2005-07-15  Wayne Davison  <wayned@users.sourceforge.net>

	* 21464: Doc/Zsh/options.yo, Src/zsh.h, Src/options.c, Src/init.c,
	Src/Zle/zle_main.c: added a new option, PROMPT_SP, designed to save
	a partial line before the prompt can cover it up (due to PROMPT_CR).

2005-07-15  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_python: add missing -C option to
	_arguments; complete script arguments with _normal

2005-07-14  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21466: Src/Modules/files.c: lstat() should be stat() in mkdir -p
	test (from Fr. Br. George).

2005-07-12  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21449: Completion/Unix/Command/_ruby: limit options available to
	RUBYOPT env variable to -[IdvwrK]; include directories specified with
	-I in the search path used to generate library matches

	* 21446 (modified): Completion/Unix/Command/_rake: generate targets for
	rakefiles in parent directories and those specified with -f; include
	directories specified with -I in the search path used to generate
	library matches

2005-07-12  Clint Adams  <clint@zsh.org>

	* 21447: Completion/Unix/Command/_rubber: completion for
	rubber, contributed by Emmanuel Hainry and Emmanuel
	Beffara.

2005-07-11  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21443: Completion/Unix/Command/_rake: new completion for rake

	* unposted: Completion/Unix/Command/_ruby: fix typo in first normal arg
	action

2005-07-11  Bart Schaefer  <schaefer@zsh.org>

	* 21428: Travis Spencer: Src/Zle/computil.c: fix null pointer deref
	on wrong number of arguments to compvalues.

2005-07-10  Bart Schaefer  <schaefer@zsh.org>

	* 21423: Travis Spencer: Completion/Unix/Command/_unexpand:
	completion for both GNU and Sun/BSD unexpand variants.

	* unposted: Functions/Misc/allopt: use "set -o" to avoid twaddling
	the setting of kshoptionprint.

2005-07-10  Clint Adams  <clint@zsh.org>

	* 21416: Completion/Unix/Command/_gpg: cope with an equals
	sign after --keyring.

	* 21417: Completion/Unix/Command/_xscreensaver: completion
	for xscreensaver-command.

	* 21418: Completion/Debian/Command/_madison: completion
	for madison.

2005-07-08  Peter Stephenson  <pws@csr.com>

	* users/9059: Nikolai Weibull: Completion/Unix/Command/_vim:
	improved _vim_files.

2005-07-07  Peter Stephenson  <pws@csr.com>

	* users/9049: Completion/Unix/Command/_vim: add variant names
	of vim, but not yet vi, ex, view.

	* users/9045: Nikolai Weibull
	<mailing-lists.zsh-users@rawuncut.elitemail.org>:
	Completion/Unix/Command/_vim: new completion function.

2005-07-06  Peter Stephenson  <pws@csr.com>

	* 21402: Src/Zle/compmatch.c: Fix crash completing the set
	of files AIWebKitMessageViewController.m,
	AIWebKitMessageViewPlugin.m, AIWebkitMessageViewStyle.m
	with case-insensitive matching.

2005-07-03  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_w3m: add missing compset -S calls
	when completing option names and proxy usernames

	* 21400: Completion/Unix/Command/_ruby: add completion for RUBYOPT,
	RUBYLIB and RUBYPATH env variables

2005-06-30  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_links: declare parameter vals
	local 

2005-06-28  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21392: Completion/Unix/Command/_w3m: update w3m completion for
	version 0.5.x; add completion for URLs from the bookmarks file,
	options, charsets, and proxy authentication

2005-06-28  Peter Stephenson  <pws@csr.com>

	* 21391: Src/jobs.c: Restrict passing of signals from foreground
	processes to the shell to SIGINT and SIGQUIT (i.e. those
	generated from the keyboard).  This removes some unexpected
	behaviour with SIGPIPE being passed to the shell.

2005-06-27  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Type/_urls: complete WWW_HOME, ftp_proxy
	and https_proxy with URLs

2005-06-27  Peter Stephenson  <pws@csr.com>

	* 21387: Doc/Zsh/contrib.yo: document the precision features
	in zcalc.

2005-06-26  Clint Adams  <clint@zsh.org>

	* 21384: Completion/X/Command/_urxvt: small fixes
	to urxvt completion.

	* 21383: nuno alexandre: Completion/X/Command/_urxvt:
	completion for rxvt-unicode.

2005-06-24  Clint Adams  <clint@zsh.org>

	* 21382: Completion/Unix/Command/_kvno: completion for MIT
	krb5's kvno.

2005-06-24  Oliver Kiddle  <opk@zsh.org>

	* 21380: Completion/Linux/Command/_iwconfig,
	Completion/Linux/Command/_tune2fs, Completion/Unix/Command/_wget,
	Completion/Linux/Command/_mii-tool: update for wget 1.10, add
	missing descriptions and other minor improvements

2005-06-24  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Debian/Command/_apt-move: prevent function from
	returning early and preventing prefix-needed style from working when
	set to false

	* 21379: Completion/Unix/Command/_wget: improve --restrict-file-names
	completion by allowing 'nocontrol' as an argument

2005-06-21  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21334: Completion/Linux/Command/_pkgtool: fix typo in -target_dir
	completion

2005-06-21  Oliver Kiddle  <opk@zsh.org>

	* 21317: Src/glob.c, Test/D02glob.ztst: fix bug where recursive
	glob within e qualifier would hang the shell

2005-06-20  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Functions/Misc/zargs: support -I and -L as synonyms
	for -i and -l, except that the former require their arguments.
	Document several differences from POSIX xargs behavior.  V 1.4.

2005-06-18  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21343: Completion/Unix/Command/_php: update php completion for
	version 5.0; continue supporting version 4.x via _pick_variant

2005-06-17  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_darcs: tidy up command
	descriptions

2005-06-17  Oliver Kiddle  <opk@zsh.org>

	* 21352: Harald van Dijk: Src/builtin.c: handle null after % in
	printf format specifier

	* unposted: Test/B03print.ztst: add test for 21352

2005-06-16  Clint Adams  <clint@zsh.org>

	* 21351: Completion/X/Command/_vnc: complete for xvnc4viewer and
	xtightvncviewer.

2005-06-14  Clint Adams  <clint@zsh.org>

	* 21243: Kazuhiro NISHIYAMA: Completion/Unix/Command/_subversion:
	complete first option of svn subcmds.

2005-06-13  Bart Schaefer  <schaefer@zsh.org>

	* 21328: Src/init.c: in loop(), avoid preprompt() when not looping at
	the top level (prevents double precmd call during "fc -e -").

2005-06-11  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21316 (modified): Completion/Unix/Command/_less,
	Completion/Unix/Type/_ctags_tags: new completion for ctags tags; update
	less -t completion to use it
	
	* 21320: Completion/Unix/Command/_screen: complete -D and -R with the
	appropriate session types; fix incorrect completion of -c and -dmS
	options

	* 21321: Completion/Unix/Command/_antiword: update antiword completion
	for version 0.36

2005-06-09  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_less: fix typo in state name

2005-06-08  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_ant: add missing options specific
	to the launch script

2005-06-08  Oliver Kiddle  <opk@zsh.org>

	* 21315: Completion/AIX/Command/_floppy,
	Completion/AIX/Command/_lsdev, Completion/AIX/Command/_lslv,
	Completion/AIX/Command/_lsvg, Completion/AIX/Type/_logical_volumes,
	Completion/AIX/Type/_object_classes,
	Completion/AIX/Type/_physical_volumes,
	Completion/AIX/Type/_volume_groups,
	Completion/Darwin/Type/_mac_applications,
	Completion/Debian/Command/_bug, Completion/Unix/Command/_gs,
	Completion/Unix/Command/_imagemagick, Completion/Unix/Command/_java,
	Completion/Unix/Command/_last, Completion/Unix/Command/_links,
	Completion/Unix/Command/_lsof, Completion/Unix/Command/_mount,
	Completion/Unix/Command/_perldoc, Completion/Unix/Command/_user_admin,
	Completion/Unix/Command/_yp, Completion/Unix/Command/_zdump,
	Completion/Unix/Type/_dir_list, Completion/Unix/Type/_domains,
	Completion/Unix/Type/_file_systems, Completion/Unix/Type/_groups,
	Completion/Unix/Type/_hosts, Completion/Unix/Type/_java_class,
	Completion/Unix/Type/_locales, Completion/Unix/Type/_perl_basepods,
	Completion/Unix/Type/_perl_modules, Completion/Unix/Type/_pids,
	Completion/Unix/Type/_ports, Completion/Unix/Type/_printers,
	Completion/Unix/Type/_services, Completion/Unix/Type/_tex,
	Completion/Unix/Type/_texi, Completion/Unix/Type/_time_zone,
	Completion/Unix/Type/_users, Completion/X/Type/_x_cursor,
	Completion/X/Type/_x_extension, Completion/X/Type/_x_font,
	Completion/X/Type/_x_keysym, Completion/Zsh/Command/_print,
	Completion/Zsh/Command/_read, Completion/Zsh/Command/_unhash,
	Completion/Zsh/Type/_arrays, Completion/Zsh/Type/_file_descriptors,
	Completion/Zsh/Type/_functions, Completion/Zsh/Type/_jobs_bg,
	Completion/Zsh/Type/_jobs_fg, Completion/Zsh/Type/_limits,
	Completion/Zsh/Type/_options, Completion/Zsh/Type/_options_set,
	Completion/Zsh/Type/_options_unset: make completion functions
	give precedence to descriptions passed as parameters and
	cleanup	descriptions in calling functions

	* 21314: Doc/Zsh/compsys.yo: declare expl local in example use
	of _wanted 

	* unposted: Completion/Linux/Command/_yast: new yast completion

	* 21313: Completion/Unix/Type/_email_addresses: make code for
	extracting mutt aliases do a better job of finding rc files

2005-06-08  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21306: Completion/Zsh/Command/_disable: add -s option for removing
	suffix aliases

	* 21310: Completion/Unix/Type/_global_tags: pass an array to compadd;
	redirect stderr to /dev/null when generating matches with _call_program

	* 21302: Completion/Linux/Command/_pkgtool,
	Completion/Unix/Command/_ant, Completion/Unix/Command/_bogofilter,
	Completion/Unix/Command/_cdrecord, Completion/Unix/Command/_chkconfig,
	Completion/Unix/Command/_chmod, Completion/Unix/Command/_gs,
	Completion/Unix/Command/_look, Completion/Unix/Command/_mount,
	Completion/Unix/Command/_python, Completion/Unix/Command/_rar,
	Completion/Unix/Type/_file_systems, Completion/Unix/Type/_global_tags,
	Completion/Unix/Type/_locales, Completion/Unix/Type/_user_at_host,
	Completion/X/Command/_mozilla, Completion/X/Command/_mplayer,
	Completion/X/Command/_netscape, Completion/X/Type/_x_visual,
	Completion/Zsh/Context/_equal: make sure expl is declared local in
	completion functions

2005-06-07  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Zsh/Command/_dirs: fix typo in opt description 

2005-06-06  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_raggle: fix typo in tag name

2005-06-02  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21293: Completion/Unix/Command/_ant: update ant completion for
	version 1.6.4; always use the -find and -buildfile options when
	completing targets

2005-06-01  Peter Stephenson  <pws@csr.com>

	* unposted: Src/builtin.c: need const for result of getsigname().

	* 21296: Doc/Zsh/builtins.yo [this hunk missing from post],
	Doc/Zsh/func.yo, Src/builtin.c, Src/jobs.c, Src/zsh.h:
	Allow ERR signal as alias for ZERR on systems that don't
	have SIGERR.  Make "trap" report the name used when the trap
	was set rather than the canonical name.

2005-06-01  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21294: Completion/Cygwin/Command/_cygstart,
	Completion/Debian/Command/_apt-move,
	Completion/Debian/Command/_module-assistant,
	Completion/Unix/Command/_ccal, Completion/Unix/Command/_perl,
	Completion/Unix/Command/_surfraw, Completion/Unix/Command/_vux,
	Completion/X/Command/_kfmclient: fix incorrectly capitalized completion
	descriptions

2005-05-31  Geoff Wing  <gcw@zsh.org>

	* 21290: configure.ac: don't need backslash quoting within single-quote
	areas.  Change constant RE boundary characters to slash.

2005-05-30  Oliver Kiddle  <opk@zsh.org>

	* 21266: Completion/Unix/Command/_mh: improve completion of sequences

2005-05-26  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 21275 (modified): Completion/Unix/Command/_raggle: update raggle
	completion for version 0.4.0

2005-05-23  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Functions/Prompts/prompt_bart_setup: print whitespace
	to stderr for promptcr adjustments, because the prompt itself is
	printed to stderr.

2005-05-23  Peter Stephenson  <pws@csr.com>

	* 21270: Src/system.h: don't use poll() on Apple.

	* users/8863: Doc/Zsh/contrib.yo, Functions/Zle/which-command:
	enhanced which-command that traces the final command better.

	* users/8856: Src/Zle/zle_tricky.c: which-command shouldn't expand
	aliases before passing first argument.

2005-05-22  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Completion/Base/Widget/_complete_debug: add a colon
	command so name and version of zsh appear in debug output.

2005-05-21  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* unposted: Completion/Unix/Command/_webbrowser: add firefox to
	list of basic URL completed web browsers

2005-05-17  Peter Stephenson  <pws@csr.com>

	* 21264: Doc/Zsh/arith.yo: document the return status of (( ... )).

2005-05-17  Geoff Wing  <gcw@zsh.org>

	* unposted: Etc/FAQ.yo: update mirror sites

2005-05-13  Oliver Kiddle  <opk@zsh.org>

	* Jesse W: 21244 (modified): Completion/Darwin/Command/_qtplay:
	new completion for qtplay (Quick Time wrapper for Mac OS X)

	* unposted: Completion/X/Command/_qiv: new completion for qiv

2005-05-13  Motoi Washida <a66@h8.dion.ne.jp>

	* users/8826: Completion/Darwin/Type/_retrieve_mac_apps: search
	applications using spotlight. 

2005-05-12  Felix Rosencrantz <f.rosencrantz@gmail.com>

	* 21257: Completion/Unix/Command/_perforce: fix minor typo
	in completion for the p4 password command.

2005-05-11  Oliver Kiddle  <opk@zsh.org>

	* Joerg Sonnenberger: 21252: configure.ac, Src/Modules/zpty.c,
	Completion/BSD/Command/_chflags, Completion/Unix/Command/_apm,
	Completion/Unix/Command/_cvs, Completion/Unix/Command/_ifconfig,
	Completion/Unix/Command/_mount, Completion/Unix/Command/_mt,
	Completion/Unix/Command/_sysctl, Completion/Unix/Type/_file_systems,
	Completion/Unix/Type/_net_interfaces: Dragonfly BSD support

2005-05-10  Oliver Kiddle  <opk@zsh.org>

	* 21248: Doc/Zsh/mod_socket.yo: avoid use of subsection within
	list because it causes makeinfo to produce broken docbook XML

	* Haakon Riiser: 21188: Completion/X/Command/_acroread: handle
	acroread 7.x

2005-05-09  Bart Schaefer  <schaefer@zsh.org>

	* unposted (see 21240): Functions/Prompts/prompt_bart_setup,
	Functions/Prompts/prompt_bigfade_setup,
	Functions/Prompts/prompt_elite2_setup,
	Functions/Prompts/prompt_elite_setup,
	Functions/Prompts/prompt_fade_setup,
	Functions/Prompts/prompt_fire_setup, Functions/Prompts/promptinit:
	assorted cleanup triggered by the discovery that elite2 has never
	really worked correctly.

2005-05-09  Clint Adams  <clint@zsh.org>

	* 21239: Completion/Unix/Command/_ccal: completion for
	ccal.

2005-05-09  Peter Stephenson  <pws@csr.com>

	* 21211: Doc/Zsh/expn.yo, Src/pattern.c, Test/D02glob.ztst:
	Add [[:IDENT:]], [[:IFS:]], [[:IFSSPACE:]], [[:WORD:]] tests.

2005-05-08  Bart Schaefer  <schaefer@zsh.org>

	* 21235, 21236: Completion/Unix/Command/_ssh: fix remote filename
	quoting and wrong exit status, both in _remote_files.

2005-05-07  Clint Adams  <clint@zsh.org>

	* Jesse Weinstein: 21233: Completion/Debian/Command/_dpkg:
	completion for dpkg-query.

2005-05-06  Bart Schaefer  <schaefer@zsh.org>

	* 21229: Doc/Makefile.in: fix fake build run when yodl isn't found

2005-05-05  Clint Adams  <clint@zsh.org>

	* Jesse Weinstein: 21230 (reformatted as 21231):
	Completion/Debian/Command/_dpkg: complete -W/--show
	for dpkg-deb.

2005-04-30  Bart Schaefer  <schaefer@zsh.org>

	* 21215: Test/C03traps.ztst: clean up TRAPEXIT file left behind by
	autoloaded trap test.

2005-04-27  Peter Stephenson  <pws@csr.com>

	* 21197: Src/exec.c, Src/signals.c: LOCAL_TRAPS didn't restore
	a trap when modified inside another trap.

2005-04-27  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  Made some
	options repeatable (--include, --exclude, --filter, -f)
	and added the one new option that will be in 2.6.5.

2005-04-26  Peter Stephenson  <pws@csr.com>

	* 21195 (c.f. 21194 from Bart): Src/pattern.c,
	Test/D04parameter.ztst: 21170 broke handling of zero-length
	quoted test strings.

2005-04-25  Peter Stephenson  <pws@csr.com>

	* 21184: Test/B04read.ztst: test for foregoing fix.

	* users/8752: Src/builtin.c: stripping IFS characters after
	reading a line in the read builtin wasn't sensitive to metafied
	characters.

2005-04-24  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Src/parse.c: get rid of unused third argument of
	zwcstat().

	* unposted: Functions/Prompts/prompt_bart_setup: employ a variant
	of Oliver's suggestion from 21117 to handle promptcr better.

	* unposted: Doc/Zsh/builtins.yo, Doc/Zsh/compctl.yo,
	Doc/Zsh/compsys.yo, Doc/Zsh/compwid.yo, Doc/Zsh/expn.yo,
	Doc/Zsh/invoke.yo, Doc/Zsh/mod_zutil.yo, Doc/Zsh/tcpsys.yo:
	fix a lot of places where info compilation was reducing two
	hyphens to only one.

	* unposted: Doc/Makefile.in: yodl with a little less echo.

	* unposted (cf. 20494): Completion/Base/Widget/_generic,
	Doc/Zsh/compsys.yo: pass the positional parameters of _generic
	through to _main_complete.

	* 21174: Src/glob.c: additional Meta-increment/decrement of
	pointers when walking metafied strings (goes with 21170).

	* Tobias Gruetzmacher 21168 (slightly tweaked):
	Completion/Debian/Command/_apt,
	Completion/Debian/Type/_deb_packages,
	Completion/Unix/Command/_mount,
	Completion/Unix/Command/_subversion: localize some completion
	variables that were unnecessarily made global, and hide from
	typeset display the values of a few others.

2005-04-24  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21170: Src/glob.c, Src/pattern.c: optimise length calculations
	which were causing inefficiency in ${...//.../...} on large
	string.

2005-04-22  Geoff Wing  <gcw@zsh.org>

	* 20162: Src/Zle/compresult.c: in printlist() don't output new line
	if we haven't printed anything

2005-04-21  Clint Adams  <clint@zsh.org>

	* users/8733: Completion/Unix/Command/_surfraw: rudimentary
	completion for surfraw.

2005-04-19  Clint Adams  <clint@zsh.org>

	* 21156: Completion/Debian/Command/_dpkg: tweaks to
	dpkg-reconfigure completion.

2005-04-18  Felix Rosencrantz <f_rosencrantz@gmail.com>

	* 21154: Completion/Unix/Command/_perforce: add pid completion for
	monitor (clear|terminate) commands.

2005-04-17  Clint Adams  <clint@zsh.org>

	* 21153: Completion/Debian/Command/_module-assistant: incorporate
	most of the features of Stephen Rueger's _module-assistant, posted
	as 21152.

	* 21151: Completion/Debian/Command/_module-assistant: completion
	for module-assistant.

	* 21150: Completion/Unix/Command/_baz,
	Completion/Unix/Command/_tla: handle parsing of subcommand help
	output a bit more sanely.

2005-04-16  Bart Schaefer  <schaefer@zsh.org>

	* unposted (see 21148): Test/A04redirect.ztst: update test for
	change in error message.

2005-04-16  Clint Adams  <clint@zsh.org>

	* 21147: Completion/Unix/Command/_baz,
	Completion/Unix/Command/_tla, Completion/Unix/Type/_arch_archives,
	Completion/Unix/Type/_arch_namespace: factor out some common code
	from _tla and _baz, and fix some breakage from 21075.

2005-04-15  Peter Stephenson  <pws@csr.com>

	* 21143: Src/exec.c, Src/Modules/socket.c: be more careful when
	closing or opening sockets onto file descriptors.

2005-04-14  Peter Stephenson  <pws@csr.com>

	* 21141: Doc/Zsh/redirect.yo, Src/exec.c, Test/A04redirect.ztst:
	make NO_CLOBBER apply to {myfd}>... redirections, improve
	some error cases, fix bug that {myfd}>>(...) hung on a builtin.

2005-04-13  Bart Schaefer  <schaefer@zsh.org>

	* 21064: Test/D03procsubst.ztst: test case for 21049.

2005-04-13  Peter Stephenson  <pws@csr.com>

	* 21136: Test/C03traps.ztst: don't leave TRAPEXIT file lying
	around in Test directory.

2005-04-12  Clint Adams  <clint@zsh.org>

	* 21135: Completion/Unix/Command/_screen: complete attached
	sessions after screen -x.

2005-04-12  Peter Stephenson  <pws@csr.com>

	* 21134: Test/A04redirect.ztst: error for bad file descriptor
	can vary between systems.

	* 21133: Doc/Zsh/redirect.yo, Src/exec.c, Src/parse.c, Src/text.c,
	Src/zsh.h, Test/A04redirect.ztst: New {myfd}> syntax for
	allocating file descriptors.

2005-04-11  Clint Adams  <clint@zsh.org>

	* 21132: Completion/Unix/Type/_pdf, Completion/X/Command/_xpdf:
	complete xpdf options, and also complete .pdf.bz2 files when
	completing compressed PDF files.

2005-04-11  Peter Stephenson  <pws@csr.com>

	* 21131: Src/init.c, Test/A01grammar.ztst: exit with status 127
	when a script is not found, making the error message more
	sensible.

2005-04-10  Clint Adams  <clint@zsh.org>

	* unposted: config.guess, config.sub: update to 2005-03-24 and
	2005-02-10, respectively.

2005-04-08  Clint Adams  <clint@zsh.org>

	* 21125: Src/Zle/zle_main.c: do an initial conversion when
	zle is loaded.

	* 21124: Src/Zle/zle_main.c, Src/init.c, Src/params.c:
	have zle cache a wide-char version of WORDCHARS each time
	it's changed (when ZLE_UNICODE_SUPPORT is defined).

2005-04-08  Oliver Kiddle  <opk@zsh.org>

	* 21107: configure.ac: handle case where there is a native iconv
	but GNU libiconv's iconv.h is picked up first

2005-04-06  Clint Adams  <clint@zsh.org>

	* 21096: Completion/X/Command/_gv: update for gv 3.6,
	which uses double-hyphen options.

2005-04-06  Peter Stephenson  <pws@csr.com>

	* Carlos Phillips <carlos.phillips@mail.mcgill.ca>:
	private email: Completion/Unix/Command/_darcs: much improved
	completion for darcs.

2005-04-05  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  Made --address
	work for both client- and daemon-mode.

2005-04-05  Peter Stephenson  <pws@csr.com>

	* 21095 slightly tweaked to include bits of users/8658:
	Etc/FAQ.yo: update completion FAQ and the most out-of-date
	parts of the description of bugs and features.

2005-04-04  Peter Stephenson  <pws@csr.com>

	* Toby Peterson: 21083: On Mac OS X 10.4, the AS and RSS rlimits
	are the same.  Also utmpx doesn't have ut_name.  In fact, it
	doesn't seem to have it on any system.

	* Dan Nelson: 21082: Src/exec.c, Test/A01grammar.ztst: fix zsh -c
	exit status on parse error.

2005-04-03  Andrey Borzenkov  <bor@zsh.org>

	* 21086: Completion/Unix/Command/_rsync: fix module completion,
	redirect rsync errors to /dev/null, use -S "" as suggested
	by Oliver.

	* 21085: Completion/Mandrake/Command/_urpmi: update for 10.2,
	add parsehdlist, use urpmq --list options to get media and
	package list

2005-04-01  Oliver Kiddle  <opk@zsh.org>

	* 21081: Completion/Unix/Command/_fuser: complete network
	services for the psmisc version of fuser

	* unposted: Completion/Unix/Command/_subversion: minor correction

2005-04-01  Peter Stephenson  <pws@csr.com>

	* c.f. 21071: Doc/Zsh/{builtins.yo,compsys.yo,compwid.yo,func.yo,
	grammar.yo,mod_clone.yo,mod_computil.yo,mod_system.yo,mod_zftp.yo,
	mod_zpty.yo,mod_zselect.yo,mod_zutil.yo,params.yo,prompt.yo,
	tcpsys.yo}: use "status" for exit and return status
	instead of "value" or "code".

	* 21078: Src/init.c, Test/A01grammar.ztst: parse errors didn't
	cause non-zero exit status.

2005-03-31  Oliver Kiddle  <opk@zsh.org>

	* 21076: Completion/Unix/Command/_subversion: use _files with
	(e) glob qualifier to handle completing files by their status

2005-03-27  Clint Adams  <clint@zsh.org>

	* 21075: Completion/Unix/Command/_baz: update baz completion
	to not use -A option since it's being dropped in baz 1.3.

	* Zack Cerza: 21074: Completion/Debian/Command/_aptitude: update
	for newer aptitude.

2005-03-31  Peter Stephenson  <pws@csr.com>

	* 21049: Src/exec.c, Src/init.c, Src/utils.c, Src/zsh.h: Don't
	close file descriptors opened for process substitution when
	executing external programmes in a shell function.  Rewrite
	the corresponding code to make it more transparent.

2005-03-28  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  Added --protocol.

2005-03-27  Clint Adams  <clint@zsh.org>

	* 21068: Completion/Unix/Command/_subversion: complete modified
	files for 'svn revert'.

2005-03-27  Andrey Borzenkov  <bor@zsh.org>

	* 21066: Completion/Unix/Command/_rsync: rsync:// URL support,
	fix modules completion, strip remote banners

2005-03-24  Andrey Borzenkov  <bor@zsh.org>

	* 21053: Completion/X/Command/_kfmclient: use kde search path
	to find profiles in openProfile

2005-03-22  Andrey Borzenkov  <bor@zsh.org>

	* 21051 (modified as suggested by Oliver in 21052):
	Completion/Unix/Command/_fuser: for SVR4 complete signals only after
	-k; fix file name as first argument.

2005-03-21  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 21046: Completion/Base/Completer/_approximate:  use extra tests
	and "always" block to make unfunction of compadd more reliable.

2005-03-21  Peter Stephenson  <pws@csr.com>

	* 21045: Src/Zle/compcore.c, Src/Zle/complete.c: more places
	where completion didn't handled Meta characters.

2005-03-21  Oliver Kiddle  <opk@zsh.org>

	* Stephen Rüger: 21019: Completion/Unix/Command/_mpc:
	new completion for mpc

2005-03-21  Peter Stephenson  <pws@csr.com>

	* 21042: Src/Zle/zle_main.c, Doc/Zsh/zle.yo: test for and
	document limitation that execute-named-command and
	execute-last-named-command can't be redefined or called by name.

2005-03-18  Wayne Davison  <wayned@users.sourceforge.net>

	* 20984 (modified): Src/zsh.h, Src/options.c, Src/hist.c,
	Doc/Zsh/options.yo:  Added a new option, HIST_SAVE_BY_COPY, and
	made it enabled by default.  This changes the rewriting of the
	history file to be done via copy and rename rather than truncate
	and write-in-place.

2005-03-18  Peter Stephenson  <pws@csr.com>

	* 21014: Src/Zle/zle_hist.c: remember_edits() was broken,
	which meant that searching the current line didn't work.

	* zsh-users/8609: Doc/Zsh/expn.yo: document order of (u), (o)
	and (O) parameter expansion flags.

2005-03-16  Peter Stephenson  <pws@csr.com>

	* 20983: Test/D02glob.ztst, Src/glob.c: fixed string segments
	in globbed paths could be copied wrongly, resulting in failed globs.

2005-03-15  Peter Stephenson  <pws@csr.com>

	* 20978: Src/zle_main.c: don't propagate EOFs from recursive
	edit.

2005-03-11  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  A few more tweaks
	to the various --*-dest options.

2005-02-28  Philippe Troin  <phil@fifi.org>

	* 20886: configure.ac: Use TTOU with trap rather than SIGTTOU.

2005-03-13  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Functions/Prompts/prompt_bart_setup: Update to some
	4.2.2+ features, and add special handling for nopromptcr.

2005-03-11  Bart Schaefer  <schaefer@zsh.org>

	* 20892: Src/utils.c: sanity improvements for setopt correctall,
	plus spell-check directory names for autocd with setopt correct.
	(Note this works only one level deep, not for paths with slashes.)

2005-03-11  Peter Stephenson  <pws@csr.com>

	* 20966: Src/Zle/zle_misc.c: need to copy strings to avoid
	crash in completion for execute-named-command.

2005-03-09  Clint Adams  <clint@zsh.org>

	* 20961: Completion/Unix/Command/_baz: fix completion of status and
	diff subcommands.

2005-03-10  Andrey Borzenkov  <bor@zsh.org>

	* 20957: Completion/Unix/Command/_fuser:
	Add support for Solaris and SVR4

2005-03-10  Peter Stephenson  <pws@csr.com>

	* 20959 (variant of 20958): Src/params.c, Src/Module/parameter.c,
	Test/V01zmodload.ztst: fix crash unloading zsh/parameter and test.

2005-03-09  Peter Stephenson  <pws@csr.com>

	* 20955: README, Src/builtin.c: "unset foo" should return
	status 0 if foo was not set.

2005-03-09  Motoi Washida  <a66@h8.dion.ne.jp>

	* 20953: Completion/Unix/Command/_du: "du --version" tries to
	display size of files in current directory on FreeBSD and Darwin.

2005-03-09  Clint Adams  <clint@zsh.org>

	* 20951: Completion/Unix/Command/_baz: fix version detection
	and baz merge completion.

2005-03-07  Clint Adams  <clint@zsh.org>

	* 20946: Completion/Linux/Command/_iwconfig: completion for
	iwconfig command.

2005-03-07  Peter Stephenson  <pws@csr.com>

	* 20945: Src/Zle/zle_misc.c: rename static variables to
	avoid clash with "cmdstr" exported by zle_tricky.c.

2005-03-07  Clint Adams  <clint@zsh.org>

	* 20944: Completion/Debian/Command/_uscan: completion for
	uscan command.

	* 20943: Completion/Linux/Command/_tune2fs: completion for
	tune2fs command.

	* 20942: Completion/Unix/Command/_showmount: completion for
	showmount command.

	* 20941: Completion/Unix/Command/_mii-tool: completion for mii-tool
	command.

	* 20940: Completion/Unix/Command/_knock: completion for knock
	command.

	* 20939: Completion/Unix/Command/_groff: completion for groff
	command.

	* 20938: Completion/Unix/Command/_fuser: completion for fuser
	command.

	* 20937: Completion/Unix/Command/_fortune: completion for fortune
	command.

	* 20936: Completion/Linux/Command/_acpi: completion for acpi
	command.

2005-03-05  Andrey Borzenkov  <bor@zsh.org>

	* Tobias Gruetzmacher: 20932: Completion/X/Command/_kfmclient:
	Add copy command

2005-03-04  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* unposted: Src/Zle/zle_refresh.c: correct deliberate mistake.

	* 20928: Src/Zle/zle_refresh.c: null terminate lines so that they
	can be compared reliably.

2005-03-04  Motoi Washida  <a66@h8.dion.ne.jp>

	* unposted: Completion/Darwin/Command/_softwareupdate: new completion

	* unposted: Completion/Darwin/Command/_hdiutil: arguments are
	required after -imagekey, -srcimagekey options

2005-03-03  Oliver Kiddle  <opk@zsh.org>

	* 20921, 20924: Src/utils.c, Completion/Unix/Command/_iconv:
	using UCS-4BE instead of ISO-10646 to identify character
	encoding is more portable; make error message more specific;
	find more encodings in iconv completion on Solaris

	* Henryk Konsek: 20918 (modified): Completion/Unix/Command/_unace:
	new completion for unace

2005-03-03  Peter Stephenson  <pws@csr.com>

	* from Wayne, adapted: 20900: another way of preventing
	text without a newline from being overwritten by the prompt.
	(Originally suggested by Karl Chen in 20896.)

2005-03-02  Clint Adams  <clint@zsh.org>

	* 20906: Completion/Unix/Command/_make: patch from
	Mike "Stew" O'Connor to limit recursion depth in make
	completion variable expansion.

2005-03-02  Wayne Davison  <wayned@users.sourceforge.net>

	* 20917: Completion/Unix/Command/_make: Don't try to expand a
	single-character Makefile variable if it is a digit.  Avoids
	an infinite recursion from a Makefile referencing $1.

2005-03-02  Clint Adams  <clint@zsh.org>

	* 20909, 20911: Src/Modules/termcap.c: reverse row and col
	arguments to tgoto(), and set affcnt to 1 unconditionally
	when we echotc a capability with arguments (which we then
	assume to be the 'cm' capability, with arguments in the
	form <rows> <columns>.

2005-03-01  Peter Stephenson  <pws@csr.com>

	* 20897: Completion/Unix/Command/_a2ps: complete system printers
	as well as those configured into a2ps.

2005-02-28  Peter Stephenson  <pws@csr.com>

	* 20888: Doc/Zsh/builtins.yo, Src/jobs.c: allow the prefix
	SIG in signal names used with the trap and kill builtins, for
	compatibility.

2005-02-26  Andrey Borzenkov  <bor@zsh.org>

	* 20872: Src/Zle/zle_utils.c, Src/Zle/zle_vi.c, Src/Zle/zle_word.c:
	Fix ZC_ vs. ZS_ confusion.

2005-02-25  Peter Stephenson  <pws@csr.com>

	* 20869: Src/Zle/zle.h, Src/Zle/zle_hist.c, Src/Zle/zle_main.c,
	Src/Zle/zle_refresh.c, Src/Zle/zle_utils.c, Src/Zle/zle_vi.c,
	Src/Zle/zle_word.c: more small Unicode tweaks

2005-02-25  Oliver Kiddle  <opk@zsh.org>

	* 20867: Completion/Unix/Command/_ant: handle imported files
	that are specified using a relative path

2005-02-24  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 20866: Src/Zle/zle_misc.c: two mistakes in 20861.

2005-02-24  Oliver Kiddle  <opk@zsh.org>

	* Konstantin Sobolev: 20832 (modified):
	Completion/Unix/Command/_ant: gather targets from imported files

	* 20862: configure.ac, Src/system.h, Src/utils.c: attempt to
	fix configure scripts to detect iconv properly

2005-02-24  Peter Stephenson  <pws@csr.com>

	* 20863: Src/utils.c, Src/zsh.h, Src/Zle/zle.h,
	Src/Zle/zle_hist.c, Src/Zle/zle_utils.c: fix history (i)searching
	for Unicode.

	* 20861: Src/Zle/complist.c, Src/Zle/zle.h, Src/Zle/zle_hist.c,
	Src/Zle/zle_main.c, Src/Zle/zle_misc.c, Src/Zle/zle_refresh.c,
	Src/Zle/zle_thingy.c, Src/Zle/zle_vi.c: Fix use of statusline
	with Unicode, apart from isearch.

2005-02-23  Andrey Borzenkov  <bor@zsh.org>

	* 20857 (modified): Src/Zle/zle.h, Src/Zle/zle_refresh.c: use
	wide characters internally. This fixed cursor position with
	multibyte characters bug without any significant code change.
	Is still does not use character width information.

2005-02-23  Peter Stephenson  <pws@csr.com>

	* 20856: Src/Zle/complist.c: use VARARR for multibyte string.

	* 20854: Src/Zle/complist.c, Src/Zle/zle.h, Src/Zle/zle_hist.c,
	Src/Zle/zle_main.c, Src/Zle/zle_misc.c, Src/Zle/zle_move.c,
	Src/Zle/zle_params.c, Src/Zle/zle_refresh.c, Src/Zle/zle_tricky.c,
	Src/Zle/zle_utils.c, Src/Zle/zle_vi.c: more Unicode stuff.

2005-02-23  Clint Adams  <clint@zsh.org>

	* 20847: Completion/compaudit: stop adding gratuitous
	elements to fpath when MARK_DIRS is set.

2005-02-23  Andrey Borzenkov  <bor@zsh.org>

	* 20845: Src/Zle/zle_main.c, Src/Zle/zle_utils.c: fix
	multibyte input in getrestchar; fix cursor position in
	zlelineasstring when cs == ll.

2005-02-22  Peter Stephenson  <pws@csr.com>

	* 20843: Doc/Zsh/expn.yo, Src/utils.c: named directories always
	have trailing slashes pruned.  Any related parameter remains
	unmodified.

	* Andrey Borzenkov: 20838 with minor tweaks: Src/system.h,
	Src/Zle/zle.h, Src/Zle/zle_main.c, Src/Zle/zle_misc.c,
	Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c: fixes to
	get ZLE_UNICODE_SUPPORT basically working.

2005-02-21  Peter Stephenson  <pws@csr.com>

	* 20837: Doc/Zsh/contrib.yo: typos.

	* 20834: Completion/X/Command/_kfmclient: use _webbrowser for
	file/URL arguments.

	* 20833: Src/Zle/zle.h: typo in 20822: int_t should have
	been wint_t.

2005-02-19  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  A little more
	cleanup and 2 more options for the upcoming rsync 2.6.4
	release.

2005-02-19  Motoi Washida <a66@h8.dion.ne.jp>

	* users/8522: Completion/Darwin/Command/_defaults: fixed the
	number of spaces broken while sending the patch by email.

2005-02-18  Peter Stephenson  <pws@csr.com>

	* 20828: Src/zle_main.c, Src/zle_misc.c: typos in 20822.

	* 20823: Src/Modules/stat.c: debugging test failed on 64-bit
	machines.

	* 20822: system.h, Src/Zle/complist.c, Src/Zle/deltochar.c,
	Src/Zle/zle.h, Src/Zle/zle_hist.c, Src/Zle/zle_keymap.c,
	Src/Zle/zle_main.c, Src/Zle/zle_misc.c, Src/Zle/zle_move.c,
	Src/Zle/zle_thingy.c, Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c,
	Src/Zle/zle_vi.c: improve input ready for multibyte/Unicode
	handling, massaging use of getkey() and lastchar.

	* Motoi Washida: users/8522: Completion/Darwin/Command/_defaults:
	Fix quotation in Darwin completion.

2005-02-16  Peter Stephenson  <pws@csr.com>

	* 20816: Src/Builtins/rlimits.awk: extra tricks to get limit
	names and numbers required with new glibc.

2005-02-15  Peter Stephenson  <pws@csr.com>

	* 20812: Doc/Zsh/contrib.yo, Functions/Exceptions/catch,
	Functions/Exceptions/throw, Src/zsh.mdd: add functions for
	exception handling using "always" block.

2005-02-14  Peter Stephenson  <pws@csr.com>

	* 20811: configure.ac: Copy the trick for finding the
	file with signal names to make finding the file with resource
	names more reliable.

2005-02-14  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync:  Divided the options
	so that daemon options and client options are not intermixed.
	Improved some descriptions and added new options for 2.6.4.

2005-02-10  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_yodl:  Added missing
	closing double-quote.

2005-02-09  Bart Schaefer  <schaefer@zsh.org>

	* Kris Shannon: 20801: Completion/Unix/Command/_init_d: fix
	missing $ in the param expansion that parses the init script.

2005-02-07  Peter Stephenson  <pws@csr.com>

	* 20798: Src/init.c: need to propagate some #ifdef's to get
	warnings to go away.

	* 20794: Config/version.mk, Src/init.c: change dev version
	to 4.3.0-dev-1 and (unrelated) don't compile in static function
	unless needed.

2005-02-06  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* (cheated and guessed) 20793: Src/builtin.c, Src/exec.c,
	Src/hashtable.c, Src/Modules/parameter.c, Src/Module/zftp.c,
	Src/parse.c, Src/signals.c, Test/C03traps.ztst: Fix bug that
	autoloaded TRAPEXIT wasn't restored properly after running an
	intermediate function; only use sigfuncs (renamed to siglists) for
	eval-style traps; augment and fix trap tests.

2005-02-04  Peter Stephenson  <pws@csr.com>

	* 20787: configure.ac, Config/defs.mk.in, Doc/.distfiles,
	Doc/Makefile.in: generate zsh.pdf from zsh.texi using pdfetex;
	much better output than PS from DVI.

	* Motoi Washida: 20785: configure.ac: libiconv test needed
	for Mac OS X 3.

2005-02-02  Peter Stephenson  <pws@csr.com>

	* 20777: Test/A06assign.ztst, Test/C02cond.ztst: tests for
	users/8422 and 20774.

2005-02-01  Bart Schaefer  <schaefer@zsh.org>

	* 20774: Src/exec.c: fix e.g. "FOO=BAR BAR=FOO echo" failure to
	unset FOO after finishing.

2005-02-01  Clint Adams  <clint@zsh.org>

	* 20773: Completion/Unix/Command/_getconf: additional variables
	from confstr().

2005-02-01  Peter Stephenson  <pws@csr.com>

	* Peter A. Castro: 20759 updated as 20760 and 20765: configure.ac,
	Src/system.h, Src/utils.c: Improve configuration of libiconv and
	pcre on Cygwin.

2005-01-28  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync: Added new options
	for impending 2.6.4 release and improved the descriptions of
	several others.  Also dropped "-- ..." options to _arguments.

2005-01-27  Peter Stephenson  <pws@csr.com>

	* users/8433: configure.ac: Latest Cygwin hangs on FIFO test,
	so tell it explicitly that FIFOs don't work.

2005-01-26  Clint Adams  <clint@zsh.org>

	* 20753: Src/system.h, Src/Zle/zle_params.c: use ZS_memmove
	instead of memmove.

2005-01-26  Peter Stephenson  <pws@csr.com>

	* 20752: Src/system.h, Src/Zle/zle.h, Src/Zle/zle_hist.c,
	Src/Zle/zle_main.c, Src/Zle/zle_params.c, Src/Zle/zle_refresh.c,
	Src/Zle/zle_utils.c: Fix access to zle parameters.

2005-01-26  Clint Adams  <clint@zsh.org>

	* 20747, 20751: Src/Zle/zle_refresh.c, Src/system.h: some
	wide char support in the zle refresh code.

2005-01-26  Peter Stephenson  <pws@csr.com>

	* 20750: Src/zle_utils.c: 20742 could cause hang when line
	resized to empty.

2005-01-25  Peter Stephenson  <pws@csr.com>

	* 20742: Src/system.h, Src/Zle/zle.h, Src/Zle/zle_main.c,
	Src/Zle/zle_misc.c, Src/Zle/zle_params.c, Src/Zle/zle_utils.c:
	More Unicode stuff.  A few more definitions, some conversion
	utilities between line and string, fix types and sizes for
	cutbuffer/killring and undo.

2005-01-24  Peter Stephenson  <pws@csr.com>

	* users/8422: Src/cond.c: [[ ... -nt ... ]] and [[ ... -ot ... ]]
	with non-existent files (or any failed state) were recorded
	as errors, causing initialisation scripts, functions, etc., etc.
	to exit.

2005-01-23  Clint Adams  <clint@zsh.org>

	* 20737, 20739: Completion/Unix/Command/_subversion: run svn
	  commands with LC_MESSAGES=C.

2005-01-22  Clint Adams  <clint@zsh.org>

	* 20736: Src/Zle/zle_utils.c: change zlegetline() to return
	a metafied string.

	* unposted (cf. zsh-users/8412): Config/version.mk: fix
	year typo.

	* 20735: Src/Zle/zle_utils.c, Src/hist.c: modify zlegetline() and
	zlegetline caller so that the octet-based and wide-character
	versions should return the same string.

2005-01-21  Bart Schaefer  <schaefer@zsh.org>

	* unposted (cf. zsh-users/8409): Functions/Zle/keeper: "keeper"
	suite from unixreview.com article.

2005-01-21  Oliver Kiddle  <opk@zsh.org>

	* unposted: remove Completion/Unix/Command/_larch: larch has
	been superseded by tla and is no longer available

	* 20734: Completion/Linux/Command/_valgrind: rewrite to handle
	version 2.2.0 of valgrind

	* 20730 (modified): Completion/Base/Completer/_expand: fix 
	suffix style to regard quoted special characters as not special

2005-01-19  Peter Stephenson  <pws@csr.com>

	* 20728 (with typo fixed): configure.ac, Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c: Handle
	RLIMIT_MSGQUEUE (-q), RLIMIT_SIGPENDING (-i), also use
	-x for RLIMIT_LOCKS in ulimit.

2005-01-17  Peter Stephenson  <pws@csr.com>

	* unposted: suggested by Bart: Etc/FAQ.yo: update a few entries.

2005-01-17  Oliver Kiddle  <opk@zsh.org>

	* Motoi Washida: users/8380: Completion/Darwin/Command/_defaults:
	complete plist files

2005-01-16  Clint Adams  <clint@zsh.org>

	* 20718: Src/Zle/zle_utils.c: minor cleanup for proto-Unicode
	stuff.

2005-01-14  Peter Stephenson  <pws@csr.com>

	* unposted: update version to 4.2.3-dev-1.

	* c.f. 20675: configure.ac, Src/builtin.c, Src/exec.c, Src/hist.c,
	Src/init.c, Src/input.c, Src/jobs.c, Src/lex.c, Src/loop.c,
	Src/params.c, Src/signals.c, Src/system.h, Src/utils.c, Src/zsh.h,
	Src/Zle/compcore.c, Src/Zle/compctl.c,
	Src/Zle/complist.c, Src/Zle/compresult.c, rc/Zle/deltochar.c,
	Src/Zle/zle.h, Src/Zle/zle_hist.c, Src/Zle/zle_main.c,
	Src/Zle/zle_misc.c, Src/Zle/zle_move.c, Src/Zle/zle_params.c,
	Src/Zle/zle_refresh.c, Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c,
	Src/Zle/zle_vi.c, Src/Zle/zle_word.c: Make it easier to add
	support for Unicode etc. to Zle. line is called zleline and is not
	directly visible in the main shell.  cs and ll are called zlecs
	and zlell but are still visible in the main shell (this will
	probably need changing).  Pointers to zle functions are addressed
	by pointer not by confusing #define's.  Add beginnings of support
	to configure.ac and system.h.  Very many pitfalls remain.

2005-01-13  Peter Stephenson  <pws@csr.com>

	* 20708: Doc/Zsh/contrib.yo, Functions/Zle/replace-string:
	replace-string can offer previous values for editing.

	* unposted: README, Config/version.mk, Etc/FAQ.yo:
	release 4.2.3.

	* 20698: Test/ztst.zsh: improve 20692 by using tail function
	to overcome POSIX problems.

2005-01-12  Oliver Kiddle  <opk@zsh.org>

	* 20701: Src/system.h: fix compilation on Mac OS X

2005-01-12  Peter Stephenson  <pws@csr.com>

	* users/8359: Src/Zle/complete.mdd: add in Completion/Darwin
	directories to default installation.

	* users/8354: Doc/Zsh/options.yo: with glob_complete, completing
	a word with a pattern does not use matching control.

	* unposted: Config/version.mk, README, Etc/FAQ.yo: release
	zsh version 4.2.2.

	* 20695: Src/module.c, Src/zsh.h, Src/Modules/parameter.c,
	Src/Zle/zleparameter.c: Cygwin barfs on an attempt to
	use a pointer to an imported variable in a compile-time
	initialiser.

	* unposted: Fix .distfiles and .cvsignore for distribution.

	* unposted: Completion/Unix/Command/_perforce: minor comment
	change.

	* 20692: Test/ztst.zsh: having POSIXLY_CORRECT set makes
	GNU tail report warning with -<NUM>.

2005-01-11  Clint Adams  <clint@zsh.org>

	* unposted: config.guess, config.sub: update to 2004-11-12 and
	2004-11-30, respectively.

	* 20689: Etc/FAQ.yo: fix missing-word typo.

	* 20657: Src/Zle/zle_tricky.c: sort completions partially based on
	LC_COLLATE setting.

	* unposted: Completion/X/Command/_gnome-gv: move gnome-gv
	completion from C/U/C to C/X/C.

2005-01-11  Peter Stephenson  <pws@csr.com>

	* 20688: Etc/FAQ.yo: add notes on Unicode/UTF-8 adapted from
	Clint.

	* 20687: NEWS: news for 4.2.2.

2005-01-11  Bart Schaefer  <schaefer@zsh.org>

	* 20666 (tweaked): Src/exec.c: In closemn(), discard the multio
	structure when it has only one descriptor so far, to avoid
	creating an unnecessary multio if a later redirect re-opens that
	descriptor.

2005-01-10  Clint Adams  <clint@zsh.org>

	* 20665: Completion/Unix/Command/_gnome-gv,
	Completion/Unix/Type/_pspdf: improve completion for
	ggv/gnome-gv.

2005-01-10  Peter Stephenson  <pws@csr.com>

	* 20661: Doc/Zsh/expn.yo, Src/glob.c: allow (+func) as shorthand
	for (e:func:) in glob qualifier.

2005-01-10  Oliver Kiddle  <opk@zsh.org>

	* 20662: Completion/X/Command/_nedit: update for nedit 5.5

2005-01-09  Clint Adams  <clint@zsh.org>

	* 20655: Completion/Debian/Type/_deb_packages:
	_deb_packages fix from Karl Chen.

	* 20654: Completion/Debian/Command/_dpkg,
	Completion/Debian/Command/_wajig,
	Completion/Debian/Type/_deb_packages: completion for wajig, and
	dpkg/deb_packages improvements from Karl Chen.

2005-01-07  Clint Adams  <clint@zsh.org>

	* 20650: Completion/Unix/Command/_mencal:
	completion for mencal.

	* 20649: Completion/Unix/Command/_cal:
	completion for cal and ncal.

2005-01-05  Peter Stephenson  <pws@csr.com>

	* unposted: Completion/Unix/Command/_perforce: limit many
	uses of pending changes to pending changes on the current client.

	* 20632: propagating signals incorrectly to current process
	group could kill shell.

2004-12-27  Clint Adams  <clint@zsh.org>

	* 20639: Completion/Unix/Command/_bogofilter:
	improve 'bogoutil' completion for 0.93.3.1.

2004-12-25  Clint Adams  <clint@zsh.org>

	* 20637: Completion/Debian/Command/_lintian: add
	completion for 'lintian', a Debian package checker.

	* 20636: Completion/Unix/Command/_bogofilter: add
	completion for 'bogofilter' and 'bogotune' commands.

2004-12-24  Clint Adams  <clint@zsh.org>

	* 20635: Completion/Unix/Command/_bogofilter: update
	bogoutil completion for 0.93.3.

	* 20634: Completion/Unix/Command/_postfix: completion
	for postsuper.

2004-12-15  Clint Adams  <clint@zsh.org>

	* 20626: Completion/Unix/Command/_baz: completion
	derived from _tla by Matt Zimmerman.

	* 20627: Completion/Unix/Command/_bogofilter:
	updated completion for newer bogoutil.

2004-12-10  Andrey Borzenkov  <bor@zsh.org>

	* 20617: Completion/Linux/Command/_modutils: fix
	completion of compressed modules on kernel 2.6; add
	trivial insmod completion.

2004-12-09  Peter Stephenson  <pws@csr.com>

	* 20613, 20614: Functions/Zle/match-words-by-style: fix
	inconsistencies with embedded whitespace when matching by shell
	words.

	* 20612: Doc/Zsh/contrib.yo, Functions/Zle/match-words-by-style:
	options to match-words-by-style can override styles.

2004-12-07  Peter Stephenson  <pws@csr.com>

	* 20605: Doc/Zsh/builtins.yo, Src/builtin.c, Src/exec.c,
	Src/module.c, Src/params.c, Src/subst.c, Src/zsh.h,
	Src/Modules/datetime.c, Src/Modules/langinfo.c,
	Src/Modules/mapfile.c, Src/Modules/parameter.c,
	Src/Modules/system.c, Src/Modules/termcap.c,
	Src/Modules/terminfo.c, Src/Modules/zftp.c, Src/Zle/compctl.c,
	Src/Zle/complete.c, Src/Zle/computil.c, Src/Zle/zle_params.c,
	Src/Zle/zleparameter.c, Test/B02typeset.ztst: Use separate
	structures for get, set and unset methods of parameters.
	Separate width and base/precision for parameters, so that
	justification works for integers.

	* 20606: Test/V03mathfunc.ztst: simple verification of
	pseudorandom numbers.

2004-12-06  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 20601: Completion/Unix/Command/_python: update python completion for
	version 2.4

2004-12-01  Wayne Davison  <wayned@users.sourceforge.net>

	* 20595 (modified): Src/compat.c: some style tweaks to zchdir().

2004-12-01  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 20587: Completion/Unix/Command/_screen: update screen completion for
	version 4.00

2004-11-30  Peter Stephenson  <pws@csr.com>

	* 20599: Test/C01arith.ztst: 20592 needs consequent test change.

2004-11-29  Peter Stephenson  <pws@csr.com>

	* 20591: Stephane Chazelas <Stephane_Chazelas@yahoo.fr>:
	Src/compat.c: use of fchdir in zchdir could leak a file descriptor.

	* 20592: Src/math.c: $((##)) caused mayhem by passing null
	string to getkeystring().  Report error instead.

2004-11-24  Clint Adams  <clint@zsh.org>

	* 20583: Completion/Unix/Command/_ssh: complete "modern" options
	such as GSSAPIAuthentication.

2004-11-27  Doug Kearns  <djkea2@gus.gscit.monash.edu.au>

	* 20584: Completion/Unix/Command/_screen: offer multiuser screen
	sessions for attaching/detaching

2004-11-24  Clint Adams  <clint@zsh.org>

	* 20578: Functions/Prompts/prompt_elite2_setup:
	handle ttys with slashes in them.

2004-11-23  Peter Stephenson  <pws@csr.com>

	* 20576: Src/signals.c: 20572 caused core dump when
	trying to run a signal where the function had already
	been removed.

2004-11-22  Peter Stephenson  <pws@csr.com>

	* 20572: Doc/Zsh/builtins.yo, Src/builtin.c, Src/exec.c,
	Src/jobs.c, Src/signals.c, Src/utils.c: Allow -CLD and -IO
	as alternatives to -CHLD and -POLL where they are the same signal.

2004-11-20  Doug Kearns  <djkea2@mugca.its.monash.edu.au>

	* 20571: Completion/Unix/Command/_java: update javac completion for
	J2SE 5.0

2004-11-19  Peter Stephenson  <pws@csr.com>

	* 20568: Src/pattern.c: in debug test, checking for NULL
	character is no longer valid.

	* 20566: Src/signames2.awk: prefer SIGCHLD to SIGCLD.
	Also (unposted) prefer SIGPOLL to SIGIO.

2004-11-18  Clint Adams  <clint@zsh.org>

	* unposted: Completion/Unix/Command/_bogofilter: fix -w/-p typo, which was
	noticed by Michał Politowski.
	* unposted: Completion/Unix/Type/_pdf: complete pdf files for kpdf.

2004-11-16  Peter Stephenson  <pws@csr.com>

	* users/8219: Doc/Zsh/params.yo, Doc/Zsh/zle.yo,
	Src/params.c: Add $HISTCMD which gives the current history
	line number as in bash.  Works like ${(%):-%!} except that a human
	being could find out how to use it, too.  Note it is
	distinct from zle's $HISTNO.

	* 20556: AIX 5.3 has a SOCKLEN_T definition, so use
	ZSOCKLEN_T internally.

2004-11-12  Peter Stephenson  <pws@csr.com>

	* Motoi Washida <a66@h8.dion.ne.jp>: 20274, 20552:
	Completion/Darwin/Command/_fink,
	Completion/Darwin/Command/_hdiutil,
	Completion/Darwin/Command/_open,
	Completion/Darwin/Type/_mac_applications,
	Completion/Darwin/Type/_mac_files_for_application,
	Completion/Darwin/Type/_retrieve_mac_apps: improved completion
	for Mac.

2004-11-10  Wayne Davison  <wayned@users.sourceforge.net>

	* 20551: Completion/Unix/Command/_make: handle $$ when
	expanding variables.

2004-11-09  Peter Stephenson  <pws@csr.com>

	* Jussi Pakkanen <jpakkane@yahoo.com>: users/8189:
	Completion/Unix/Command/_bittorrent: new completion.

2004-11-05  Bart Schaefer  <schaefer@zsh.org>

	* 20546: Src/Zle/compcore.c: fix "compadd -k assoc1 assoc2".

2004-11-02  Clint Adams  <clint@zsh.org>

	* 20539: Completion/Unix/Command/_make: avoid problems with
	minus signs in expandVars().

2004-10-29  Peter Stephenson  <pws@csr.com>

	* 20528: Src/exec.c: Clint spotted that fix in 18492 to make
	> >(...) synchronous failed in the case of an fd opened for the
	shell's own use with an	exec.

2004-10-26  Peter Stephenson  <pws@csr.com>

	* 20522: Src/glob.c, Test/D02glob.ztst: must-match optimisation
	was broken for pattern substitutions in parameters.

2004-10-22  Wayne Davison  <wayned@users.sourceforge.net>

	* 20510: Borzenkov Andrey: Src/jobs.c: Fixed the arg to a call
	to times().

2004-10-22  Bart Schaefer  <schaefer@zsh.org>

	* unposted (based on 20514): Completion/compinit: _comp_options
	needs to include NO_kshtypeset.

2004-10-22  Peter Stephenson  <pws@csr.com>

	* 20513: Src/pattern.c, Test/D02glob.ztst: tests of zero length
	patterns didn't work after 20500.

	* unposted: Src/jobs.c: trivial optimisation.

2004-10-20  Wayne Davison  <wayned@users.sourceforge.net>

	* 20505: Src/utils.c, Src/builtin.c, Src/exec.c, Src/hist.c,
	Src/Modules/zftp.c:  Added gettempfile(), which works like a
	specialized mkstemp().

2004-10-19  Wayne Davison  <wayned@users.sourceforge.net>

	* 20503: Alexey Tourbin: Doc/Zsh/compsys.yo: corrected the
	completion-cache's default value.

2004-10-18  Wayne Davison  <wayned@users.sourceforge.net>

	* 20499 (modified): Src/builtin.c, Src/exec.c, Src/hist.c,
	Src/string.c, Src/utils.c, Src/Modules/zftp.c: improved gettempname(),
	added bicat(), and used these improvements to make the history-file
	locking better.

2004-10-18  Peter Stephenson  <pws@csr.com>

	* 20500: Misc/globtests, Src/glob.c, Src/pattern.c, Src/zsh.h,
	Src/Zle/complist.c, Test/D02glob.ztst: Use unmetafied strings
	in patterns more; improve glob.c/pattern.c interface; fix
	minor <num-> issue; add bogus quotation from Proust (it's
	my file and I'll do what I like with it).

2004-10-17  Wayne Davison  <wayned@users.sourceforge.net>

	* 20496: Src/utils.c: made zclose() not call close() when the
	fd arg is < 0.

	* unposted: Src/Zle/zle_main.c: initialize the first byte of
	the allocated "line" buffer so that we avoid uninitialized-
	memory warnings in valgrind.

2004-10-16  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 20490: Src/pattern.c, Src/zsh.h: use lengths for test strings in
	patterns instead of null termination.

2004-10-14  Peter Stephenson  <pws@csr.com>

	* 20482: Src/Zle/complist.c: A TAB after entering interactive
	completion caused nonsense to be inserted into the command
	line.  The behaviour of TAB is still probably not ideal.

2004-10-12  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_make: got rid of an unused
	local vaiable (cmdargs).

	* unposted: Completion/Unix/Command/_rsync: added 7 more options
	that were not described.

2004-10-08  Peter Stephenson  <pws@csr.com>

	* 20467: configure.ac, Doc/Zsh/params.yo, Src/exec.c, Src/jobs.c,
	Src/signals.c, Src/zsh.h: Finally reintroduce the
	TIMEFMT escapes from struct rusage removed ages ago.  Uses more
	sophisticated autconf tests to make configuration seamless.

2004-10-07  Peter Stephenson  <pws@csr.com>

	* 20462: configure.ac, Src/exec.c, Src/init.c, Src/jobs.c,
	Src/signals.c, Src/zsh.h: Improve process timing by using
	getrusage() where available (everywhere?) and by starting
	the wallclock just before a process is forked.

2004-10-07  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Completion/Unix/Command/_rsync: added options that
	are new in rsync 2.6.3.

2004-10-05  Peter Stephenson  <pws@csr.com>

	* unposted: Update README to indicate 20412.

	* 20435: Src/pattern.c: fix crash in negative matching.  Could do
	with being streamlined but that might be a big change.

	* 20412 (tweaked): Doc/Zsh/builtins.yo, Src/builtin.c, Src/cond.c,
	Src/exec.c, Src/utils.c: Make test and [ builtins more POSIX
	compatible: return status 2 for errors, require integer
	constants for numeric tests.

2004-10-01  Wayne Davison  <wayned@users.sourceforge.net>

	* 20438: Src/builtin.c, Src/hist.c, Src/params.c, Src/zsh.h:
	If the shell is exiting because it received a signal, we now
	skip rewriting the history file after appending any new lines.
	Has no affect unless APPEND_HISTORY, INC_APPEND_HISTORY, or
	SHARE_HISTORY are set.  This should avoid a history truncation
	glitch when too many shells are all trying to update the history
	file at the same time before being killed by a follow-up signal.

2004-10-01  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/params.c: silenced two compiler warnings about
	unused parameters.

2004-10-01  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: Src/builtin.c, Src/Modules/parameter.c: use convbase
	instead of a "%d" format to convert a zlong.

2004-10-01  Wayne Davison  <wayned@users.sourceforge.net>

	* 20277 (modified): Completion/Unix/Command/_make: completer now
	follows include files and expands variables (and does it all in
	zsh code instead of using awk or perl).

2004-10-01  Peter Stephenson  <pws@csr.com>

	* 20427, 20339 (modified): Completion/Base/Core/_main_complete,
	Doc/Zsh/compsys.yo:  Fix for problem with _oldlist and custom
	completion.  Also snuck in show-completer style with documentation.

2004-09-30  Clint Adams  <clint@zsh.org>

	* 20358: Completion/Unix/Command/_make: avoid potential gawk
	  locale bug by not using awk.

2004-09-29  Bart Schaefer  <schaefer@zsh.org>

	* 20418: Src/parse.c: fix crash-inducing bug with mis-parsing of
	incomplete pipeline expressions (e.g. "zsh -c 'echo |').

2004-09-28  Clint Adams  <clint@zsh.org>

	* 20414: Completion/Unix/Type/_diff_options: correct missing
	minus in --unified, spotted by Paul Wagland.

2004-09-27  Peter Stephenson  <pws@csr.com>

	* unposted: Completion/Unix/Command/_perforce: when adding
	files, ignore files already open for whatever reason,
	including those already being added.

2004-09-24  Wayne Davison  <wayned@users.sourceforge.net>

	* 20409: Completion/Unix/Command/_darcs: Completion for the darcs
	revision control system.  Derived from the zsh-completion example
	that comes with darcs.

2004-09-21  Peter Stephenson  <pws@csr.com>

	* unposted: Completion/Unix/Command/_perforce: updated for
	Perforce release 2004.2.

	* 20398: Src/Zle/zle_main.c: allow clean exit from within
	a zle widget function.

2004-09-20  Bart Schaefer  <schaefer@zsh.org>

	* 20397: Doc/zmacros.yo, Doc/Zsh/invoke.yo, Doc/Zsh/zle.yo: tweaks
	to account for texinfo's tendency to condense "--" into "-".

2004-09-20  Peter Stephenson  <pws@csr.com>

	* 20391: Src/params.c: SHLVL didn't get updated in the
	environment if it was already present.

2004-09-20  Bart Schaefer  <schaefer@zsh.org>

	* 20388: Src/Zle/zle_main.c: arrange that "zle internal-widget"
	called from a "zle -N" widget does not trip the ignoreeof warning.
	This is the long-documented behavior, but may break old "zle -N"
	widgets designed as wrappers around delete-char-or-list.

	* 20387: Src/init.c, Src/Zle/zle_main.c: rather than counting EOF
	keystrokes as in 20363, pretend that we received an EOF each time
	the "use 'logout' to logout" warning is printed, and let the top-
	level loop keep the count.  This way, disabling the warning (by
	rebinding that key to a "zle -N" widget) also disables counting.

2004-09-17  Peter Stephenson  <pws@csr.com>

	* 20378: Matthias B <msb@winterdrache.de>: Src/params.c,
	Src/utils.c, B02typeset.ztst: Fix bugs with metafied characters
	in tied arrays.

2004-09-16  Peter Stephenson  <pws@csr.com>

	* 20364: Functions/Completer/_oldlist: use $WIDGETSTYLE.

2004-09-13  Peter Stephenson  <pws@csr.com>

	* 20363: Src/init.c, Src/Zle/zle_main.c: exiting after 10 EOFs
	with ignore_eof set was broken in zle.

2004-09-10  Peter Stephenson  <pws@csr.com>

	* 20348: Doc/Zsh/zle.yo, Src/Zle/zle_params.c: Rejig WIDGETSTYLE
	and add WIDGETFUNC.

2004-09-09  Peter Stephenson  <pws@csr.com>

	* 20332: Src/Zle/zle_params.c, Doc/Zsh/zle.yo: add WIDGETSTYLE zle
	parameter to reveal widget implementation: function name for zle
	-N widgets and internal completion widget for zle -C widgets.

	* 20331: Src/builtin.c, Src/hist.c, Src/params.c, Src/prompt.c,
	Src/zsh.h, Src/Zle/compctl.c: Where possible use internal zlong
	variables for integers that correspond to shell variables.

2004-09-08  Peter Stephenson  <pws@csr.com>

	* 20330: Src/Zle/zle_thingy.c, Doc/Zsh/zle.yo: rationalise status
	from zle -I and improve documentation of status from zle, zle -I,
	zle -R.

2004-09-08  Bart Schaefer  <schaefer@zsh.org>

	* 20325: Src/exec.c, Test/E01options.ztst: fix crash when using
	the "command" builtin (as opposed to the "command" precommand
	modifier) when POSIX_BUILTINS is set; (unposted) add test for that
	and also for EVAL_LINENO.

	* 20320: Src/builtin.c: rewrite 20318 for simplicity and clarity.

2004-09-04  Bart Schaefer  <schaefer@zsh.org>

	* 20318: Src/builtin.c: fix subtle xtrace output bug introduced
	by 20308.

2004-09-03  Peter Stephenson  <pws@csr.com>

	* 20308: Doc/Zsh/options.yo, Src/builtin.c, Src/exec.c,
	Src/options.c, Src/zsh.h: add option EVAL_LINENO <Z> which
	issues separate line numbers inside eval's, as at present.
	Without it, the line from the surrounding environment is
	reported.

2004-09-02  Peter Stephenson  <pws@csr.com>

	* 20303: Src/Zle/zle_thingy.c, Doc/Zsh/zle.yo: Make test for
	zle -I more consistent with other uses of zle. Make zle widgets
	runnable inside traps.

	* 20300: Src/Zle/zle_main.c: typing ^D to list completions,
	then two ^C's caused a spurious EOF.

2004-08-24  Wayne Davison  <wayned@users.sourceforge.net>

	* 20283: Completion/Unix/Command/_ant: Improved the parsing
	of the <target...> tag as suggested by Jean-Baptiste Quenot.

2004-08-23  Wayne Davison  <wayned@users.sourceforge.net>

	* 20282: Src/Zle/zle_hist.c: fixed a problem with a negative
	NUMERIC causing wrong movement in combo zle commands such as
	up-/down-line-or-history and up-/down-line-or-search.

2004-08-18  Wayne Davison  <wayned@users.sourceforge.net>

	* 20269, 20270: Completion/Unix/Command/_make: Don't output the
	make targets all clumped into a single string when useperl is
	enabled.  Don't output a bogus target for a "VAR := VAL" line.

2004-08-16  Peter Stephenson  <pws@csr.com>

	* unposted: rename version to 4.2.1-dev-1 so as to avoid
	confusion with the released version.

	* unposted: update Etc/FAQ.yo as already sent to ftp.zsh.org

	* 20258: Doc/Zsh/options.yo, Src/prompt.c: save command status
	as well as error flag when performing substitutions in prompts.

	* 20251: Src/math.c, Src/utils.c: Warn when an integer converted
	from a string is too long and truncate it rather than let it
	overflow.

2004-08-13  Clint Adams  <clint@zsh.org>

	* unposted: config.guess, config.sub: update to 2004-07-19 and
	2004-06-24, respectively.

2004-08-13  Peter Stephenson  <pws@csr.com>

	* unposted: Version 4.2.1.

2004-08-11  Oliver Kiddle  <opk@zsh.org>

	* 20254: Completion/Base/Core/_tags: restrict the scope of the
	default tag-order to fix a problem with cdrecord completion

2004-08-10  Bart Schaefer  <schaefer@zsh.org>

	* 20244: Functions/Misc/zed: fix bug with editing of autoloaded
	functions (introduced by 20089).

2004-08-07  Oliver Kiddle  <opk@zsh.org>

	* 20237: Completion/Unix/Command/_screen: rewrite completion of
	screen sessions

	* 20237: Completion/Unix/Command/_mysql_utils: complete for
	mysqlimport and update some of the options

	* 20236: Completion/Base/Completer/_expand: fix problem with
	keep-prefix style where a modifier changes or removes the prefix

	* 20235: Completion/Unix/Command/_rsync: synched remote file
	completion with that in _ssh. quoting needed quoting.

2004-08-07  Geoff Wing  <gcw@zsh.org>

	* 20196: Src/prompt.c: still allow user specified text modifiers
	with a short terminal.  Only disallow if the terminal is really
	unknown or without sufficient capabilities or if SINGLE_LINE_ZLE
	option is specified

2004-08-06  Peter Stephenson  <pws@csr.com>

	* 20232 with typo corrected: Functions/Zftp/zfcd: remove
	cached directory listing when changing directory.

	* unposted: Config/version.mk: version 4.2.1-test-A.

2004-08-01  Clint Adams  <clint@zsh.org>

	* 20230: Completion/Debian/Command/_apt: dumb down apt-get
	install completion and always complete from all available
	packages.

	* 20225: Doc/Zsh/mod_clone.yo: add Philippe Troin's explanations
	of clone usage.

2004-07-30  Peter Stephenson  <pws@csr.com>

	* unposted: minor tidy up for 20219: neaten read-from-minibuffer
	and make history-pattern-search use last pattern as default.

	* unposted: README: mention max function depth is on by default

	* 20222: INSTALL, configure.ac: turn on max function depth by
	default to avoid crash.

2004-07-29  Peter Stephenson  <pws@csr.com>

	* 20221: Src/exec.c, Src/signals.c, Test/A05execution.ztst:
	$LINENO in trap '...' DEBUG was wrongly reported as the line
	in the trap, not in the surrounding code.  Probably broken
	in all 4.x builds to date.

	* 20219: Doc/Zsh/contrib.yo, Doc/Zsh/zle.yo,
	Functions/Zle/.distfiles, Functions/Zle/history-pattern-search,
	Src/Zle/zle_hist.c, Src/Zle/zle_params.c: make zle parameter
	HISTNO writeable, add history-pattern-search sample to use it.

	* 20208: Src/prompt.c, Doc/Zsh/prompt.yo: ternary code character C
	etc. treat / as path with zero elements.

2004-07-28  Peter Stephenson  <pws@csr.com>

	* 20214: Src/parse.c: fix debugging test that didn't work
	with recursive functions.

	* 20204: Motoi Washida: Completion/Base/Utils/_retrieve_cache:
	typo in definition of _cache_dir.

	* 20200: Completion/Unix/Command/_kfmclient,
	Completion/Unix/Type/_mime_types: fix some points made by Oliver
	to tidy up.  Also unposted: don't let _kfmclient drop through
	to `no more arguments' on failed completion.

2004-07-26  Peter Stephenson  <pws@csr.com>

	* 20199: Completion/Unix/Command/_elinks,
	Completion/Unix/Type/.distfiles, Completion/Unix/Type/_mime_types,
	Completion/X/Command/.distfiles, Completion/X/Command/_kfmclient,
	Doc/Zsh/contrib.yo, Functions/MIME/pick-web-browser,
	Functions/MIME/zsh-mime-setup: add completion for MIME types
	and kfmclient, use kfmclient to talk to konqueror and
	improve mime-types and mailcap styles.

	* 20198: Src/exec.c, Src/signals.c, Test/C03traps.ztst,
	Test/Makefile.in, Test/ztst.zsh: EXIT traps were freed before
	being run.  This isn't recommended by most programming text books.

2004-07-25  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/contrib.yo: documentation for "zargs".

2004-07-23  Oliver Kiddle  <opk@zsh.org>

	* 20180 (based on Jean-Baptiste Quenot's 20177):
	Completion/Unix/Command/_killall: fix to work on BSD systems

	* Motoi Washida <a66@h8.dion.ne.jp>: 20179 (tweaked):
	Completion/Darwin/Type/_mac_applications,
	Completion/Darwin/Command/_open, Completion/Darwin/Command/_defaults:
	new completions for Mac OS X

2004-07-19  Oliver Kiddle  <opk@zsh.org>

	* Jean-Baptiste Quenot: 20167: Completion/Unix/Command/_ant:
	find targets enclosed in single instead of double quotes

2004-07-17  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 20173: Src/mem.c: crash when globbing lots of files; need to
	NULLify fheap optimisation when reallocating a heap.

2004-07-13  Peter Stephenson  <pws@csr.com>

	* 20153: Src/Zle/zle_main.c: make zle-line-init run after
	the initial zrefresh() by moving the latter out of zlecore().
	Needs an extra call in recursiveedit().

2004-07-12  Peter Stephenson  <pws@csr.com>

	* unposted: NEWS: read it through and tidied it up.
	Also additions from Oliver.

	* 20151: NEWS: notes on (F) and history -p.

	* unposted: improve 20150 by setting pointer to NULL when
	freed.

2004-07-11  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 20150: Src/Zle/compresult.c: repost of ancient attempt
	to fix memory leak in completion.

	* 20149: Doc/Zsh/zle.yo, Src/init.c, Src/input.c, Src/loop.c,
	Src/zsh.h, Src/Zle/zle_main.c: alter users/7650 so that
	prompt variable is always reread; fixes bug that if PS1
	was altered the prompt string was invalid.

2004-07-10  Bart Schaefer  <schaefer@zsh.org>

	* 20145: Doc/Zsh/contrib.yo, Functions/Zle/read-from-minibuffer:
	second and third arguments of read-from-minibuffer now specify the
	initial values of LBUFFER and RBUFFER.

2004-07-07  Peter Stephenson  <pws@csr.com>

	* 20142: Test/A06assign.ztst: add test for bug fixed in
	20141.

	* 20141: Src/builtin.c, Src/exec.c, Src/params.c:  Crash
	after restoring exported special parameters.  The
	answer was `pm = tpm' at exec.c:2590.

2004-07-02  Peter Stephenson  <pws@csr.com>

	* 20127: Doc/Zsh/zle.yo, Src/Zle/zle_main.c,
	Src/Zle/zle_refresh.c: slightly tweaked version of Wayne's
	patch in users/7652 which only reexpands the prompt when
	the commandline was trashed by output.

	* 20126, with modifications: .distfiles, ChangeLog-3.1,
	ChangeLog-4.1, ChangeLog.3.0, FEATURES, INSTALL, MACHINES,
	NEWS, README, Etc/.distfiles, Etc/ChangeLog-3.1,
	Etc/ChangeLog-4.1, Etc/FAQ.yo, Etc/FEATURES, Etc/MACHINES,
	Etc/NEWS, Test/.distfiles, Etc/ChangeLog-3.0: tidy up
	ready for 4.2.1

	* 20125: Doc/Zsh/jobs.yo: say where the output for job
	notifications goes.

2004-07-01  Peter Stephenson  <pws@csr.com>

	* users/7650: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list,
	Src/Zle/zle_main.c: new zle widget prompt-reset redisplays screen
	with prompt updated.

2004-06-30  Peter Stephenson  <pws@csr.com>

	* 20118: Doc/Zsh/builtins.yo, Src/Builtins/rlimits.c:
	Attempt to handle unknown limits by number.  Also improve
	output and collect common code.

2004-06-28  Peter Stephenson  <pws@csr.com>

	* 20112, changed as per 20113: Src/exec.c, Src/parse.c,
	Src/subst.c, Doc/Zsh/redirect.yo, Test/A04redirect.yo:
	Fix here-strings to do standard single-word expansion (which
	was always intended but was partially broken), and also
	attempt to parse the end string for here-documents in
	a more standard fashion.

2004-06-26  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* unposted: Functions/Zle/.distfiles: add zed-set-file-name.

2004-06-24  Bart Schaefer  <schaefer@zsh.org>

	* unposted (see 20092): Completion/Zsh/Context/_condition: fix
	typos in descriptions.

2004-06-23  Peter Stephenson  <pws@csr.com>

	* 20089: Doc/Zsh/contrib.yo, Functions/Misc/zed,
	Functions/Zle/zed-set-file-name: various zed enhancements.

2004-06-22  Clint Adams  <clint@zsh.org>

	* 20091: Src/Modules/pcre.c: silence gcc "unused parameter" warnings.

2004-06-22  Peter Stephenson  <pws@csr.com>

	* 20076, 20084: Doc/Zsh/grammar.yo, Doc/Zsh/params.yo, Src/exec.c,
	Src/loop.c, Src/params.c, Src/parse.c, Src/prompt.c, Src/text.c,
	Src/zsh.h, Test/A01grammar.ztst: { ... } always { ... } syntax
	for making sure tidy-up code is run.

2004-06-21  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/zle.yo: copy-prev-shell-word has no default
	bindings, so it shouldn't claim those of copy-prev-word.

	* 19785 (cont'd): Doc/zsh/builtins.yo, Doc/zsh/compsys.yo:
	Previously uncommitted documentation changes (Oliver).

	* users/7267: Functions/Zle/predict-on: Minor update to cooperate
	with zle-line-init.

2004-06-19  Clint Adams  <clint@zsh.org>

	* 20081: Doc/Zsh/mod_pcre.yo: document -pcre-match condition.

2004-06-18  Oliver Kiddle  <opk@zsh.org>

	* 20077: Completion/Zsh/Command/_disable,
	Completion/Zsh/Command/_enable: fix completion of reserved words

2004-06-18  Peter Stephenson  <pws@csr.com>

	* 20033: Completion/Base/Utility/_arguments: unconfirmed fix
	for configure output parsing with square brackets.

2004-06-17  Oliver Kiddle  <opk@zsh.org>

	* 20069: Completion/Unix/Command/_iconv: complete character
	encodings case-insensitively for GNU iconv

	* 20059: Completion/Unix/Command/_chown: check for systems
	using . separator instead of for those using :

2004-06-16  Oliver Kiddle  <opk@zsh.org>

	* users/7553: Completion/compdump, Completion/compinit:
	include zsh version in dump file to avoid problems with upgrades

2004-06-15  Clint Adams  <clint@zsh.org>

	* 20055: Completion/Unix/Command/_tla: additions and fixes
	from Jason McCarty.

2004-06-09  Peter Stephenson  <pws@csr.com>

	* c.f. 20034: Test/V03mathfunc.ztst: tests for the zsh/mathfunc
	module.

2004-06-08  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 20029: Src/Modules/mathfunc.c: rand48(seed) stopped being
	random after the second call.

2004-06-08  Peter Stephenson  <pws@csr.com>

	* Philippe Troin: 20026: INSTALL: nit-pick.

	* Philippe Troin, 19996, plus 20025: configure.ac, INSTALL: add
	configure option --with-tcsetpgrp.

	* 20024: Doc/Zsh/func.yo: Improve documentation for TRAPNAL
	functions.

2004-06-03  Felix Rosencrantz <f_rosencrantz@yahoo.com>

	* 20002: Src/Zle/compmatch.c: Fix a problem with an inconsistent
	struct change in cmp_anchors().

2004-06-03  Peter Stephenson  <pws@csr.com>

	* 20017: Doc/.distfiles: add zsh.html to doc distribution.

	* users/7467: Completion/Base/Core/_dispatch: quoted commands
	weren't found in dispatcher lookup.

2004-06-02  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: builtin.c, exec.c, glob.c, hashtable.c, hist.c, init.c,
	jobs.c, loop.c, mem.c, module.c, options.c, params.c, parse.c,
	subst.c, system.h, utils.c, watch.c, Builtins/rlimits.c,
	Builtins/sched.c, Modules/cap.c, Modules/clone.c,
	Modules/datetime.c, Modules/example.c, Modules/files.c,
	Modules/langinfo.c, Modules/mapfile.c, Modules/mathfunc.c,
	Modules/parameter.c, Modules/socket.c, Modules/stat.c,
	Modules/system.c, Modules/tcp.c, Modules/termcap.c,
	Modules/terminfo.c, Modules/zftp.c, Modules/zprof.c,
	Modules/zpty.c, Modules/zselect.c, Modules/zutil.c, Zle/compcore.c,
	Zle/compctl.c, Zle/complete.c, Zle/complist.c, Zle/compresult.c,
	Zle/computil.c, Zle/deltochar.c, Zle/zle_hist.c, Zle/zle_keymap.c,
	Zle/zle_main.c, Zle/zle_misc.c, Zle/zle_move.c, Zle/zle_params.c,
	Zle/zle_refresh.c, Zle/zle_thingy.c, Zle/zle_tricky.c,
	Zle/zle_utils.c, Zle/zle_vi.c, Zle/zle_word.c, Zle/zleparameter.c:
	Silenced unused-parameter compiler warnings.

2004-05-28  Wayne Davison  <wayned@users.sourceforge.net>

	* 19980: Src/glob.c, Src/hashtable.c, Src/jobs.c, Src/loop.c,
	Src/params.c, Src/parse.c, Src/pattern.c, Src/Modules/datetime.c,
	Src/prompt.c, Src/subst.c, Src/utils.c, Src/Modules/zftp.c,
	Src/Zle/compcore.c, Src/Zle/compctl.c, Src/Zle/complete.c,
	Src/Zle/computil.c, Src/Zle/zle_hist.c, Src/Zle/zle_refresh.c,
	Src/Zle/zle_tricky.c:  Fixed some compiler warnings that gcc
	outputs with -W.

2004-05-28  Clint Adams  <clint@zsh.org>

	* 19991: Completion/Unix/Command/_lynx: complete .htm files
	too.

2004-05-25  Peter Stephenson  <pws@csr.com>

	* 19976: Src/exec.c, Src/jobs.c: `job table full' messages
	spotted by many people were traced by Wayne to thisjob
	being -1, which wasn't handled in a test no one understands
	anyway.

	* Compiled by Thorsten Kampe in zsh-users/7474:
	Doc/Zsh/options.yo: reorder option descriptions into subheadings.

2004-05-21  Wayne Davison  <wayned@users.sourceforge.net>

	* 19967+: Src/builtin.c, Src/hist.c Src/params.c,
	Doc/Zsh/builtins.yo, Functions/Misc/zcalc: added a -a
	option to `fc -p' to enable automatic popping of the
	pushed history list on function exit.  Updated zcalc.

2004-05-21  Peter Stephenson  <pws@csr.com>

	* 19971: Src/exec.c, Src/params.c: use putenv to put "_"
	into exec'd environment, avoiding horrific hack.

2004-05-20  Wayne Davison  <wayned@users.sourceforge.net>

	* 19962: Src/builtin.c, Src/hist.c, Doc/Zsh/builtins.yo,
	Functions/Misc/zcalc: added the ability to push/pop the history
	list via the new -p/-P options to fc.  Used this in zcalc to
	make the switch to zcalc's private history-list very smooth.

2004-05-19  Peter Stephenson  <pws@csr.com>

	* unposted: Completion/Unix/Command/_perforce: tweak
	to allow changes and revisions with >, <, = qualifiers.

2004-05-13  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 19941: Src/math.c, Test/C01arith.ztst: (( x, )) triggered
	an internal bug instead of reporting an error.

2004-05-13  Peter Stephenson  <pws@csr.com>

	* 19936: Functions/Misc/zcalc: bad name for temporary history
	file invites clashes.

2004-05-12  Peter Stephenson  <pws@csr.com>

	* 19920 modified c.f. 19921: Src/mem.c: attempt to improve
	behaviour of hrealloc, particularly when using mmap().

2004-05-11  Wayne Davison  <wayned@users.sourceforge.net>

	* 19893 (plus one extra tweak): Src/hist.c: Fix the
	potential for an infinite loop in lockhistfile().

2004-05-05  Wayne Davison  <wayned@users.sourceforge.net>

	* 19878: Src/utils.c: a single-character change fixes the
	new strftime() return-check idiom.

2004-05-04  Peter Stephenson  <pws@csr.com>

	* 19877: Src/prompt.c, Src/utils.c, Src/Modules/datetime.c:
	Improve 19869: remove infinite loop and attempt to test
	for whether strftime() encountered an error.

2004-05-04  Clint Adams  <clint@zsh.org>

	* 19869: Src/prompt.c, Src/utils.c: avoid segfault when
	prompt-expanding '%D{%p}' or '%D{%P}' under locales with null
	strings for am_pm.

2004-05-02  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 19858: Doc/Zsh/options.yo, Src/jobs.c, Src/options.c,
	Src/signals.c, Src/signals.h: TRAPS_ASYNC option done properly,
	not blocking signals during sigsuspend to wait for children.

2004-05-01  Clint Adams  <clint@zsh.org>

	* 19863: Completion/Zsh/Type/_command_names, Doc/Zsh/compsys.yo:
	allow search path for command names to be overridden by means of new
	command-path style.

2004-04-28  Clint Adams  <clint@zsh.org>

	* 19845: Completion/Debian/Command/_apt-move: apt-move
	completion function from Steven Kowalik.

2004-04-27  Peter Stephenson  <pws@csr.com>

	* 19839 (plus suggestion from 19842):
	Completion/Unix/Type/_path_files: handle existing (#q)'s
	in qualifiers when adding sort options and adding back
	qualifiers from command line.

	* 19840: Src/Zle/zle_main.c: also, vared now only takes
	one normal argument.

	* 19837: Src/Zle/zle_main.c: fix 19733 which accidentally
	removed the -e option to vared.

2004-04-26  Doug Kearns  <djkea2@mugca.its.monash.edu.au>

	* unposted: Completion/Unix/Command/_aap: short and long options
	are mutually exclusive

2004-04-23  Peter Stephenson  <pws@csr.com>

	* 19825: Completion/Unix/Command/_perforce: suggested by Michael
	Denio: add `changes' style to allow limitting list of changes
	offered for completion.

	* 19810: Src/exec.c: avoid setting flag on Eprog which may
	no longer be valid.  Had no feedback, so don't know if
	it helps, but at worst harmless.

	* 19812: Src/builtin.c: avoid race with autoloaded trap functions.
	However, I think these still need substantial improvement.

2004-04-21  Peter Stephenson  <pws@csr.com>

	* 19809: Src/jobs.c, Src/signals.c, Src/signals.h: improve
	zsh-users/7365 by only queuing traps when TRAPS_ASYNC is set.
	This avoids any nasty races, including one reported by Vincent
	Stemen.

2004-04-21  Oliver Kiddle  <opk@zsh.org>

	* 19806: Src/prompt.c: fix bug with %v expansion and negative index

2004-04-20  Peter Stephenson  <pws@csr.com>

	* 19801: Src/builtin.c: Autoloading of TRAP functions was never
	implemented.

2004-04-20  Oliver Kiddle  <opk@zsh.org>

	* 19767, 19785: Src/builtin.c, Src/exec.c, Src/hashtable.c,
	Src/zsh.h, Completion/compinit, Completion/compdump,
	Completion/compinstall, Completion/bashcompinit,
	Completion/Base/Widget/_next_tags, Completion/Zsh/Type/_functions,
	Completion/Zsh/Command/_typeset, Doc/Zsh/builtins.yo:
	store flags for -z and -k options to autoload allowing the
	completion system to be used with ksh_autoload set

	* 19800: Test/B02typeset.ztst: reverse sense of `declare +m' test

2004-04-19  Clint Adams  <clint@zsh.org>

	* 19798: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/_bogofilter: rudimentary completion for
	bogoutil.

2004-04-19  Peter Stephenson  <pws@csr.com>

	* zsh-users/7365: Doc/Zsh/options.yo, Src/jobs.c, Src/options.c,
	Src/signals.c, Src/zsh.h, plus unposted Etc/NEWS hunk: new option
	TRAPS_ASYNC, turn off to stop traps being run while waiting
	for a child process.

2004-04-18  Clint Adams  <clint@zsh.org>

	* 19792: Completion/X/Command/_mplayer: complete .m2v and .m2p,
	thanks to Rene H. Larsen.

2004-04-17  Oliver Kiddle  <opk@zsh.org>

	* 19790: Completion/Zsh/Command/_zcompile: complete functions
	after -a and allow multiple -z/-k options

2004-04-17  Doug Kearns  <djkea2@mugca.its.monash.edu.au>

	* 19775: Completion/Unix/Command/_php: new completion for php

	* unposted: Completion/Unix/Command/_elinks: declare and initialise
	return value parameter

2004-04-15  Peter Stephenson  <pws@csr.com>

	* see 19778 etc.: Doc/Makefile.in: remove change from 19735.

2004-04-15  Clint Adams  <clint@zsh.org>

	* 19606: Completion/Unix/Command/_tla: switch tla completion to
	the version by Jason McCarty, Erik Toubro Nielsen, and Rob Weir.

2004-04-14  Clint Adams  <clint@zsh.org>

	* Jay Berkenbilt: 19769: Completion/Unix/Command/_rsync:
	fix quoting for remote file completion, add -L to ls command.

2004-04-14  Oliver Kiddle  <opk@zsh.org>

	* Ingo Rohlfs: 19747: Completion/Unix/Command/_subversion:
	complete files/urls for svn cp and mv commands

	* unposted: Completion/Unix/Command/_cdrecord: add missing local

	* 19768: Completion/compinit: suggest running compaudit to see
	insecure files and directories and send errors to stderr

2004-04-06  Wayne Davison  <wayned@users.sourceforge.net>

	* 19743: Test/D02glob.ztst: Test the new F glob qualifier.

	* 19741: Src/glob.c: Minor optimization to qualnonemptydir() when
	a dir contains a subdir.

2004-04-06  Oliver Kiddle  <opk@zsh.org>

	* 19712, 19740: Src/params.c, Doc/Zsh/params.c: allow assigning to
	associative array elements where the i or r subscript flag is used

2004-04-06  Peter Stephenson  <pws@csr.com>

	* Peter Castro <doctor@fruitbat.org>: 19735 (minus texinfo hunk):
	Doc/Makefile.in, Src/builtin.c, Src/exec.c, Src/main.c,
	Src/system.h, configure.ac: improved use of paths, text/binary
	and dynamic library usage for Cygwin.

	* 19733 (with improved documentation): Doc/Zsh/contrib.yo,
	Doc/Zsh/zle.yo, Functions/Misc/zed, Src/Zle/zle_keymap.c,
	Src/Zle/zle_main.c: vared -M and -m allow you to provide
	main and alternate keymap; zed will use keymaps zed and zed-vicmd.

2004-04-05  Peter Stephenson  <pws@csr.com>

	* unposted, suggested by Wayne: Doc/Zsh/expn.yo:
	make 19728 clearer.

	* 19728: Doc/Zsh/expn.yo: explain that (^F) (from 19717)
	doesn't mean `non-empty directories', you need (/^F) for that.

	* unposted: ChangeLog, ChangeLog-4.1: move stuff up to 4.2.0
	out of ChangeLog.

	* unposted: Config/version.mk: update version to 4.2.0-dev-1;
	not tagged or released, this is just to avoid clashes with
	the released version.

2004-04-01  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 19717: Doc/Zsh/expn.y, Src/glob.c: use F glob qualifier
	for `full' (non-empty) directories.

2004-03-31  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Functions/Misc/zrecompile: change "mv" to "mv -f"
	when backing up .zwc files, because zcompile creates the files
	read-only.  See thread ending at users/7269.

2004-03-30  Oliver Kiddle  <opk@zsh.org>

	* 19708: Completion/compaudit: change getent() function to
	handle two arguments

	* 19707: Src/params.c, Test/D05array.ztst: fix bug where a
	nagative index into an array returned a one element array
	instead of a scalar

2004-03-25  Clint Adams  <clint@zsh.org>

	* 19691: Completion/Unix/Type/_diff_options: Allow more than
	one --exclude or -x to diff.

2004-03-25  Peter Stephenson  <pws@csr.com>

	* 19683: Src/utils.c: Work around occasional problem on
	Cygwin with dllwrap.

	* 19682: Doc/Zsh/builtins.yo, Etc/NEWS, Src/signals.c: Don't
	run ZERR, DEBUG or EXIT traps inside other traps; caused confusion
	and incompatibility.

2004-03-24  Peter Stephenson  <pws@csr.com>

	* 19674 plus unposted changes suggested in 19676:
	configure.ac, Doc/Zsh/mod_zftp.yo, Src/Modules/zftp.c,
	Etc/NEWS, Functions/Zftp/zfstat: Add support for non-standard
	ports to core zftp.  Not yet handled by the function system
	(except zfstat reports port): needed in lastloc	and bookmarks.

2004-03-23  Peter Stephenson  <pws@csr.com>

	* 19661: Danek Duvall: Completion/Unix/Type/_diff_options:
	support diff -u on Solaris from 2.10 up.

2004-03-22  Clint Adams  <clint@zsh.org>

	* 19673: Peter Palfrader: Completion/Unix/Command/_cvs:
	tags can contain the + character.

2004-03-22  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>

	* 19669, 19670: Danek Duvall: Completion/compaudit: Use of
	getent to check groups was slow; typo caused duplicate fpath
	entries.

	* 19671: Src/Zle/zle_main.c: error in zle-line-init caused
	infinite loop.

2004-03-20  Bart Schaefer  <schaefer@zsh.org>

	* 19666 (tweaked): Completion/Unix/Command/_ssh: fixes for remote
	file completion for scp, suggested by Jay Berkenbilt <ejb@ql.org>.

	* users/7172: Functions/Prompts/prompt_bart_setup: include "unset"
	among the localoptions, as this relies on it.