about summary refs log tree commit diff
path: root/ChangeLog
blob: afcb1a0346f0120d9d30bba56b377fa56afb5eb2 (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
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
2015-05-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk, Etc/FAQ.yo: update for
	5.0.7-dev-2, including updated FAQ source for newer YODL.

	* 35032: Src/jobs.c: update job status with process status if
	process detected as continued.

2015-05-05  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: fix descriptions in previous commit (cosmetic).

	* 35033: Completion/Zsh/Function/_zcalc: trivial completion.

2015-05-04  Oliver Kiddle  <opk@zsh.org>

	* 35029: Src/Zle/zle_word.c, Test/X02zlevi.ztst:
	improvements to newline handling for vi-mode word movement

2015-05-04  Mikael Magnusson  <mikachu@gmail.com>

	* 35021: Src/builtin.c: Fix two bugs in typeset_setbase

2015-05-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 35018 (corrected): NEWS: news.

2015-05-03  Oliver Kiddle  <opk@zsh.org>

	35011: Completion/BSD/Type/_jails, Completion/Solaris/Command/_beadm,
	Completion/Solaris/Type/_be_name, Completion/Solaris/Type/_zones,
	Completion/Unix/Command/_chmod, Completion/Unix/Command/_chown,
	Completion/Unix/Command/_cmp, Completion/Unix/Command/_comm,
	Completion/Unix/Command/_cp, Completion/Unix/Command/_cut,
	Completion/Unix/Command/_date, Completion/Unix/Command/_du,
	Completion/Unix/Command/_elfdump, Completion/Unix/Command/_find,
	Completion/Unix/Command/_fuser, Completion/Unix/Command/_gcore,
	Completion/Unix/Command/_grep, Completion/Unix/Command/_iconv,
	Completion/Unix/Command/_id, Completion/Unix/Command/_join,
	Completion/Unix/Command/_last, Completion/Unix/Command/_ldd,
	Completion/Unix/Command/_ls, Completion/Unix/Command/_md5sum,
	Completion/Unix/Command/_mkdir, Completion/Unix/Command/_nl,
	Completion/Unix/Command/_nm, Completion/Unix/Command/_od,
	Completion/Unix/Command/_patch, Completion/Unix/Command/_ping,
	Completion/Unix/Command/_ps, Completion/Unix/Command/_readelf,
	Completion/Unix/Command/_rm, Completion/Unix/Command/_sed,
	Completion/Unix/Command/_sort, Completion/Unix/Command/_uname,
	Completion/Unix/Command/_uniq, Completion/Unix/Command/_wc,
	Completion/Unix/Command/_xargs, Completion/Unix/Type/_diff_options,
	Completion/Unix/Type/_file_systems: update completions for some
	common Unix commands, in particular improving FreeBSD support

2015-05-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 35009: README, Etc/FAQ.yo: updates for 5.0.8.

2015-05-01  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 35008: Doc/Zsh/builtins.yo: clarify description of 'exec' and
	'return'

2015-05-01  Peter Stephenson  <p.stephenson@samsung.com>

	* 35007: Doc/Zsh/zle.yo: note about scope of ZLE parameters.

2015-04-29  Peter Stephenson  <p.stephenson@samsung.com>

	* 34992: Doc/Zsh/builtins.yo, Src/builtin.c, Src/params.c,
	Test/B02typeset.ztst: With POSXIBUILTINS, parameters can be
	marked readonly if unset and in any case can't subsequently be
	marked not readonly.

2015-04-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34989: Src/exec.c: AUTOCD needs to pass -- to cd to avoid
	directory being treated as option.

2015-04-28  Peter Stephenson  <p.stephenson@samsung.com>

	* Jared Ahern: 34980: Completion/Unix/Command/_make: expanding
	make variables was somewhat broken.

	* Jared Ahern: 34980: Completion/Unix/Command/_make: match
	additional forms of assignment in makefiles.

	* 34979: Src/exec.c: preserve job text in shell job fix code.

	* 34977: Src/zsh.mdd: more reliable test for whether
	preprocessor is GNU.

2015-04-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 34966: Src/hashtable.c: "whence -v" for a function reports
	whether the function is autoloaded or its source file when known

	* 34965: Src/glob.c: consistent use of zalloc/zrealloc/zfree

	* 34961: Completion/Unix/Command/_mkdir: avoid _message because
	it aborts completer list too early

	* 34961: Completion/Base/Completer/_history: unquote history words
	when command line has a quote

	* 34961: Completion/compaudit: properly handle the case of finding
	no files when searching $fpath and $_compdir

	* 34961: Doc/Zsh/compsys.yo: minor wording clarification

	* 34961: Src/Modules/datetime.c: $TZ is implicitly local in
	builtin strftime (originally workers/34602 from workers/34596)

	* 34961: Src/hist.c: clean up decl's of quote() and quotebreak()

	* 34961: Doc/Zsh/mod_system.yo: sysparams[pid] and sysparams[ppid]
	added to variables index

	* 34961: Src/compat.c, Src/init.c: replace a couple of free() with
	zfree() for consistency.

	* 34961: Completion/Base/Completer/_expand: add backslash to alias
	expansion matching (related to workers/32186)

	* 34961: Test/D02glob.ztst: test for breadth-first glob with (Y1)
	qualifier (originally workers/32726)

2015-04-24  Peter Stephenson  <p.stephenson@samsung.com>

	* 34955: Src/exec.c: list_pipe_job needs saving and restoring
	with some other similar variables in execlist() in order
	to stop source() messing up job control.

2015-04-24  Mikael Magnusson  <mikachu@gmail.com>

	* Oliver: 34940: Completion/Zsh/Command/_fc: fix typo breaking
	completion for history

2015-04-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34921: Src/parse.c: handle error in recursive par_event().

2015-04-17  Peter Stephenson  <p.stephenson@samsung.com>

	* 34920: Etc/zsh-development-guide: info on git pull.

2015-04-17  Daniel Hahler  <git@thequod.de>

	* 34899: Completion/Unix/Command/_vim: completion: _vim: add
	nvim to #compdef

2015-04-17  Peter Stephenson  <p.stephenson@samsung.com>

	* 34919: Src/Zle/zle_hist.c, Src/Zle/zle_misc.c: similar cases
	with send-break and push-input.

	* 34905: Src/Zle/zle_keymap.c, Src/lex.c, Src/parse.c: suppress
	parse errors resulting from keyboard interruption.

2015-04-16  Mikael Magnusson  <mikachu@gmail.com>

	* 34902: Doc/Zsh/compsys.yo, Doc/Zsh/contrib.yo, Doc/Zsh/zle.yo:
	explain the numeric argument and be consistent about what we
	call it.

2015-04-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34901: Test/A04redirect.ztst: Test for the foregoing.

	* 34900: Src/exec.c: assignment before an "exec" with
	a redirection, with and without POSIXBUILTINS.

2015-04-15  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Src/math.c: rewrite last commit to look more
	like other uses of Nularg.

	* 34892 (slightly tweaked): Src/math.c, Test/C01arith.ztst: fix
	math evaluation with empty expression resulting from substitution.

	* 34887: Src/exec, Test/E01options.ztst: assignments before
	"command special-builtin/func" in POSIX_BUILTINS mode behave as
	normal command. Tidy up case handling in code and add test.

2015-04-13  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* users/20159: Completion/Zsh/Command/_zstyle: completion: zstyle:
	Add 'show-ambiguity'

	* 34886: Completion/Unix/Command/_git: completion: git: Complete
	rebase --exec argument

	* 34885: Completion/Unix/Command/_git: completion: git: Sort
	"commit object" completions most recent first

	* 34885: Completion/Unix/Command/_git: completion: git: Fix
	another instance of the 34671 bug fixed in 34814

2015-04-13  Peter Stephenson  <p.stephenson@samsung.com>

	* Han Pingtian: 34880: Doc/Zsh/options.yo: POSIX_TRAPS doc.

	* Han Pingtian: 34875: Doc/Zsh/options.yo: CSH_JUNKIE_HISTORY doc.

	* Han Pingtian: users/20078: Doc/Zsh/options.yo: HIST_BEEP doc.

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

	* 34874: Completion/Unix/Command/_cabal: completion for cabal
	command from cabal-install.

2015-04-10  Daniel Hahler  <git@thequod.de>

	* 34748: Completion/Unix/Command/_git: completion: git: update
	list of builtintools

2015-04-07  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34850: Doc/zman.yo, Doc/ztexi.yo, Doc/META-FAQ.yo,
	Doc/Zsh/contrib.yo, Doc/Zsh/ftp_sites.yo, Doc/Zsh/manual.yo,
	Doc/Zsh/metafaq.yo, Doc/Zsh/roadmap.yo: make URLs in html/pdf
	docs clickable

2015-04-06  Barton E. Schaefer  <schaefer@zsh.org>

	* 34851: Src/builtin.c: fix thinko from 34093 that short-circuited
	some "whence -m" searches

2015-04-03  Barton E. Schaefer  <schaefer@zsh.org>

	* 34837: Src/glob.c: avoid loss of original file path when applying
	colon-modifiers in glob qualifiers, that path is still needed for
	later stat() when sorting.

2015-04-03  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34840: Doc/Zsh/prompt.yo: minor format fixes

2015-04-02  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34836: Doc/Zsh/prompt.yo: fix description of '%-0<<'

2015-04-01  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34814: Completion/Unix/Command/_git: completion: git: Fix
	bug introduced by 34671 [based on patch by Daniel Hahler]

2015-03-31  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/20058: Completion/Unix/Command/_ip,
	Completion/Unix/Type/_find_net_interfaces,
	Completion/Unix/Type/_net_interfaces: improve matching of
	devices already on command line in ip completion.

2015-03-31  Peter Stephenson  <p.stephenson@samsung.com>

	* Han Pingtian: 34822: Doc/Zsh/options.yo: correction to
	GLOB_SUBST doc.

2015-03-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34817: Src/hist.c, Src/lex.c: catch some errors earlier when
	handling history to avoid knock-on errors and doing too much
	processing.

2015-03-29  Theo Buehler  <theo@math.ethz.ch>

	* 34792: Src/Modules/langinfo.c: langinfo: Fix pointer type

2015-03-29  Daniel Hahler  <git@thequod.de>

	* 34762: Completion/Unix/Command/_git: completion: git: add
	short option for '--dir-diff' (_git-difftool)

2015-03-28  Barton E. Schaefer  <schaefer@zsh.org>

	* 34804: Src/lex.c: refine 34734 POSIX_ALIAS change to preserve
	old behavior of [[ ]] conditionals

	* 34781: Src/lex.c, Test/A02alias.ztst: add implicit space after
	alias expansion of tokens that form words without spacing; fixes
	crash when using completion immediately following such an alias

2015-03-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 34788: Src/lex.c: refine errflag handling in cmd_or_math()

2015-03-27  Peter Stephenson  <p.stephenson@samsung.com>

	* Han Pingtian: 34785: Doc/Zsh/options.yo: fix typo in SHINSTDIN.

	* 34787: Test/W01history.ztst: new tests.

2015-03-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34784: Src/input.c, Src/zsh.h: fix old bug with history
	selection.

2015-03-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 34779: Test/A02alias.ztst: tests for 34776

	* unposted: Test/W01history.ztst: change an F: to a comment

2015-03-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Han Pingtian: 34769: incorrect description of process time
	calculation.

2015-03-25  Peter Stephenson  <p.stephenson@samsung.com>

	* 34776: Src/hist.c, Src/zsh.h: suppressing alias expansions
	from history now uses same mechanism as everyone else.

2015-03-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 34774: Test/W01history.ztst, Test/comptest: fix %prep and use
	read from a no-op pipe to force wait for the timeout

2015-03-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 34772: Test/W01history.ztst, Test/comptest: add new test
	suite file for history; fix "read" usage in comptest for case
	where there is no TTY

2015-03-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34759: Src/hist.c, Src/lex.c: safer implementation.

	* 34758: Src/hist.c, Src/lex.c: more problems with history
	interaction with command substitution: rewind over input history
	text when necessary.

2015-03-21  Barton E. Schaefer  <schaefer@zsh.org>

	* users/20034: Completion/Base/Core/_main_complete: adjust
	PREFIX and SUFFIX for unambiguous_cursor on second completion
	attempt with GLOB_COMPLETE

2015-03-20  Peter Stephenson  <p.stephenson@samsung.com>

	* 34753 / 34754: Test/C02cond.ztst: work around lack
	of separate file times with NFS.

	* 34752: Src/input.c: history expansion in command substitution
	*still* didn't work although the command put back into the
	history was correct.

2015-03-19  Peter Stephenson  <p.stephenson@samsung.com>

	* 34742: Src/hist.c: history expansion in command substitution
	didn't work.  Discriminate the case of an alias expansion
	more carefully.

2015-03-19  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34739: Completion/Unix/Command/_git: git completion: Fix
	regression in ce80a92 (workers/34638)

2015-03-18  Barton E. Schaefer  <schaefer@zsh.org>

	* 34734: Doc/Zsh/grammar.yo, Src/lex.c, Test/A02alias.ztst:
	restrict token aliasing (34641) to global aliases; tighten
	up POSIX_ALIASES to better match spec; update Aliasing doc
	to cover this and clarify older behavior

2015-03-18  Peter Stephenson  <p.stephenson@samsung.com>

	* 34732: configure.ac: turn off fixed site function directory if
	site function directory explicitly disabled.

2015-03-17  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: NEWS: rewrite the foregoing.

2015-03-16  Peter Stephenson  <p.stephenson@samsung.com>

	* 34725: NEWS: note thhat common site function directory
	may be overridden by configuration.

	* 34721: Doc/Zsh/calsys.yo, Functions/Calendar/after,
	Functions/Calendar/before: new glob qualifier functions.

2015-03-16  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34671 plus tweaks: Completion/Base/Utility/_describe
	Completion/Unix/Command/_git Doc/Zsh/compsys.yo: Add -1 -2 -J -V
	-x to _describe, use them to sort 'git --fixup' hash completions

	* 34671: Completion/Unix/Command/_git: git completion: only
	offer recent commits' tags/heads for --fixup

2015-03-15  Barton E. Schaefer  <schaefer@zsh.org>

	* 34712: Doc/Zsh/grammar.yo: clarify words that may be aliased

2015-03-15  Mikael Magnusson  <mikachu@gmail.com>

	* unposted: Completion/Zsh/Command/_zattr: Fix completion of
	attributes for files with pattern characters.

2015-03-10  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19985: Doc/Zsh/params.yo: improve doc of substring
	subscripting further.

2015-03-09  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34673: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info git: Fix error message when rebase hasn't started

	* 34693: Completion/Unix/Command/_sudo: sudo completion: Don't
	false positive 'sudo -e' detection

	* 34693: Completion/Linux/Command/_strace: _strace: Fix variable
	leakage of $sys_calls

2015-03-07  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* Daniel Hahler: 34638 with tweaks: Completion/Unix/Command/_git:
	git completion: complete commit hashes and --fixup

2015-03-05  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34643: Doc/Zsh/builtins.yo, Doc/Zsh/zle.yo: clarify which
	escape sequences are recognized by print and bindkey builtins.

2015-03-06  Peter Stephenson  <p.stephenson@samsung.com>

	* 34653: Doc/Zsh/zle.yo, Src/Zle/zle_main.c: move aborted vared
	lines to ZLE_VARED_ABORTED.

	* 34657: Doc/Zsh/params.yo: document the effect of substring
	subscripting better.

2015-03-05  Peter Stephenson  <p.stephenson@samsung.com>

	* 34654: Completion/Redhat/Command/_rpm: complete absolute file
	names after -q --whatprovides.

	* 34651: Src/lex.c: avoid core dump if no lexical token.

	* Daniel Shahaf: 34647: Completion/Zsh/Function/_add-zsh-hook:
	new completion.

2015-03-05  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34636: Src/compat.c, Src/pattern.c, Src/utils.c, Src/ztype.c,
	configure.ac: replace broken isprint() on Mac OS X.

2015-03-04  Peter Stephenson  <p.stephenson@samsung.com>

	* 34641: Src/lex.c, Test/A02alias.ztst: make it possible to
	alias tokens.

	* Daniel Shahaf: 34640: Doc/Zsh/compsys.yo: clarify
	documentation for _guard function.

2015-03-03  Peter Stephenson  <p.stephenson@samsung.com>

	* Matthew Martin: 34637: Completion/BSD/Command/_mixerctl:
	new completion.

2015-02-28  Barton E. Schaefer  <schaefer@zsh.org>

	* users/19934: Doc/Zsh/params.yo: document %D{...} for WATCHFMT

2015-02-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 34634: Src/glob.c: avoid infinite recursion on (/)# extendedglob

2015-02-27  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34588: Completion/Unix/Command/_user_admin: Complete
	'usermod -a'

2015-02-23  Peter Stephenson  <p.stephenson@samsung.com>

	* 34623: Src/hist.c: free history more often in previous case.

2015-02-23  Mikael Magnusson  <mikachu@gmail.com>

	* 34615 + 34619: Src/hist.c: Remeta one frame earlier

2015-02-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34606: Src/subst.c, Test/C01arith.ztst: fix up arithmetic
	nested in parameter substitution.

	* 34604: Src/hist.c: Work around problem with changes in Meta
	affecting history file when read in.

2015-02-21  Barton E. Schaefer  <schaefer@zsh.org>

	* 34597: Doc/Zsh/mod_datetime.yo: Revise strftime description to
	correctly explain timezone handling and note signed int rollover

2015-02-20  Barton E. Schaefer  <schaefer@zsh.org>

	* 34590: Src/exec.c, Src/text.c: queue_signals() around more
	scopes that manipulate global state

2015-02-20  Peter Stephenson  <p.stephenson@samsung.com>

	* 34587: Src/utils.c, Test/D07multibyte.ztst: ensure multibyte
	characters don't overflow into tokens and add test.

2015-02-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 34568: Src/Module.c: use META_HEAPDUP when passing dlerror()
	string to metafy()

2015-02-19  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Config/version.mk: Mikael says it's 2015,
	apparently.

	* 34573: Src/subst.c: safer handling of failure to perform
	command substitution.

	* 34570: Config/version.mk, Src/lex.c, Src/subst.c, Src/zsh.h,
	Test/C01arith.ztst: mark arithmetic substitutions with tokens
	so the substitution code knows what to do.

2015-02-17  Peter Stephenson  <p.stephenson@samsung.com>

	* 34563: Src/input.c: Fix up memory allocation in 34560.

2015-02-16  Peter Stephenson  <p.stephenson@samsung.com>

	* 34560: Src/input. Src/lex.c, Src/zsh.h, Test/C01arith.ztst:
	case of $(( that turned into a $(...) and a (...) with
	multiple lines read before it found out.

	* 34558: Doc/Zsh/func.yo: preexec doc erroneously claimed $1
	was empty if line removed from history.

2015-02-15  Barton E. Schaefer  <schaefer@zsh.org>

	* 34551: Src/builtin.c: Avoid adding an extra "/" to the
	target path in cd_try_chdir() when the current directory is "/"

2015-02-14  Barton E. Schaefer  <schaefer@zsh.org>

	* 34543: Src/input.c, Src/lex.c: Fix crash on garbage bytes
	inside $(...)

2015-02-14  Mikael Magnusson  <mikachu@gmail.com>

	* unposted: Doc/Zsh/prompt.yo: Fix typo from 28487.

2015-02-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34546: Src/exec.c, Test/D04parameter.ztst: fix another
	oddity with $_ and anonymous functions and add tests.

2015-02-13  Peter Stephenson  <p.stephenson@samsung.com>

	* 34530: Src/exec.c, Test/E01options.ztst: revised fix
	for PRINT_EXIT_VALUE from anonymous functions.

2015-02-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34519: Src/exec.c: handle $_ with arguments to anonymous
	function.

2015-02-12  Barton E. Schaefer  <schaefer@zsh.org>

	* 34514: Src/exec.c, Src/parse.c, Test/E01options.ztst:
	Back out 34485, an alternate solution needs to be worked
	out.  (Tweaked to keep the unrelated hunk of the E01 test.)

	* 34476: Completion/Base/Utility/_store_cache: change the
	assignment format to avoid potentially expensive lexical
	analysis of the array values

2015-02-11  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19850: Doc/Zsh/params.yo, Src/watch.c: watch variable
	supports patterns for user, tty and host names.

2015-02-10  Mikael Magnusson  <mikachu@gmail.com>

	* 34488: Src/builtin.c: Fix use-after-free for print -zf and
	print -sf

	* 34490: Src/builtin.c: Fix leak on print -zf/-sf error

2015-02-09  Peter Stephenson  <p.stephenson@samsung.com>

	* 34485: Src/exec.c, Src/parse.c, Test/E01options.ztst:
	rationalise some more anonymous function behaviour:
	don't try to handle as "simple" case as there are too
	many hidden problems; pull out some post-execution
	functions to common cases in execcmd().

2015-02-09  Mikael Magnusson  <mikachu@gmail.com>

	* 34466: Src/utils.c: Fix double unmeta in rm verification

2015-02-08  Daniel Hahler  <git@thequod.de>

	* 34469: Completion/Unix/Command/_git: git completion: add "stash"
	from refs/stash to __git_heads

	* 34470: Completion/Unix/Command/_adb: completion: adb: add
	"sideload" command

	* 34467: Completion/Unix/Command/_git: completion: git: minor doc
	fixes

	* 34468: Completion/Unix/Command/_git: completion: git: stash:
	handle 'save' being the default

2015-02-07  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34464: Completion/Unix/Command/_mtr: Update mtr completion
	to mtr 0.82

2015-02-03  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34456: _arguments: lopts should be initialized as an array

2015-02-06  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19825: Doc/Zsh/manual.yo: clear statement that zsh is
	not by default POSIX compatible.

2015-02-03  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/builtins.yo: fix formatting of "--".

2015-02-03  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34451: Src/mem.c: use mmap() also on Mac OS X

2015-02-03  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19800: Doc/Zsh/params.yo: more help on $HISTORY_IGNORE.

	* 34455: Src/Modules/db_gdbm.c: some further parameter bug fixes
	including memory leak and unsetting old parameter too late.

2015-02-02  Barton E. Schaefer  <schaefer@zsh.org>

	* 34447: Src/Modules/db_gdbm.c: fix assignment of key-value array
	to ztie'd parameter.

2015-02-02  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34444: Completion/Unix/Command/_git: git completion: minor
	improvements to 'commit' and 'rebase'

2015-02-01  Barton E. Schaefer  <schaefer@zsh.org>

	* 34446: Doc/Zsh/mod_db_gdbm.yo, Src/Modules/db_gdbm.c: add
	"ztie -r" and "zuntie -u", update documentation for this and
	for 34430,34439.

2015-02-01  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34411: Completion/Unix/Command/_hg: _hg completion: Complete
	bookmark names for -r

2015-01-30  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34439: Src/Modules/db_gdbm.c: unset parameter that's about to
	be tied when necessary.

2015-01-30  Peter Stephenson  <p.stephenson@samsung.com>

	* 34435: Completion/Unix/Command/_sh,
	Completion/Unix/Type/_cmdstring, Completion/Zsh/Command/_emulate:
	updated emulate completion; _cmdstring factors out use of
	quoted command string.

2015-01-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34430: Src/Modules/db_gdbm.c, Src/params.c: various bug fixes
	and safety additions for gdbm tied hashes.

2015-01-28  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/builtins.yo: fix other typeset doc errors

	* 34421: Doc/Zsh/builtins.yo: clean up typeset documentation

2015-01-28  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34415: Completion/Unix/Type/_python_modules,
	Completion/Unix/Command/_python, Completion/Unix/Command/_pydoc:
	cache list of all python modules

2015-01-28  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34423: _ruby: fix a typo

2015-01-27  Frank Terbeck  <ft@bewatermyfriend.org>

	* 34419: Doc/Zsh/contrib.yo: vcs_info documentation: Fix wording

2015-01-27  Peter Stephenson  <p.stephenson@samsung.com>

	* Daniel Shahaf: 34412: Completion/Unix/Command/_chown: complete
	all groups if running as sudo.

2015-01-27  Mikael Magnusson  <mikachu@gmail.com>

	* 34382: Src/module.c: Handle NULL return from dlerror() more
	gracefully

	* 34387: Src/module.c: Avoid loading the main zsh binary as
	a module

2015-01-26  Barton E. Schaefer  <schaefer@zsh.org>

	* 34403: Src/utils.c: refine 34399 to avoid settyinfo() when the
	input descriptor is not a TTY

2015-01-26  Peter Stephenson  <p.stephenson@samsung.com>

	* 34402: Src/Modules/db_gdbm.c: make unsetting a tied gdbm
	variable work and hence allow tied variables in nested scope.
	Untying still doesn't uncover scope properly.

2015-01-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 34399: Src/utils.c: fix polltty thinko from 34365

	* 34389: Src/hist.c: fix parsing of ">!" when read from histfile
	with HIST_LEX_WORDS in effect

2015-01-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34365: configure.ac, Src/hist.c, Src/utils.c; random doubling
	backoff on history lock failure.  Add zsleep() to provide
	microsecond sleeps, via nanosleep() available else select() in
	tty_poll().

	* 34369: Daniel Shahaf: document error / warning codes.
	
	* 34383: Src/utils.c: new ztrdup() shoud be dupstring().

2015-01-25  Oliver Kiddle  <opk@zsh.org>

	* 34373, 34374: Completion/Unix/Command/_chown,
	Completion/Unix/Command/_ln, Completion/Unix/Type/_directories,
	Completion/Zsh/Command/_command, Completion/Zsh/Command/_fc,
	Completion/Zsh/Command/_typeset, Completion/Zsh/Command/_unhash,
	Completion/Zsh/Command/_which, Completion/Zsh/Command/_zle,
	Completion/Zsh/Command/_zstyle, Completion/Zsh/Context/_subscript,
	Completion/Zsh/Type/_globflags, Doc/Zsh/builtins.yo,
	Completion/Zsh/Context/_brace_parameter,
	Completion/Zsh/Type/_history_modifiers: update completion of
	builtin commands, modifiers, parameter and globbing flags

2015-01-25  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34381: Doc/Zsh/contrib.yo: vcs_info: Documentation update

2015-01-25  Frank Terbeck  <ft@bewatermyfriend.org>

	* unposted: ChangeLog: Forgot X-Seq: numbers with Daniel's last
	few patches

2015-01-25  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 34366: Doc/Zsh/contrib.yo,
	Functions/VCS_Info/Backends/VCS_INFO_get_data_hg: vcs_info hg:
	Support inactive bookmarks

	* 34367: Completion/Zsh/Command/_zstyle: _zstyle vcs_info: Unbreak
	branchformat completion

	* 34368: Completion/Zsh/Command/_zstyle: _zstyle vcs_info
	completion: Add missing styles

2015-01-24  Barton E. Schaefer  <schaefer@zsh.org>

	* 34350, 34353: Doc/Makefile.in, Doc/Zsh/mod_db_gdbm.yo,
	Src/Modules/db_gdbm.c: document zsh/db/gdbm module, clean up a few
	things in the code.  Still core dumps if the tied parameter is
	forced to be a local and is not untied before end of scope.

2015-01-23  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34335: _yum: fix bugs in _yum_all_pkgs

2015-01-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34331: Src/builtin.c, Src/utils.c: don't trip over
	NULL pointer in cd in rare cases where file system goes AWOL.

2015-01-22  Barton E. Schaefer  <schaefer@zsh.org>

	* 34344: Test/V07pcre.ztst: fix 34338, builtins need loading too
	
	* 34338: Test/V07pcre.ztst: check feature availability

2015-01-22  Marc Finet  <m.dreadlock@gmail.com>

	* 34333: Functions/VCS_Info/VCS_INFO_quilt: fix unapplied
	detection in subdir

2015-01-22  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34327: _perl_modules: fix cache identifier used in
	_cache_invalid

2015-01-20  Peter Stephenson  <p.stephenson@samsung.com>

	* 34329: Doc/Zsh/builtins.yo, Src/builtin.c: add -S option
	to which and where.

	* users/19756: Test/A04redirect.ztst: add test for case of
	closing file descriptor with no error message.

	* users/19751: Src/exec.c, Test/A04redirect.ztst: remove error
	on closing file descriptors via number but keep it for those
	controlled by variable.

2015-01-18  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34322: Src/Zle/compctl.c, Src/Zle/compresult.c, Src/exec.c,
	Src/init.c, Src/lex.c, Src/params.c, Src/prompt.c, Src/subst.c,
	Src/utils.c, Test/D04parameter.ztst: update interface to
	parsestr()/parsestrnoerr() to ensure correct token string
	is passed back.

	* 34320: Src/hist.c, Src/lex.c: alias expansion in history of
	command substitution.

2015-01-17  Axel Beckert  <abe@deuxchevaux.org>

	* 34314: Wieland Hoffmann: Completion/Unix/Command/_git: Change
	one --validate to --no-validate

2015-01-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Src/hist.c: fix another dubious comment.

	* unposted: Src/hist.c: improve confusing comment in previous
	commit.

	* 34313: Src/hist.c, Src/lex.c: need to turn off history
	word markers when parsing command substitution.

2015-01-16  Peter Stephenson  <p.stephenson@samsung.com>

	* 34304: Src/lex.c: improve use of new command substitution
	parsing in completion.

2015-01-15  Peter Stephenson  <p.stephenson@samsung.com>

	* 34290 (correcting typo): README: note FORCE_FLOAT behaviour change.

	* 34280: Doc/Zsh/options.yo, Src/math.c, Test/C01arith.ztst:
	make FORCE_FLOAT option also cover variables when read for
	use in arithmetic expressions.

	* 34287 (see 34286 from Markus Trippelsdorf): Src/zsh.mdd:
	use -E argument for generating signal names if gcc is
	preprocessor.

2015-01-14  Peter Stephenson  <p.stephenson@samsung.com>

	* 34283: Test/X02zlevi.ztst: also needs zpty.

	* 34275: Test/V08zpty.ztst,  Test/Y01completion.ztst,
	Test/Y02compmatch.ztst,  Test/Y03arguments.ztst: assume zpty
	doesn't work under Cygwin.

2015-01-13  Barton E. Schaefer  <schaefer@zsh.org>

	* 34273: Doc/Zsh/compsys.yo: use a sufficient number of colons
	in example style patterns to assure fixed strings can't match
	the wrong field positions

2015-01-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: README: fix deliberate error in previous update.

2015-01-13  Peter Stephenson  <p.stephenson@samsung.com>

	* 34260: Eric Cook: Completion/Unix/Command/_ip: relax
	restriction on interface names.

	* 34259: Eric Cook: Completion/Unix/Command/_ip: fix variable
	declarations.

2015-01-12  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: .gitignore: add Src/zsh.exe for Cygwin.

	* 34255: README, Src/math.c, Test/C01arith.ztst: propagate type
	from variable assignment.  Also note 34230 in README.

	* 34253: Doc/Zsh/contrib.yo: warning on integer arithmetic
	for zcalc, c.f. 34194.

2015-01-11  Barton E. Schaefer  <schaefer@zsh.org>

	* 34247: Test/C01arith.ztst: regression test for 34230.

	* 34230: Src/math.c: call fmod() for modulo with floats

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

	* 34234: Src/lex.c, Src/zsh.h: use structures for normal and raw
	lexical buffer state.

	* 34233: Completion/Linux/Command/_qdbus: add _qdbus "$@" trick.

2015-01-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Test/C04funcdef.ztst: test for the foregoing

	* 34220: Src/input.c: new $(...) parsing didn't back up over
	alias expansions.

	* unposted: Src/context.c: update copyright.

	* 34195: Thomas Mitterfellner: Completion/Linux/Command/_qdbus:
	new completion.

2015-01-10  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted (cf. 34218): Completion/Base/Widget/_complete_debug,
	Completion/compinstall, Functions/Calendar/calendar,
	Functions/Zftp/zfget_match: remove -m from zmodload calls

	* 34212, 34313: Src/builtin.c: do not change unset-ness of special
	parameters when exporting them

2015-01-09  Barton E. Schaefer  <schaefer@zsh.org>

	* 34202: Completion/Base/Widget/_complete_debug,
	Completion/compinstall, Functions/Calendar/calendar,
	Functions/Zftp/zfget_match: safe tempfile creation part 3

	* users/19721: Doc/Zsh/compsys.yo: clarify context vs. style

2015-01-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34194: Doc/Zsh/arith.yo: add paragraph about integer
	promotion.

	* 34189:  Src/Zle/compcore.c, Src/Zle/compctl.c,
	Src/Zle/textobjects.c, Src/Zle/zle_tricky.c, Src/builtin.c,
	Src/context.c, Src/exec.c, Src/hist.c, Src/init.c, Src/lex.c,
	Src/parse.c, Src/signals.c, Src/zsh.h, Src/zsh.mdd:
	vain attempt to make context save and restore neater and
	control the status variables thereby managed.

2015-01-09  Peter Stephenson  <p.stephenson@samsung.com>

	* 34182: Doc/Zsh/mod_files.yo: to add zf_* builtins you can
	use zmodload -m -F.

2015-01-09  Mikael Magnusson  <mikachu@gmail.com>

	* 30568: Doc/Zsh/contrib.yo, Functions/Misc/tetriscurses: Add
	tetriscurses contrib function, port of tetris to zcurses

2015-01-08  Peter Stephenson  <p.stephenson@samsung.com>

	* 34160: Src/init.c, Src/input.c, Src/lex.c, Src/parse.c,
	Src/zsh.h, Test/D08cmdsubst.ztst: fix the problem that command
	and similar substitutions weren't properly parsed so could end
	prematurely.  Use improved resolution in context save and restore
	to allow parsing the substitution while tracking the string.

2015-01-07  Barton E. Schaefer  <schaefer@zsh.org>

	* 34154 (tweaked per 34155): Src/builtin.c: reorder bin_print() to
	avoid leaking the output descriptor when incorrect/incompatible
	options were passed

2015-01-07  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 34144: Src/Zle/zle_tricky.c, Src/Zle/complist.c: allocate
	origline by ztrdup(), not by dupstring()

2015-01-06  Barton E. Schaefer  <schaefer@zsh.org>

	* 34122: Src/module.c: allow NULL third argument as intended

2015-01-06  Mikael Magnusson  <mikachu@gmail.com>

	* 34138: Src/utils.c: wcs_nicechar: only deref widthp if it
	was given

	* 34120: Src/Zle/compctl.c, Src/jobs.c: Check contents instead
	of array

	* 34108: Src/utils.c: Don't leak ifs stuff

	* 34107: Src/hist.c: getsubsargs: free ptr1 before returning

	* 34134: Src/exec.c: anon funcs: don't leak shf and related data

	* 34112: Src/builtin.c: typeset: fix leak of oldval

	* 34106: Src/hist.c: use zhtricat instead of tricat

	* 34113: Src/builtin.c: whence: use dupstring to not leak memory

	* 34119: Src/Zle/complist.c: Fix leak of string in clnicezputs

	* 34105: Src/subst.c: remove dead code

	* 34121: Src/Zle/compresult.c: Remove unneeded NULL check

	* 34104: Src/Zle/compctl.c: Remove pointless check

	* 34115: Src/Zle/compcore.c: Fix size argument to zfree

	* 34117: Src/Zle/zle_utils.c: size_t is unsigned, use int instead

	* 34116: Src/Zle/computil.c: Check for NULL before passing
	to strlen

	* 34118: Src/hist.c: Don't crash when writing out history if
	HOST is unset

	* 34114: Src/builtin.c: emulate: Handle aborting from mixed
	-L/-c correctly

2015-01-06  Barton E. Schaefer  <schaefer@zsh.org>

	* 34103: Src/subst.c: fix ancient (workers/15872) thinko that
	doesn't seem to have mattered, but must in some obscure cases

2015-01-05  Daniel Shahaf <d.s@daniel.shahaf.name>

	* 34042: Completion/Unix/Command/_git: Respect tags for subcommand
	completion.

2015-01-05  Peter Stephenson  <p.stephenson@samsung.com>

	* Timofey Titovets: 34053: Completion/Linux/Command/_modutils:
	additional compression option for kernel modules.

2015-01-04  Barton E. Schaefer  <schaefer@zsh.org>

	* 34093: Src/builtins.c: "whence" should always return nonzero
	when it finds that nothing matches its arguments

2015-01-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 34092: Src/utils.c: miscount of buffer length in symlink
	resolution after ".." caused error with whence -S.

	* 34091: Src/utils.c: typo with "whence -s" expansions.

	* users/19682: Doc/Zsh/builtins.yo: document recommended use of
	whence.

2015-01-02  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/19671: Src/builtin.c: whence -a should still work if
	there's a full path already.

	* users/19667: Doc/Zsh/builtins.yo, Src/builtin.c, Src/utils.c:
	whence -S shows intermediate steps in symlink expansion.

	* 34077: Test/A07control.ztst: add some further tests for
	return status from "for" loops.

2014-12-29  Mikael Magnusson  <mikachu@gmail.com>

	* 33963: Completion/Unix/Command/_mount: remove work of art
	in _mount

2014-12-28  Barton E. Schaefer  <schaefer@zsh.org>

	* Daniel Shahaf: 34070: Src/Zle/zle_refresh.c: fix starting
	position for memset() from 34005.

	* 34068: Completion/Base/Widget/_complete_debug,
	Completion/Unix/Command/_cvs, Completion/compinstall,
	Functions/Calendar/calendar, Functions/Zftp/zfcd_match,
	Functions/Zftp/zfcget, Functions/Zftp/zfcput,
	Functions/Zftp/zfget_match, Functions/Zftp/zfrglob,
	Functions/Zftp/zftransfer, Functions/Zftp/zfuget,
	Functions/Zftp/zfuput: create tempfiles without forking, and
	safe temp directory creation

2014-12-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 34067: Completion/Base/Widget/_complete_debug,
	Completion/compinstall, Functions/Calendar/calendar,
	Functions/Zftp/zfcd_match, Functions/Zftp/zfcget,
	Functions/Zftp/zfcput, Functions/Zftp/zffcache,
	Functions/Zftp/zfget_match, Functions/Zftp/zfrglob,
	Functions/Zftp/zftransfer, Functions/Zftp/zftype,
	Functions/Zftp/zfuget, Functions/Zftp/zfuput,
	Functions/Zle/edit-command-line: safe tempfile creation

	* unposted: Test/A05execution.ztst: regressions for 34065

	* 34065: Src/exec.c, Src/loop.c: following an "if" condition, do
	not test lastval for ERR_EXIT until a new command is run

	* Takeshi Banse: 34064: Src/exec.c, Test/A06assign.ztst: assignment
	before command replaces array with export even when KSH_ARRAYS

2014-12-21  Oliver Kiddle  <opk@zsh.org>

	* Daniel Shahaf: 33977: Completion/Zsh/Command/_bindkey:
	don't complete widgets as first argument to bindkey

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

	* 34015: Src/params.c: back off yesterday's mess and
	disallow environment variables with characters with the
	top bit set.

	* 34005: Src/Zle/zle_refresh.c: Zero uninitialised memory when
	realloc'ing region_highlights.

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

	* 34008: Src/params.c: also metafy anything arriving from the
	environment.

	* 34006: Src/params.c: unmetafy anything put into the
	environment.

	* Lokesh Mandvekar: 33999: Completion/Linux/Command/_docker:
	remove completion as the version supplied with docker is
	authoritative.

2014-12-17  Barton E. Schaefer  <schaefer@zsh.org>

	* 34002: Src/Zle/zle_keymap.c: zshcalloc() in init_keymaps()
	
	* 33992: Src/jobs.c: do not attempt attachtty() for process group
	zero (which is possible in a linux pid namespace)

2014-12-18  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 33978: Src/Zle/complist.c: update command line when accept-
	and-hold is called in interactive mode of menu select

2014-12-17  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19551: Doc/builtins.yo, Doc/Zsh/roadmap.yo: better
	documentation that history file reading and writing is only
	done in interactive shells.

2014-12-16  Barton E. Schaefer  <schaefer@zsh.org>

	* Jun Kuriyama: 33984: Src/builtin.c: bin_dirs() should use
	zputs() to print metafied directory names

	* Chirantan Ekbote: 33982: Src/jobs.c: minimal support for pid
	namespaces by recognizing that GETPGRP() may return 0

2014-12-15  Barton E. Schaefer  <schaefer@zsh.org>

	* 33976: Src/subst.c: fix overlapping strcpy()

2014-12-14  Mikael Magnusson  <mikachu@gmail.com>

	* users/19530: Completion/Unix/Type/_file_systems: Handle
	commented lines in /etc/filesystems

2014-12-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Test/D04parameter.ztst: need -f for starting zsh
	to avoid problems from user config files.

2014-12-13  Oliver Kiddle  <opk@zsh.org>

	* 33958: Completion/Unix/Command/_sudo: update for newer options

	* 33956: Doc/Zsh/zle.yo, Src/Zle/zle_bindings.c,
	Src/Zle/zle_keymap.c: document key binding changes and remove
	^X binding

	* 33846: Src/Zle/iwidgets.list, Src/Zle/zle_bindings.c,
	Src/Zle/zle_keymap.c: additional default vi-mode key bindings

2014-12-12  Oliver Kiddle  <opk@zsh.org>

	* 33950: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list, Src/Zle/zle.h,
	Src/Zle/zle_keymap.c: ignore KEYTIMEOUT for vi operators

2014-12-11  Peter Stephenson  <p.stephenson@samsung.com>

	* 33876: etc.:  Completion/Base/Core/_main_complete,
	Doc/Zsh/params.yo, Src/Modules/zpty.c,  Src/Modules/zutil.c,
	Src/Zle/compcore.c, Src/Zle/compctl.c, Src/Zle/compresult.c,
	Src/Zle/textobjects.c, Src/Zle/zle_hist.c, Src/Zle/zle_keymap.c,
	Src/Zle/zle_main.c, Src/Zle/zle_misc.c, Src/Zle/zle_tricky.c,
	Src/Zle/zle_utils.c, Src/builtin.c, Src/exec.c, Src/glob.c,
	Src/hist.c, Src/init.c, Src/input.c, Src/jobs.c, Src/lex.c,
	Src/loop.c, Src/params.c, Src/parse.c, Src/prompt.c,
	Src/signals.c, Src/subst.c, Src/utils.c, Src/zsh.h: Separate
	shell errors and user interrupt flags into different bits of
	errflag: ERRFLAG_ERROR and ERRFLAG_INT.  Various
	rationalisations to make keyboard interrupts work smoothly.
	Work done on interrupt_abort branch.

2014-12-10  Mikael Magnusson  <mikachu@gmail.com>

	* 33948: Completion/Unix/Command/_getent,
	Completion/Unix/Command/_iconv, Completion/Unix/Command/_ldd:
	Parse "Gentoo" as being GNU libc

2014-12-10  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 33940: Src/lex.c: handle backslash-meta correctly in lexer

2014-12-09  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 33932: Src/utils.c: revise boundary check in unmeta()

2014-12-08  Oliver Kiddle  <opk@zsh.org>

	* 33924: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list, Src/Zle/zle.h,
	Src/Zle/zle_move.c, Src/Zle/zle_vi.c, Test/X02zlevi.ztst:
	allow vi line/characterwise mode to be forced

2014-12-08  Peter Stephenson  <p.stephenson@samsung.com>

	* 33927: Completion/Unix/Command/_nm: .elf files and
	directories.

	* 33843: Completion/Unix/Type/_files: minor optimisation for
	recursive-files.

2014-12-07  Barton E. Schaefer  <schaefer@zsh.org>

	* 33912: Completion/Unix/Command/_od: fix filename default case

	* 33901: Completion/Base/Core/_main_complete: fix warning message
	reference to funcstack (updates 33859)

	* 33894: Src/utils.c: boundary conditions in unmeta(), unmetafy()

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

	* Daniel Shahaf: 33883: Doc/Zsh/expn.yo,
	Completion/Zsh/Type/_globquals: documentation for (*) glob
	qualifier.

2014-12-07  Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>

	* 33829: Test/X02zlevi.ztst, Test/comptest: unbind ESC~ asa
	a more reliable workaround

2014-12-06  Mikael Magnusson  <mikachu@gmail.com>

	* 33882: Completion/Unix/Command/_gcc: Complete CXXFLAGS as
	CFLAGS too

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

	* 33861: Completion/Unix/Command/_lsof:
	update lsof completion for new options

	* 33860: Src/Zle/textobjects.c, Src/Zle/zle_misc.c,
	Src/Zle/zle_move.c, Src/Zle/zle_vi.c, Test/X02zlevi.ztst:
	minor fixes to vi mode changes

	* 33845: Src/Zle/zle_hist.c: save correct cursor position with
	push-line from vi command mode

2014-12-05  Peter Stephenson  <p.stephenson@samsung.com>

	* 33866: Completion/compinit: need multifuncdef for TRAPINT
	TRAPQUIT definition.

	* 33859 with typo fix: Completion/Base/Core/_main_complete: to
	propagate signal from trap we need to use function style.

2014-12-05  Barton E. Schaefer  <schaefer@zsh.org>

	* 33854: Src/glob.c: errors end recursion through scanner(), which
	makes **/ more easily interruptible

2014-12-04  Barton E. Schaefer  <schaefer@zsh.org>

	* 33841: Doc/Zsh/params.yo: explain array append a bit better

2014-12-03  Mikael Magnusson  <mikachu@gmail.com>

	* Eric Cook: 33689: Completion/Unix/Command/_cp: make cp
	--reflink's argument optional

2014-12-01  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T: 33830 plus CVS removal: Doc/Zsh/metafaq.yo: typo in
	sourceforge URL; don't mention CVS.

2014-11-30  Oliver Kiddle  <opk@zsh.org>

	* 33823: Src/Zle/zle_misc.c, Test/X02zlevi.ztst: overwrite mode
	shouldn't replace newlines

	* 33820: configure.ac, Src/hist.c: detect support for realpath()
	with a NULL argument and fixes to the use of it

	* 33800: Src/Zle/zle_main.c: remove old workaround for ancient
	systems to consume typeahead before setting up the terminal

	* 33818: Src/Builtins/sched.c, Src/Zle/complist.c,
	Src/exec.c, Src/sort.c, Src/utils.c: fix types passed to sizeof
	detected by coverity as being wrong

2014-11-28  Barton E. Schaefer  <schaefer@zsh.org>

	* 33819: Test/A06assign.ztst: regression tests for 33816

	* 33816 (2nd part): Src/exec.c: GLOB_ASSIGN changes integer and
	floating type variables to string scalars rather than treat single
	match file names as arithmetic expressions

2014-11-28  Wayne Davison  <wayned@users.sourceforge.net>

	* unposted: avoid compiler warning about a set-but-not-used var.

2014-11-28  Wayne Davison  <wayned@users.sourceforge.net>

	* 33139: Doc/Zsh/expn.yo: add example for finding broken symlinks.

2014-11-28  Peter Stephenson  <p.stephenson@samsung.com>

	* 33815: Src/Zle/zle_word.c: fix word transposition bug where
	wrong words could be transposed.

2014-11-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 33805: Doc/Zsh/params.yo: rewrite intro, tweak formatting

	* 33804: Completion/compinit: hide values of large arrays in
	typeset output by declaring with the -H attribute

2014-11-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Test/C01arith.ztst: test binary input using 0b.

2014-11-26  Peter Stephenson  <p.stephenson@samsung.com>

	* 33793: Src/math.c, Src/utils.c, Doc/Zsh/arith.yo: Arithmetic
	constants beginning 0b specify binary.

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

	* Jun T: 33769: Test/comptest: workaround for KEYTIMEOUT to
	work from test cases on Darwin and FreeBSD

	* 33770: Src/Zle/zle_main.c: avoid calling identical FIONREAD
	ioctl twice in succession

	* users/19365 (credit Death Jester and Jan Larres):
	Completion/Base/Completer/_external_pwds;
	completer for current directory of other shell processes

2014-11-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 33791: Src/loop.c: fatal errors in the try-block part of an
	"always" construct cause the entire construct to have nonzero
	status, even when TRY_BLOCK_ERROR is used to suppress the error.

2014-11-24  Peter Stephenson  <p.stephenson@samsung.com>

	* Daniel Hahler: 33746: Doc/Zsh/builtins.yo: read -q refers to -t.

2014-11-24  Mikael Magnusson  <mikachu@gmail.com>

	* 33785: Src/Modules/tcp.c: Fix leaks of desthost in ztcp.

2014-11-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 33775: Src/exec.c: error opening file in $(<...) is not fatal

2014-11-23  Oliver Kiddle  <opk@zsh.org>

	* 33743: Src/Modules/zpty.c, configure.ac: use posix_openpt
	if it is available

2014-11-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33729: Completion/Unix/Command/_git: "git remote add" should
	complete local repositories.

	* 33740: Stephane: Doc/Zsh/expn.yo: "hideval" parameter type.

	* 33740: Stephane: Etc/FAQ.yo: Another way of avoiding MULTIO
	effects on pipes.

2014-11-22  Barton E. Schaefer  <schaefer@zsh.org>

	* 33763 (cf. Baptiste Daroussin 33747): Doc/Zsh/mod_system.yo:
	fix nested item list in generated zshmodules.1 man page.

2014-11-21  Barton E. Schaefer  <schaefer@zsh.org>

	* 33750: Src/text.c: handle function autoloads for DEBUG_BEFORE_CMD

	* unposted: Doc/Zsh/zle.yo: add menu reference to Text Objects

2014-11-21  Oliver Kiddle  <opk@zsh.org>

	* saga.xu: 33712: Completion/Debian/_apt: add --auto-remove

	* 33738: Src/Zle/zle_vi.c, Test/X02zlevi.ztst: account for a
	selection in vi-replace-chars

	* 33730: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list,
	Src/Zle/textobjects.c, Src/Zle/zle.mdd, Src/Zle/zle_keymap.c,
	Test/X02zlevi.ztst: vim style text objects for selecting words

2014-11-21  Peter Stephenson  <p.stephenson@samsung.com>

	* Sebastien Alaiwan: 33728: Completion/Unix/Command/_bzr:
	complete bzr shelve.

2014-11-20  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted but see 33723: Etc/FAQ.yo: typo in sed command that's
	been there about twenty years.

2014-11-19  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19404: Etc/FAQ.yo: login shells are not after all
	necessarily interactive.

	* 33679: Doc/Zsh/grammar.yo: Note that alternation in case
	patterns works just like filename generation, despite
	appearances to the contrary.

2014-11-17  Oliver Kiddle  <opk@zsh.org>

	* 33704: Doc/Zsh/zle.yo, Src/Zle/zle_bindings.c,
	Src/Zle/zle_keymap.c, Src/Zle/zle_refresh.c, Src/Zle/zle_vi.c,
	Test/X02zlevi.ztst, Test/comptest: key bindings, documentation,
	tests and minor fixes for vim style visual selection changes

	* 33636: Src/Zle/iwidgets.list, Src/Zle/zle_misc.c,
	Src/Zle/zle_move.c, Src/Zle/zle_refresh.c, Src/Zle/zle_vi.c:
	add support for a linewise visual selection mode

	* 33635: Src/Zle/iwidgets.list, Src/Zle/zle_misc.c,
	Src/Zle/zle_move.c, Src/Zle/zle_refresh.c, Src/Zle/zle_vi.c:
	adapt region to function as vim style visual selection mode

	* 33700: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list,
	Src/Zle/zle_misc.c, Src/Zle/zle_utils.c: new widget
	for put in vim style visual selection mode

	* 33699: Test/X02zlevi.ztst, Test/comptest: support short
	delays in zle tests where we need KEYTIMEOUT to elapse

2014-11-16  Oliver Kiddle  <opk@zsh.org>

	* 33633: Src/Zle/zle_vi.c: support vim style text objects

	* 33632: Src/Zle/zle_main.c, Src/Zle/zle_vi.c: use viopp and visual
	local keymaps if they exist

2014-11-15  Oliver Kiddle  <opk@zsh.org>

	* 33697: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list, Src/Zle/zle_word.c:
	new vim style vi-backward-word-end widgets

	* 33696: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list, Src/Zle/zle_hist.c:
	simple up/down line widgets that don't go through history lines

	* 33695: Src/Zle/zle_vi.c, Test/X02zlevi.ztst, Test/comptest:
	fix various vi-indent problems and vi-swap-case on a blank line

2014-11-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Artur Penttinen: 19371 plus tweak: run-help helper for ip.

	* Marc Finet: 33687 (first and last patches): ensure length of
	working directory is correct and return as soon as there's
	an error chasing symlinks.

2014-11-13  Barton E. Schaefer  <schaefer@zsh.org>

	* 33686: Test/B06fc.ztst: set PS1 before pattern-matching for it

	* 33656: Src/builtin.c: different algorithm for "whence -am" to
	produce results more consistent with "whence -m"

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

	* 33669: Src/Zle/zle_utils.c, Test/X02zlevi.ztst: allow an empty
	line to be yanked with yy by allocating 1 byte instead of 0

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

	* 33658: Doc/Zsh/options.yo: AUTO_CD depends on SHIN_STDIN.

2014-11-09  Oliver Kiddle  <opk@zsh.org>

	* 33599: Jun T.: Test/comptest: workaround zpty issue that
	causes vi test cases to fail on MacOS and FreeBSD

	* 33640: clutton: Completion/BSD/Command/_kld: look in
	/boot/modules instead of /modules for third-party modules

	* 33643: Doc/Zsh/options.yo: elaborate documentation of
	the PRIVILEGED option

	* 33639: Src/Zle/zle_vi.c, Test/X02zlevi.ztst: fix bug with vi
	operators on a blank line and with backward bracket matching

	* 33659: Completion/Unix/Command/_gpg: use --dump-options to get
	most of the gpg options to complete

2014-11-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33655: Src/zsh.h: remove overlap of node flags.

	* 33653: Src/builtin.c: handle -a option to whence in
	combination with -m.

2014-11-08  Barton E. Schaefer  <schaefer@zsh.org>

	* 33648: Completion/Unix/Command/_gpg: complete for gpg2 as well

2014-11-06  Oliver Kiddle  <opk@zsh.org>

	* 33624: Src/Zle/zle_utils.c: keep region active when widget fails

2014-11-07  Mikael Magnusson  <mikachu@gmail.com>

	* 33607: Src/Modules/attr.c: Fix some minor problems in zattr module

2014-11-06  Barton E. Schaefer  <schaefer@zsh.org>

	* 33614 (based on RedHat BZ-978613): Src/exec.c: signal safety
	when updating global state in execshfunc()

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

	* 33604: Src/Zle/zle_utils.c, Src/Zle/zle_vi.c, Test/X02zlevi.ztst:
	fix change merging for vi mode where a change has just been undone

2014-11-04  Oliver Kiddle  <opk@zsh.org>

	* 33596: Src/Zle/zle_keymap.c: make local keymap keybinding hide
	global keymap binding that is a prefix of the local binding

2014-11-02  Oliver Kiddle  <opk@zsh.org>

	* 33593: Src/Zle/zle_vi.c, Test/X02zlevi.ztst:
	support numeric argument to vi-join

	* 33575: Src/Zle/zle_params.c, Src/Zle/zle_utils.c: reset vi change
	start position if text is inserted before it or on history movement

2014-11-02  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33591: Src/exec.c, Test/D04parameter.ztst: don't treat an exec
	within an subshell as an exec of the parent shell even if about
	to exit.  Fixes incorrect SHLVL in subshell.

2014-10-31  Oliver Kiddle  <opk@zsh.org>

	* unposted: Src/jobs.c: quash compiler warning

	* unposted: Test/X02zlevi.ztst: correct cursor position in test

2014-10-31  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: .gitignore: add /.project for GitEye.

	* 33582: Src/Modules/zftp.c: don't include tcp.mdh in zftp.c as
	it only contains private module definitions.

	* via private email: Jérémie Roquet: Src/options.c: more care
	with errors using setuid().

2014-10-30  Oliver Kiddle  <opk@zsh.org>

	* 33570, 33576: Doc/Zsh/zle.yo, Src/Zle/iwidgets.list, Src/Zle/zle.h,
	Src/Zle/zle_misc.c, Src/Zle/zle_vi.c, Test/X02zlevi.ztst: make kill-
	ring/yank-pop work in vi mode after vi-put-before and vi-put-after

2014-10-29  Barton E. Schaefer  <schaefer@zsh.org>

	* 33566: Jun T.: Src/Modules/zselect.c: quash compiler warning

	* 33563: Completion/Base/Core/_main_complete, Src/Zle/complist.c:
	fix thinko in status message for INT/QUIT signals; check errflag
	in output loops so that unexpectedly long completion listings can
	be interrupted

2014-10-29  Oliver Kiddle  <opk@zsh.org>

	* 33528: Src/Zle/iwidgets.list, Src/Zle/zle_vi.c,
	Test/X02zlevi.ztst: take notice of last column position when
	using vi-yank and an upward cursor movement

2014-10-27  Mikael Magnusson  <mikachu@gmail.com>

	* 33561, 33562: Src/jobs.c: The time builtin forgot to unmetafy
	TIMEFMT.

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

	* 33564: Test/A05execution.ztst: more care with monitor option.

	* 33542: Test/A05execution.ztst: test previous patch.

	* 33531 (plus fix to test job pointer and removing
	lastpid_status): Doc/Zsh/builtins.yo, Doc/Zsh/options.yo,
	Src/exec.c, Src/init.c, Src/jobs.c, Src/linklist.c,
	Src/signals.c: retain up to CHILD_MAX statuses of exited
	background processes; remove old lastpid_status mechanism;
	slightly improve safety of permanently allocated linked lists.

2014-10-24  Barton E. Schaefer  <schaefer@zsh.org>

	* 33526: Completion/Unix/Type/_path_files: fix path prefix
	handling when NO_CASE_GLOB is in effect

2014-10-24  Peter Stephenson  <p.stephenson@samsung.com>

	* 33480 slightly tweaked: Src/Zle/zle_tricky.c: fix completion
	after $' but before closing quote (if any).

2014-10-24  Mikael Magnusson  <mikachu@gmail.com>

	* 33485: Completion/Unix/Command/_su: fix a missing ;; case
	terminator

2014-10-23  Oliver Kiddle  <opk@zsh.org>

	* 33520: Src/Zle/zle_vi.c, Test/X02zlevi.ztst: correct cursor
	positioning following a vi mode yank operation

	* unposted: .editorconfig: specify 8 char indent for ChangeLog

	* 33519: Src/Zle/zle_move.c, Test/X02zlevi.ztst: last character
	in the buffer can be cut, changed or yanked using vi-forward-char

	* 33518: Doc/Zsh/zle.yo, Src/Zle/zle.h, Src/Zle/zle_utils.c,
	Src/Zle/zle_vi.c, Test/X02zlevi.ztst: add support for "_ vi
	buffer and arguments to vi-set-buffer from a zle widget

	* 33514: Src/Zle/zle_utils.c: even with a named vi buffer, we
	should update the default buffer

	* 33513: Src/Zle/iwidgets.list: vi mode deletions should replace
	cut buffer not append to it

	* 33512: Src/Zle/zle.h, Src/Zle/zle_main.c, Src/Zle/zle_utils.c,
	Src/Zle/zle_vi.c: add support for "0 vi buffer and yank to it

2014-10-22  Barton E. Schaefer  <schaefer@zsh.org>

	* 33515: Src/Zle/compmatch.c: suppress parser error messages in
	comp_match()

	* 33493: Src/Builtins/rlimits.c, Src/exec.c: use correct command
	name in error messages about "ulimit" failure; restore internal
	copy of limits if setrlimit() fails, so the error won't repeat

2014-10-21  Oliver Kiddle  <opk@zsh.org>

	* 33486: Completion/X/Command/_rdesktop: new completion function

	* 33485: Completion/BSD/Command/_portsnap,
	Completion/Darwin/Command/_defaults,
	Completion/Darwin/Command/_fink, Completion/Debian/Command/_dchroot,
	Completion/Debian/Command/_dchroot-dsa,
	Completion/Debian/Command/_make-kpkg,
	Completion/Debian/Command/_update-alternatives,
	Completion/Debian/Command/_vim-addons, Completion/Unix/Command/_du,
	Completion/Unix/Command/_ecasound, Completion/Unix/Command/_ffmpeg,
	Completion/Unix/Command/_ln, Completion/Unix/Command/_mail,
	Completion/Unix/Command/_mosh, Completion/Unix/Command/_mysqldiff,
	Completion/Unix/Command/_od, Completion/Unix/Command/_pgrep,
	Completion/Unix/Command/_pydoc, Completion/Unix/Command/_ri,
	Completion/Unix/Command/_su, Completion/Zsh/Command/_tcpsys,
	Completion/Zsh/Command/_zattr: fixes for zstyle context handling

	* 33481: Completion/Mandriva/Command/_rebootin,
	Completion/Unix/Type/_directories, Completion/Unix/Type/_pdf,
	Completion/Unix/Type/_pids, Completion/openSUSE/Command/_yast,
	Completion/openSUSE/Command/_SUSEconfig: resolve completion
	clashes and tidy-up SUSE/Mandriva related functions

2014-10-17  Peter Stephenson  <p.stephenson@samsung.com>

	* see 33475: Completion/Unix/Command/_gcc: allow .cpp files as
	input.

2014-10-14  Oliver Kiddle  <opk@zsh.org>

	* 33455: Syohei YOSHIDA: Completion/Unix/Command/_global:
	update GNU global option completion

	* 33467: Completion/Debian/Command/_apt-move,
	Completion/Debian/Command/_bts, Completion/Linux/Command/_sysstat,
	Completion/Mandriva/Command/_urpmi, Completion/Redhat/Command/_rpm,
	Completion/Solaris/Command/_ptree, Completion/Unix/Command/_arp,
	Completion/Unix/Command/_at, Completion/Unix/Command/_bittorrent,
	Completion/Unix/Command/_bogofilter, Completion/Unix/Command/_bpython,
	Completion/Unix/Command/_bzr, Completion/Unix/Command/_cdrdao,
	Completion/Unix/Command/_chmod, Completion/Unix/Command/_cpio,
	Completion/Unix/Command/_df, Completion/Unix/Command/_django,
	Completion/Unix/Command/_git, Completion/Unix/Command/_less,
	Completion/Unix/Command/_lha, Completion/Unix/Command/_metaflac,
	Completion/Unix/Command/_module, Completion/Unix/Command/_monotone,
	Completion/Unix/Command/_mpc, Completion/Unix/Command/_netcat,
	Completion/Unix/Command/_notmuch, Completion/Unix/Command/_pkg-config,
	Completion/Unix/Command/_prove, Completion/Unix/Command/_rar,
	Completion/Unix/Command/_rsync, Completion/Unix/Command/_rubber,
	Completion/Unix/Command/_sablotron, Completion/Unix/Command/_screen,
	Completion/Unix/Command/_stgit, Completion/Unix/Command/_strip,
	Completion/Unix/Command/_systemd, Completion/Unix/Command/_telnet,
	Completion/Unix/Command/_tidy, Completion/Unix/Command/_tmux,
	Completion/Unix/Command/_vcsh, Completion/Unix/Command/_zpool,
	Completion/Unix/Type/_users, Completion/X/Command/_urxvt,
	Completion/X/Command/_x_utils: correct return status on functions
	and numerous other minor fixes

2014-10-13  Peter Stephenson  <p.stephenson@samsung.com>

	* 33459: Test/D04parameter.ztst: test for variable substitution
	in variable splitting.

2014-10-13  Oliver Kiddle  <opk@zsh.org>

	* 33438: Completion/Base/Utility/_sequence: use the new way of
	splitting strings with a dynamic separator from 33423 and quote
	separators where needed

2014-10-12  Barton E. Schaefer  <schaefer@zsh.org>

	* 33445: Src/init.c: fix handling of SHIN_STDIN (-s) when combined
	with INTERACTIVE (-i) on the shell invocation command line

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

	* 33423: Doc/Zsh/expn.yo, Src/subst.c: parameter expansion
	(p) flag allows delimited strings to contain simple $param
	expansions.

2014-10-11  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Test/B06fc.ztst: tests for 33429.

2014-10-10  Barton E. Schaefer  <schaefer@zsh.org>

	* 33429: Src/builtin.c, Src/hist.c: disallow non-integer values
	for the temporary HISTSIZE and SAVEHIST of "fc -p", and fix
	crash on zero values for same

2014-10-11  Oliver Kiddle  <opk@zsh.org>

	* 33424: Completion/Debian/Type/_deb_architectures,
	Completion/Debian/Command/_apt-file,
	Completion/Debian/Command/_dak, Completion/Debian/Command/_madison,
	Completion/Debian/Command/_dpkg-buildpackage,
	Completion/Debian/Command/_pbuilder,
	Completion/Debian/Command/_reprepro,
	Completion/Debian/Command/_svn-buildpackage: use common function
	for completing Debian architectures

2014-10-10  Oliver Kiddle  <opk@zsh.org>

	* 33420: Completion/Zsh/Command/_zmodload: complete -R/-m options and
	fix feature completion

	* fREW Schmidt: 33375: Completion/Unix/Command/_runit: sv completion

	* Daniel Shahaf: 33396: Completion/Unix/Command/_xxd: new completion

	* Yuri D'Elia: 33397: Completion/X/Command/_xautolock: new completion

2014-10-09  Frank Terbeck  <ft@bewatermyfriend.org>

	* 33405: Functions/VCS_Info/vcs_info: Make sure maxexports
	is set when VCS_INFO_set is called

2014-10-09  Barton E. Schaefer  <schaefer@zsh.org>

	* 33403: Completion/Base/Utility/_call_program: be conservative
	about redirecting stderr, the caller may have already done so

2014-10-09  Marc Finet  <m.dreadlock@gmail.com>

	* 33391: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info git: fix applied patch detection on git am

2014-10-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk: update to 5.0.7-dev-0 to avoid
	installation clashes with 5.0.7.

2014-10-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk: 5.0.7

2014-10-06  Mikael Magnusson  <mikachu@gmail.com>

	* 33365: Src/exec.c: avoid buffer overflow for very long fds in >&
	fd syntax.

2014-10-06  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted (discussed offline): README: update description of
	integer import problem.

2014-10-04  Barton E. Schaefer  <schaefer@zsh.org>

	* 33354: Src/jobs.c, Test/A05execution.ztst: when backgrounding
	a pipeline, close all pipe descriptors in the parent; add test
	for both this and 33345+33346

2014-10-03  Bart Schaefer  <schaefer@zsh.org>

	* 33346: Src/parse.c: another bit of the 33345 repair

2014-10-03  Peter Stephenson  <p.stephenson@samsung.com>

	* 33345: Src/parse.c, Test/C04funcdef.ztst: fix longstanding
	anonoymous function corruption of "complex" state that allowed
	complex wordcode to be passed to execsimple(), causing crash.

	* unposted: src/parse.c: comments were the wrong way round.

	* 33343: Src/parse.c, Test/C04funcdef.ztst: variant anonymous
	function syntax with arguments.

2014-10-02  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: 5.0.6-dev-1.

2014-10-02  Oliver Kiddle  <opk@zsh.org>

	* 33323: Completion/Zsh/Command/_typeset, Doc/Zsh/builtins.yo,
	Src/builtin.c: fix bug in removing math functions and complete
	-M option to functions

	* 33315: Completion/Unix/Command/_sysctl: fix pattern to
	match freebsd10 and later

2014-10-02  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: remove "major".

	* 33330: README, Etc/FAQ.yo: information for forthcoming 5.0.7
	release.

	* 33332: Test/C01arith.ztst: test numeric import fix in 33276.

2014-10-02  Barton E. Schaefer  <schaefer@zsh.org>

	* 33320 (cf. PWS 33311): Completion/Base/Completer/_expand_alias,
	Src/Zle/compcore.c, Src/utils.c, Src/ztype.h: revert 33069; add
	typtab_flags bits (replaces specialcomma boolean) to record any
	unusual handling of typtab entries; signal safety; make bangchar
	non-special during completion lexing of the command line.

2014-10-02  Peter Stephenson  <p.stephenson@samsung.com>

	* 33325: Src/exec.c, Test/A05execution.ztst: fix ksh autoloads
	with redirections on function definitions.

2014-10-01  Barton E. Schaefer  <schaefer@zsh.org>

	* 33319: Doc/Zsh/grammar.yo: fix parens in example from 33312

2014-10-02  Axel Beckert  <abe@deuxchevaux.org>

	* 33284: Mathieu Malaterre: Completion/Unix/Command/_{graphics,
	image}magick: Add missing JPEG 2000 file extensions.

2014-10-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33312: Doc/Zsh/builtins.yo, Doc/Zsh/grammar.yo: document
	redirections applied to function definitions.

2014-09-30  Barton E. Schaefer  <schaefer@zsh.org>

	* 33298: Src/lex.c: make lexrestore() more signal-safe

2014-09-30  Peter Stephenson  <p.stephenson@samsung.com>

	* 33294: Src/Modules/parameter.c, Test/A04redirect.ztst:
	functions[func] value for functions with redirections and
	extra tests.

	* 33293: Src/Zle/compctl.c, Src/Zle/zle_refresh.c: fix warnings
	from swish new compilers with a contemporary outlook.

2014-09-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33286: Src/exec.c, Test/A04redirect.ztst: handle redirections
	for multiple named functions.

	* 33285: NEWS, Src/exec.c, Src/hashtable.c, Src/parse.c,
	Src/signals.c, Src/zsh.h, Test/A04redirect.ztst: redirections in
	function definitions are applied at execution not definition.

2014-09-29  Frank Terbeck  <ft@bewatermyfriend.org>

	* 33277: Functions/VCS_Info/VCS_INFO_reposub: Fix
	VCS_INFO_reposub's command expansion

2014-09-29  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19183: Src/hist.c: handle unlikely error case with
	fdopen() better.

	* 33276: Src/params.c, Src/zsh.h: safer import of numerical
	variables from environment.

2014-09-28  Barton E. Schaefer  <schaefer@zsh.org>

	* 33268: Src/exec.c, Src/init.c, Src/signals.c: interactive shells
	treat SIGPIPE like SIGHUP if and only if SHTTY is disconnected

2014-09-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 33256: Src/prompt.c: fix prompttrunc() counting of %{ %} spans

2014-09-26  Peter Stephenson  <p.stephenson@samsung.com>

	* 33242: Src/parse.c: don't treat tokens immediately following
	end of shell constructs for, while, repeat, if as being in
	command position.

	* Wieland Hoffmann: 33252: Completion/Unix/Command/_notmuch:
	complete more subcommands.

2014-09-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/19143: Src/glob.c: **/*(odonT) didn't work because
	the trailing slash wasn't properly ignored.

2014-09-25  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: NEWS: tweak last change.

2014-09-24  Oliver Kiddle  <opk@zsh.org>

	* 33238: Completion/Unix/Command/_quilt: correct return values

2014-09-24  Peter Stephenson  <p.stephenson@samsung.com>

	* Eric Cook: 33224: Completion/Linux/Command/_btrfs: complete
	directory as second argument.

2014-09-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 33223: Completion/Base/Utility/_call_program: discard stderr
	except when _complete_debug is in progress.

2014-09-23  Øystein Walle  <oystwa@gmail.com>

	* 33179: Completion/Unix/Command/_git: _git: updates for Git 2.0.0

	* 33176: Completion/Unix/Command/_git: _git: Add missing --list to
	git-tag

	* 33178: Completion/Unix/Command/_git: _git: updates for Git 2.1.0

	* 33177: Completion/Unix/Command/_git: _git: fix typo in git-apply

	* 33180: Completion/Unix/Command/_git: _git: add missing --3way
	option

2014-09-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: NEWS: more minor tweaks.

	* unposted: NEWS: mention numeric output with underscore separators.

	* unposted: NEWS: mention new
	/usr/local/share/zsh/site-functions default.

2014-09-23  Peter Stephenson  <p.stephenson@samsung.com>

	* 33221 (including 33173 from Anthony Heading):
	Completion/Unix/Command/_perforce: complete directories
	when handling unmaintained files and rationalise code that does
	this.

	* unposted: Completion/Unix/Command/_dvi: add dvipdf to list of
	commands.

	* Richard Hartmann: 33218: Completion/X/Command/_mplayer:
	complete m4a files.

2014-09-22  Oliver Kiddle  <opk@zsh.org>

	* 33198: Completion/Unix/Command/_augeas: new augtool completion

	* users/19113: Completion/Linux/_cryptsetup: reorganised function

2014-09-22  Daniel Hahler  <dhahler@gmail.com>

	* 33217: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info: use `--ignore-submodules=dirty` with diff/diff-index

2014-09-22  Peter Stephenson  <p.stephenson@samsung.com>

	* 33208: Tanu Kaskinen: improve printing of paths at end of
	configuration.

2014-09-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33214 (modified yet further): configure.ac: test prefixes better.

	* 33213: configure.ac, Config/defs.mk.in: try again.

	* 33212: Src/zsh.mdd: Src/init.c, Src/zsh.mdd, configure.ac: add
	/usr/local/share/zsh/site-functions to head of fpath if not
	present from result of running configure.  There's no
	configuration for this as it serves as a fallback.

	* Tanu Kaskinen: 33209: Doc/Makefile.in: don't fail
	catastrophically when builing zsh.texi if yodl isn't available.

2014-09-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 33206: Doc/Zsh/mod_computil.yo: fix compdescribe doc

	* 33205: Completion/Base/Utility/_describe: if passed both an
	array of completions and an array of display strings, keep them
	in sync when filtering for matches.

2014-09-18  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/19097: Doc/Zsh/mod_parameter.yo,
	Src/Modules/parameter.c: remove functypetrace and instead add
	cross-reference to zsh_eval_context.

2014-09-16  Marc Finet  <m.dreadlock@gmail.com>

	* 33188: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info git: set rrn before using it

	* 33184: Doc/Zsh/contrib.yo,
	Functions/VCS_Info/Backends/VCS_INFO_get_data_git: vcs_info git:
	consider patches for rebase

2014-09-16  Mikael Magnusson  <mikachu@gmail.com>

	* 33136: Doc/Zsh/expn.yo, Src/glob.c: P glob qualifier appends
	words when negated.

	* 33137: Completion/Unix/Type/_path_files: complete # to introduce
	a glob flag

2014-09-14  Marc Finet  <m.dreadlock@gmail.com>

	* 33149: Misc/vcs_info-examples: vcs_info examples: fix typo

	* 33151: Completion/Unix/Command/_git: completion git: support
	aliases when \n exist

	* 33147: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info git: detect revert or cherry-pick with multiple commits

	* 33148: Functions/VCS_Info/VCS_INFO_quilt: vcs_info quilt:
	refactor standalone detection

	* 33145: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info git: fix applied-string name

	* 33150: Completion/Unix/Command/_git: completion git: fix
	send-email --confirm values

2014-09-12  Barton E. Schaefer  <schaefer@zsh.org>

	* 33143: Src/init.c: POSIX_ARGZERO more closely matches bash et al.

2014-09-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/19075: Doc/Zsh/mod_parameter.yo,
	Src/Modules/parameter.c: $functypestack gives "function",
	"source" or "eval" for parallel element of $funcstack.

2014-09-09  Peter Stephenson  <p.stephenson@samsung.com>

	* Eric Cook: 33132: Completion/Unix/Type/_net_interfaces: use ip
	on Linux to get interface names.

2014-09-08  Peter Stephenson  <p.stephenson@samsung.com>

	* users/19059 based on users/19058 (Paulo César Pereira de
	Andrade): Src/pattern.c, Test/D02glob.ztst: remove inefficiency
	with multiple "*"s in pattern matching and add test.

2014-09-07  Barton E. Schaefer  <schaefer@zsh.org>

	* 33122: Src/Modules/pcre.c, Test/V07pcre.ztst: typo from 32891
	caused incorrect matches for pcre_match -n

2014-09-06  Barton E. Schaefer  <schaefer@zsh.org>

	* 33118: Src/subst.c: record original param unset state when
	${name:#word} et al. need to treat empty the same as unset, to
	avoid incorrect NO_UNSET error

	* 33116: Src/hist.c: followup to 32580 to prevent double-locking
	with shared or incremental history

	* unposted: Doc/Zsh/expn.yo: clarify ${(~j.|.)array} example

2014-08-21  Mikael Magnusson  <mikachu@gmail.com>

	* 33061: Completion/Zsh/Command/_setopt,
	Completion/Zsh/Command/_unsetopt: More useful setopt / unsetopt
	completion.

2014-09-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33110: Doc/Zsh/expn.yo: document use of $IFS[1] for variable
	padding.

2014-09-04  Peter Stephenson  <p.stephenson@samsung.com>

	* Alexandre Rames: 33108: Completion/Unix/Command/_stgit:
	--patch completion.

	* 33091: Doc/Zsh/builtins.yo: improve documentation for ttyctl.

2014-09-03  Barton E. Schaefer  <schaefer@zsh.org>

	* 33100: Src/exec.c: check $fd more rigorously in "exec {fd}<&-"

	* 33088: Completion/Base/Widget/_complete_debug: indentation in $PS4

2014-09-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Mark Oteiza: 33081: Completion/Unix/Type/_mime_types: suppress
	error message if unnecessary file not found.

2014-08-31  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Test/A05execution.ztst: further tweaking of the
	descriptor leak regression test that sometimes hangs

	* 33077: Src/exec.c: SHTTY = -1 when closing it in closem()

2014-08-30  Barton E. Schaefer  <schaefer@zsh.org>

	* 33070: Doc/Zsh/prompt.yo, Src/prompt.c: add %(e..) based on %e

	* 33069: Completion/Base/Completer/_expand_alias: remove internal
	quoting	before looking up aliases when expanding aliases in an
	unquoted word

2014-08-29  Peter Stephenson  <p.stephenson@samsung.com>

	* 33057: Doc/Zsh/prompt.yo, Src/prompt.c: %e in prompts shows
	evaluation / execution depth.

2014-08-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33062: Etc/zsh-development-guide: update note on use of
	.distfiles based on 33047.

	* unposted: Config/version.mk: update to 5.0.6-dev-0 for new
	commits post release.

	* unposted: Config/version.mk: 5.0.6.

2014-08-24  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk: 5.0.5-dev-3.

2014-08-24  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted (see 33050): Completion/Unix/Command/_git: un-transpose
	help text for git merge -{-no,}-verify

2014-08-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 33047: .distfiles, Completion/.distfiles,
	Completion/AIX/.distfiles, Completion/AIX/Command/.distfiles,
	Completion/AIX/Type/.distfiles, Completion/BSD/.distfiles,
	Completion/BSD/Command/.distfiles, Completion/Base/.distfiles,
	Completion/Base/Completer/.distfiles,
	Completion/Base/Core/.distfiles,
	Completion/Base/Utility/.distfiles,
	Completion/Base/Widget/.distfiles,
	Completion/Cygwin/Command/.distfiles,
	Completion/Darwin/Command/.distfiles,
	Completion/Darwin/Type/.distfiles, Completion/Debian/.distfiles,
	Completion/Debian/Command/.distfiles,
	Completion/Debian/Type/.distfiles,
	Completion/Linux/Command/.distfiles,
	Completion/Linux/Type/.distfiles,
	Completion/Mandriva/.distfiles,
	Completion/Mandriva/Command/.distfiles,
	Completion/Redhat/.distfiles,
	Completion/Redhat/Command/.distfiles,
	Completion/Solaris/Command/.distfiles,
	Completion/Solaris/Type/.distfiles, Completion/Unix/.distfiles,
	Completion/Unix/Command/.distfiles,
	Completion/Unix/Type/.distfiles, Completion/X/.distfiles,
	Completion/X/Command/.distfiles, Completion/X/Type/.distfiles,
	Completion/X/Utility/.distfiles, Completion/Zsh/.distfiles,
	Completion/Zsh/Command/.distfiles,
	Completion/Zsh/Context/.distfiles,
	Completion/Zsh/Function/.distfiles,
	Completion/Zsh/Type/.distfiles,
	Completion/openSUSE/Command/.distfiles, Config/.distfiles,
	Doc/.distfiles,Doc/Zsh/.distfiles, Doc/help/.distfiles,
	Etc/.distfiles, Functions/.distfiles,
	Functions/Calendar/.distfiles, Functions/Chpwd/.distfiles,
	Functions/Compctl/.distfiles, Functions/Example/.distfiles,
	Functions/Exceptions/.distfiles, Functions/MIME/.distfiles,
	Functions/Misc/.distfiles, Functions/Newuser/.distfiles,
	Functions/Prompts/.distfiles, Functions/TCP/.distfiles,
	Functions/VCS_Info/.distfiles,
	Functions/VCS_Info/Backends/.distfiles,
	Functions/Zftp/.distfiles, Functions/Zle/.distfiles,
	Misc/.distfiles, Scripts/.distfiles, Src/.distfiles,
	Src/Builtins/.distfiles, Src/Modules/.distfiles,
	Src/Zle/.distfiles, StartupFiles/.distfiles, Test/.distfiles,
	Util/.distfiles, Util/mkdisttree.sh: Files controlled by git
	are part of the source distribution unless explicitly included
	in DISTFILES_NOT.  The .distfiles file is still needed for
	the directory to be processed.

	* unposted: Etc/.gitignore: ignore generated FAQ*.html files.

2014-08-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 33046: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/_chsh, Completion/Unix/Type/_users: new
	completion for "chsh"

2014-08-22  Barton E. Schaefer  <schaefer@zsh.org>

	* 33042: NEWS, Src/jobs.c: $? and $pipestatus report 128+signal
	number for stopped jobs as well as terminated jobs

2014-08-21  Mikael Magnusson  <mikachu@gmail.com>

	* 33038: Src/glob.c: Fix {a..b} expansion hanging when either
	endpoint is a literal NUL character

2014-08-20  Barton E. Schaefer  <schaefer@zsh.org>

	* Lokesh Mandvekar: 33032: Completion/Linux/Command/_docker,
	Completion/Linux/Command/.distfiles: new completion for docker

2014-08-15  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted (see 33006): Test/A05execution.ztst: timeout the final
	"read" in hung shell regression

	* 33012: Src/utils.c: add an error return value (-1) to xsymlinks()
	to differentiate when xbuf is set to the empty string; silences
	bogus warning about failed expansion

2014-08-14  Oliver Kiddle  <opk@zsh.org>

	* 32998: Completion/Unix/Command/_dsh, Completion/Unix/Command/_nm,
	Completion/Unix/Command/_mosh, Completion/Unix/Command/_rsync,
	Completion/Unix/Command/_wget: completion function updates

	* 32997: Completion/Base/Utility/_sequence, Doc/Zsh/compsys.yo,
	Completion/Unix/Command/_mount, Completion/Unix/Command/_nmap,
	Completion/Unix/Command/_pgrep, Completion/Unix/Command/_zip:
	add completion utility function for lists

2014-08-14  Peter Stephenson  <p.stephenson@samsung.com>

	* 33002: Doc/Zsh/tcpsys.yo, Functions/TCP/tcp_expect: add option
	-P to tcp_expect for tagging matches with a string rather than
	a parameter index.

2014-08-13  Oliver Kiddle  <opk@zsh.org>

	* 32925: Completion/Zsh/Command/_kill: complete process groups,
	partly as a way to suppress insertion of ambiguous PID prefix

	* 32893: Completion/Unix/Type/_pids: move use of _call_program
	inside the _tags loop to allow processes to be separated

2014-08-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Config/version.mk: update to 5.0.5-dev-2.

2014-08-12  Mikael Magnusson  <mikachu@gmail.com>

	* 32985: NEWS: Add NEWS entry for array zipping operators.

2014-08-12  Peter Stephenson  <p.stephenson@samsung.com>

	* Axel Beckert: 32975, 32984: Doc/Zsh/Makefile.in: texi2html.conf
	location was inconsistent when building out of tree.

2014-08-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Completion/Base/Completer/.distfiles,
	Completion/Linux/Command/.distfiles,
	Completion/Unix/Command/.distfiles, Config/version.mk,
	Etc/.distfiles, Etc/FAQ.yo, Functions/Zle/.distfiles, NEWS,
	README: updates for 5.0.5-dev-1 and 5.0.6 release.

2014-08-10  Axel Beckert  <abe@deuxchevaux.org>

	* unposted: Doc/Zsh/expn.yo: Fix typo.

2014-08-08  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: NEWS, Doc/Zsh/prompt.yo: mention 32971 in NEWS,
	clarify RPROMPT behavior in docs.

2014-08-07  Barton E. Schaefer  <schaefer@zsh.org>

	* 32971 (plus doc tweak): Doc/Zsh/prompt.yo, Src/prompt.c:
	negative argument with %(l..) conditional and with %<< or %>>
	truncation calculates space available before right margin
	(positive argument still counts space used since left margin).

2014-08-06  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted, see 32968: Completion/openSUSE/Command/.distfiles
	Completion/openSUSE/Command/_SuSEconfig ->
	Completion/openSUSE/Command/_SUSEconfig: rename file.

2014-08-04  Barton E. Schaefer  <schaefer@zsh.org>

	* Miles Ohlrich: 32958: Src/Zle/compctl.c: bitwise logic fix

2014-08-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32954: Doc/Zsh/expn.yo: missed this.

	* 32954 (plus new test): Src/cond.c, Test/D02glob.ztst:
	(#q) on patterns with [[ ... = ... ] and [[ ... != ... ]]
	shouldn't force a glob, it should simply be ignored.

	* unposted: Src/subst.c:  remove unused variables.

2014-08-04  Mikael Magnusson  <mikachu@gmail.com>

	* 32949 (wip 32928, 32937): Doc/Zsh/expn.yo, Src/subst.c,
	Test/D04parameter.ztst: Add :^ and :^^ for zipping arrays.

2014-08-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32944: Doc/Zsh/builtins.yo: read -qs is handled properly.

	* users/19006: Doc/Zsh/expn.yo: document position of
	RC_EXPAND_PARAM handling during parameter substitution.

2014-08-01  Peter Stephenson  <p.stephenson@samsung.com>

	* 32932: Src/glob.c, Src/utils.c: add hmkarray() and
	use to fix leak.

2014-07-31  Barton E. Schaefer  <schaefer@zsh.org>

	* 32931: Src/glob.c: with NO_NOMATCH, using a subscript glob
	qualifier on a not-matching pattern should still return the
	original pattern

2014-07-30  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Src/Builtins/sched.c, Src/Modules/datetime.c,
	Src/Modules/stat.c: missed updates to ztrftime().

	* 32919: Doc/Zsh/tcpsys.yo Functions/TCP/tcp_output: %P
	at start of prompt in TCP function system causes standard
	%-style substitution.

	* 32918: Doc/Zsh/prompt.yo, Src/builtin.c,Src/prompt.c,
	Src/utils.c, Src/watch.c: add ability to display times with
	fractions of a second in prompts.

2014-07-28  Barton E. Schaefer  <schaefer@zsh.org>

	* 32593: Completion/Unix/Command/_qemu: update --vga option

2014-07-26  Axel Beckert  <abe@deuxchevaux.org>

	* Omari Norman: 32817: Add completion for moosic.

	* Sebastian Ramacher: 32816: Add completion for bpython and
	variants.

	* 32911: Expand bpython completion to bpython2 and bpython3.

2014-07-26  Barton E. Schaefer  <schaefer@zsh.org>

	* 32910: Src/mkmakemod.sh: quiet update of timestamp files

2014-07-24  Barton E. Schaefer  <schaefer@zsh.org>

	* 32853: configure.ac, Src/mem.c, Src/zsh_system.h: redefine
	the VARARR() macro to use heap rather than stack allocation;
	enable old behavior via "configure --with-stack-allocation"

	* unposted (see 32892): Src/builtins.c: 'fc -I' is an error

	* 32903: Src/Modules/parameter.c: new empty (unset) elements in
	the special parameter hash tables are special themselves, so that
	adding elements via assignment syntax handles them correctly.

2014-07-24  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Functions/Zle/replace-argument, Doc/Zsh/contrib.yo:
	allow negative numeric prefix to count backwards from last
	argument.

2014-07-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jai Keerthan: users/18981: Completion/Unix/Command/_tmux:
	improved function completion.

2014-07-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 32898 (credit Jun T.): Doc/Zsh/mod_pcre.yo: fix bug in 32891.

2014-07-23  Ansgar Burchardt  <ansgar@debian.org>

	* 32895: Completion/Unix/Command/_nm: Match more shared library
	names.

2014-07-20  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/builtins.yo: force retention of whitespace
	in "fc" item prototype

	* 32891: Doc/Zsh/mod_pcre.yo Src/Modules/pcre.c: the CASE_MATCH
	option should apply to =~ when using pcre; fix pcre_match bug
	with handling of empty string argument.

2014-07-17  Barton E. Schaefer  <schaefer@zsh.org>

	* 32882 (cf. Augie Fackler 32879): Src/hist.c: restore correct
	reload of backslash-continuation lines from history, broken by
	workers/30443 just before the zsh 5.0.0 release; fix bad history
	write of events ending with an even number of backslashes.

2014-07-17  Oliver Kiddle  <opk@zsh.org>

	* 32849: Completion/Linux/Command/_ss: new completion function

	* 32848: Completion/Unix/Command/_perl,
	Completion/Unix/Command/_python, Completion/Unix/Command/_ruby:
	fix words array before using _normal for script arguments

2014-07-17  Peter Stephenson  <p.stephenson@samsung.com>

	* 32866 (plus extra undo fix in read-from-minibuffer):
	Doc/Zsh/contrib.yo, Functions/Zle/read-from-minibuffer,
	Functions/Zle/replace-argument: new replace-argument function;
	fixes in read-from-minibuffer not to pass through numeric
	argument to recursive edit and to hide minibuffer edit from
	undo history.

2014-07-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Koen Wilde: 32863:  Completion/Unix/Command/_mpc: mpc "insert"
	command.

2014-07-08  Peter Stephenson  <p.stephenson@samsung.com>

	* Dominic Hopf: 32837: Config/defs.mk.in: improve handling of
	installation location for help directories.

	* 32832: Doc/Zsh/grammar.yo Doc/Zsh/params.yo: attempt to
	improve documentation for how assignment works.

2014-07-03  Axel Beckert  <abe@deuxchevaux.org>

	* Felipe Sateler: 32819: Completion/Debian/Command/_axi-cache:
	Update for axi-cache completion.

	* Vincent Lefevre: 32818: Completion/Unix/Command/_gzip:
	--rsyncable option is missing

	* Daniel Bolton: 32815: Completion/Debian/Command/_aptitude:
	missing resolver options

	* Sebastian Ramacher: 32814: Completion/Debian/Command/_dpkg:
	Add --add-architecture, --remove-architecture, and
	--print-foreign-architectures options.

2014-07-03  Mikael Magnusson  <mikachu@gmail.com>

	* 32821: Completion/Unix/Command/_gcc: Update _gcc as of GCC
	4.8.3 for generic options and x86.

2014-07-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 32833: Completion/Unix/Command/_python,
	Completion/Unix/Command/_ruby: complete file arguments as for
	perl.

2014-06-30  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 32823: Completion/Unix/Command/_perl: complete file
	instead of script after -e.

2014-06-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 32812: Doc/zsh.yo, Doc/ztexi.yo: put table of contents
	at front of manual.

2014-06-26  Peter Stephenson  <p.stephenson@samsung.com>

	* 32799: Doc/Zsh/builtins.yo, Src/Builtins/rlimits.c: resource
	NTHR is not properly handled on netBSD.

2014-06-24  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32789: Src/lex.c Src/mem.c Src/zsh_system.h configure.ac:
	--enable-zsh-valgrind allows valgrind to analyse heap
	allocations.

2014-06-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 32781: Doc/Zsh/options.yo: source builtin and path
	search doc.

2014-06-14  Jun T  <takimoto-j@kba.biglobe.ne.jp>

	* 32779: Doc/Zsh/options.yo: fix a typo in options.yo

2014-06-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32768, with further modifications: Doc/Zsh/options.yo,
	Src/exec.c, Src/options.c, 	Src/zsh.h, Test/E01options.ztst,
	Test/ztst.zsh:  LOCAL_LOOPS option to restrict effect of
	continue and break in function scope.

	* 32666: Doc/Zsh/compat.yo: shell emulation based on executable
	name incompletely documented.

2014-06-11  Barton E. Schaefer  <schaefer@zsh.org>

	* Jun T: 32767: Src/glob.c: another spot to tweak bracechardots()

2014-06-10  Barton E. Schaefer  <schaefer@zsh.org>

	* 32766: Src/glob.c: bracechardots() agrees with xpandbraces()
	about what constitutes a {C1..C2} pattern, thus preventing crash

	* Jun T: 32765: Src/glob.c: fix build when not MULTIBYTE_SUPPORT

2014-06-09  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T: 32755: Doc/Zsh/grammar.yo: move line that was in the
	wrong place.

2014-06-07  Barton E. Schaefer  <schaefer@zsh.org>

	* Nikolas Garofil: 32737: Src/utils.c: properly ifdef declarations

	* Nikolas Garofil: 32736 (tweak per 32741): Src/zsh_system.h:
	memmove() should return its dest argument

	* Nikolas Garofil: 32735: Src/signals.c: define ret before use

	* Nikolas Garofil: 32734: Src/mem.c: remove unused pointers

	* Nikolas Garofil: 32733: Src/prototypes.h: use size_t in bcopy()

	* Nikolas Garofil: 32732 (tweak per 32739): Src/compat.c: fix
	const declaration inconsistency

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

	* Jun T: 32719: Doc/Zsh/contrib.yo: minor issues.

	* Jun T: 32715: Doc/Zsh/calsys.yo, Doc/Zsh/grammar.yo,
	Doc/Zsh/zle.yo: formatting fixes.

	* 32682 with tweaks: Doc/Zsh/options.yo, Src/hist.c,
	Src/options.c, Src/zsh.h: INC_APPEND_HISTORY_TIME is new
	behaviour, with INC_APPEND_HISTORY reverting to its previous
	behaviour.

	* Andrew Magee: 32698: Completion/Unix/Command/_hg: show
	committable files.

2014-06-05  Barton E. Schaefer  <schaefer@zsh.org>

	* 32723: Src/glob.c: add braces around some if/else branches

	* 32716 (via Jun T. 31714): Src/utils.c: properly test iconv
	return values for error conditions

2014-06-04  Barton E. Schaefer  <schaefer@zsh.org>

	* 32711: Test/A07control.ztst: run "continue" test in a new
	shell, lest it inadvertently continue the loop that reads the
	test chunks from this file

	* Daniel Shahaf: 32708: Doc/Zsh/expn.yo, Src/glob.c,
	Test/D02glob.ztst: glob qualifier (Y) implies (oN), plus
	incidental patch to avoid adding a meaningless bitvalue to
	sort-order flags

2014-06-03  Barton E. Schaefer  <schaefer@zsh.org>

	* Daniel Shahaf: 32694: Completion/Zsh/Type/_globquals,
	Doc/Zsh/expn.yo, Src/glob.c, Test/D02glob.ztst: the number
	of matches to find is the suffix argument of (Y) qualifier

2014-06-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 32681: Doc/Zsh/zle.yo: formatting issue.

2014-06-03  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Src/cond.c: restore cond_match() in case used in
	modules.

2014-06-02  Barton E. Schaefer  <schaefer@zsh.org>

	* 32656 (via Jun T. via waltarix on github): when __APPLE__ is
	defined at compile, normalize Unicode filenames in zreaddir()

2014-06-02  Peter Stephenson  <p.stephenson@samsung.com>

	* Daniel Shahaf: users/18870: Src/glob.c, Test/D02glob.ztst:
	glob scanner needed some coaxing with counting matches with (Y)
	glob qualifier.

2014-06-02  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 32662: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info git: Fix stagedstr for empty repos

2014-06-01  Barton E. Schaefer  <schaefer@zsh.org>

	* 32653: Completion/Unix/Command/_php: complete files with the
	".phar" extension as well as ".php", and respect the suffixes
	zstyle to change this

	* 32634 (plus doc): Doc/Zsh/options.yo, Doc/Zsh/params.yo,
	Src/init.c, Src/options.c, Src/params.c, Src/zsh.h: add the
	POSIX_ARGZERO option to allow toggling between the original
	value of $0 and the value set by FUNCTION_ARGZERO

	* Daniel Shahaf: users/18857: Doc/Zsh/expn.yo, Src/glob.c,
	Test/D02glob.ztst: add (Y) glob qualifier

2014-06-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32640: Doc/Zsh/cond.yo, Doc/Zsh/expn.yo, NEWS, Src/cond.c,
	Src/glob.c, Test/D02glob.ztst: (#q) with EXTENDED_GLOB forces
	globbing in [[ ... ]].

2014-05-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32624:  Src/builtin.c, Src/jobs.c: use correct scaling factor
	(clock ticks) for times.

	* Keerthan Jai: users/18860: Completion/Unix/Command/_man: man
	-M overrides manpath.

	* unposted: Src/params.c: use DIGBUFSIZE for pipestatus numeric
	buffer.

2014-05-29  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 32619: Functions/VCS_Info/Backends/VCS_INFO_get_data_svn:
	vcs_info svn: Use the revision of cwd

	* 32621: Functions/VCS_Info/Backends/VCS_INFO_get_data_svn:
	vcs_info svn: 'Fix set-branch-format' when in subdirs

	* 32620: Doc/Zsh/contrib.yo: Typo fix after commit eb4c70d

2014-05-18  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 32616: Src/Builtins/rlimits.c: unnecessary printf
	argument in limits on some systems.

2014-05-16  Peter Stephenson  <p.stephenson@samsung.com>

	* Roman Neuhauser: users/18827 (plus tweaks to original
	comments): Doc/Zsh/contrib.yo: more efficient way of extracting
	hg bookmarks.

2014-05-13  Barton E. Schaefer  <schaefer@zsh.org>

	* 32609: Src/parse.c, Test/CO2cond.ztst: [[ $var ]] behaves as
	[[ -n $var ]] for bash/ksh compatibility; restore ksh [ -t ]
	compatibility when POSIX_BUILTINS is not set; allow operators
	defined by modules to be called with no arguments, although
	this affects only runtime interpretation, not parsing.

2014-05-09  Peter Stephenson  <p.stephenson@samsung.com>

	* Eric Cook: 32602: Doc/Zsh/grammar.yo: status of try + always
	block is from the former, not the latter.

2014-05-08  Peter Stephenson  <p.stephenson@samsung.com>

	* m0viefreak: 32600: Src/Zle/computil.c: fix problem with
	_arguments thinking -- is a single letter option called '-',
	which it isn't.

2014-05-06  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 32597: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info git: Describe detached heads symbolically.

2014-04-29  Peter Stephenson  <p.stephenson@samsung.com>

	* Tomoki Sekiyama: 32592: add CORRECT_IGNORE_FILE variable.

2014-04-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Sebastien Alaiwan: 32562: Completion/Unix/Command/_bzr:
	updates for bzr completion.

	* Jasper Lievisse Adriaanse: 32558: configure.ac:
	_XOPEN_SOURCE_EXTENDED now works OK on OpenBSD.

2014-04-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 32580: Src/hist.c: avoid indefinite wait in lockhistfile() by
	checking for lock file time stamp far in the future relative to
	the local clock.  Change behavior of HIST_FCNTL_LOCK to use only
	fcntl() locking, rather than applying both kinds of lock.

2014-04-20  Barton E. Schaefer  <schaefer@zsh.org>

	* 32569: Src/loop.c: lastval ($?) should not be reset between
	word list substitution and loop body execution in for/select.

	* 32568: Src/exec.c, Src/loop.c: consistency in handling of errflag
	condition during substitutions in for/select word lists, function
	definition name position, and anonymous function argument lists.

2014-04-17  Barton E. Schaefer  <schaefer@zsh.org>

	* Andrew Waldron: 32552 (updated by 32560): Src/exec.c,
	Src/parse.c, Src/subst.c, Test/C04funcdef.ztst:  fix segfault
	when using process substitution in anonymous function argument
	list; disallow process substitution in function name position.

2014-04-15  Barton E. Schaefer  <schaefer@zsh.org>

	* Jun T: 32546: Completion/Unix/Type/_path_files: better handling
	of ignored files when using -W to specify prefixes.

2014-04-13  Barton E. Schaefer  <schaefer@zsh.org>

	* 32540: Src/Zle/zle_tricky.c, Src/Zle/zle_utils.c: following
	successful history expansion, discard saved line position data
	rather than restoring from it (updates 32531).

2014-04-07  Peter Stephenson  <p.stephenson@samsung.com>

	* 32527: Doc/Zsh/contrib.yo, Functions/Misc/zcalc,
	Functions/Zle/zcalc-auto-insert: zcalc-auto-insert widget
	for key binding in zcalc.

2014-04-06  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/options.yo: fix typo in option cross-reference

	* 32531: Src/Zle/zle_refresh.c, Src/Zle/zle_tricky.c, Src/hist.c:
	fix memory leaks detected by valgrind, two in ZLE region highlight
	and one in :A history modifier.

2014-04-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Sebastian Ramacher: 32533: Completion/Debian/Command/_apt: add
	completion for "apt-mark".

	* Alessandro Ghedini: 32532: Completion/Debian/Command/_apt:
	support 'apt' command.

	* 32530: llua: Completion/Unix/Command/_zfs: repeatable -o
	argument.

	* 32521: Doc/Zsh/params.yo: document that LOGNAME comes
	from getlogin().

2014-04-05  Daniel Shahaf  <d.s@daniel.shahaf.name>

	* 32528: Completion/Zsh/Command/_zstyle, Doc/Zsh/contrib.yo,
	Functions/VCS_Info/Backends/VCS_INFO_get_data_git,
	Misc/vcs_info-examples: vcs_info: Add check-for-staged-changes

	* 32528: Doc/Zsh/contrib.yo: vcs_info: Document 'post-backend'
	hook and bzr 'check-for-changes' support.

2014-03-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Danek Duvall: 32505: Completion/Unix/Command/_pgrep: improved
	Solaris compatibility for pgrep completion.

2014-03-23  Barton E. Schaefer  <schaefer@zsh.org>

	* m0viefreak: users/18660: Src/Zle/compresult.c,
	Src/Zle/zle_misc.c, Src/Zle/zle_refresh.c: fix auto-removable
	suffix highlighting

	* m0viefreak: users/18657: Completion/Unix/Command/_git: fix
	compadd for auto-removable suffix in _git_stash

	* m0viefreak: users/18655: Completion/Unix/Command/_git: fix
	compadd for auto-removable suffix in _git_commit_ranges

2014-03-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Takeshi Banse: 32502: Completion/Unix/Command/_git: fix typo
	in argument list.

2014-03-20  Peter Stephenson  <p.stephenson@samsung.com>

	* users/18644: Doc/Zsh/zle.yo: bindkey -s doc should refer to
	documentation for argument interpretation.

	* Completion/Unix/Command/_perforce: finally, after more than
	ten years, complete depots after // in file paths as it always
	should have done.

2014-03-18  Barton E. Schaefer  <schaefer@zsh.org>

	* 32500: Src/pattern.c: handle interrupts during pattern matching

	* Jun T: 32497: Test/X02zlevi.ztst, Test/comptest: avoid using
	comptesteval in the middle of a series of tests; the change in
	control required for sourcing the command file can confuse the
	simulated interactive input

2014-03-17  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T: 32494: Doc/zman.yo: Yodl hack to fix indentation
	in nroff -man output.

	* Jun T: 32493: Doc/Zsh/contrib.yo, Doc/Zsh/mod_pcre.yo,
	Doc/Zsh/mod_regex.yo, Doc/Zsh/mod_sched.yo: some formatting
	fixes.

2014-03-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Mariusz Fik: 32847: Completion/openSUSE/Command/_zypper: new
	options.

2014-03-14  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Doc/Zsh/options.yo: document effect of 32479.

	* Jun T: 32482: Doc/zman.yo: fix character translation table
	usage with some versions of Yodl.

2014-03-14  Peter Stephenson  <p.stephenson@samsung.com>

	* 32479: Src/builtin.c, Src/signals.c: with POSIXTRAPS
	never propagate an implicit return from within a trap.

2014-03-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Kosuke Asami: 32473: Completion/Unix/Command/_pgrep: tidy up

	* Kosuke Asami: 32471: Completion/Unix/Command/_pgrep: handle
	BSD process options.

	* Kosuke Asami: 32472: Completion/Unix/Command/_pgrep: new options.

2014-03-13  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T: 32480: Src/Zle/zle_vi.c: fix crash in vi mode when too
	few previous changes.

2014-03-09  Barton E. Schaefer  <schaefer@zsh.org>

	* 32468: Src/Modules/zutil.c: save/restore match/mbegin/mend
	when doing pattern lookups against zstyle contexts

2014-03-03  Barton E. Schaefer  <schaefer@zsh.org>

	* users/18550: Doc/Zsh/compsys.yo: matcher-list clarifications

2014-03-03  Simon Ruderich  <simon@ruderich.org>

	* 32289: Doc: Add zsh version to footer in HTML documentation.

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

	* 32441: Completion/Base/Completer/_extensions, Doc/Zsh/compsys.yo:
	add completer for file extensions

	* 32450: Src/Zle/zle_hist.c: make get-line set the history
	number that was saved with the line

	* 32448: Src/Zle/zle_params.c: fix seg fault after recursive-edit

	* 32439 (with Yuri D'Elia): Completion/Base/Core/_main_complete:
	add new show-ambiguity style

	* 32436: Src/Zle/complist.c: allow = to be used in ZLS_COLORS
	patterns if it is quoted or inside parentheses

2014-03-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32453: Functions/Misc/zcalc: fix default base handling.

	* Manuel Presnitz: 32412 modified c.f. 32415:
	Completion/Zsh/Type/_globquals, Doc/Zsh/expn.yo, Src/glob.c,
	Src/zsh.h: gigabyte and terabyte units for glob qualifiers.

2014-02-28  Peter Stephenson  <p.stephenson@samsung.com>

	* users/18531 plus doc etc.: Doc/Zsh/contrib.yo,
	Functions/Zle/.distfiles, Functions/Zle/expand-absolute-path:
	new expand-absolute-path ZLE widget.

2014-02-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 32435: Completion/Base/Core/_description,
	Completion/Unix/Command/_rm: improved quoting for ignore-line
	style.

2014-02-24  Oliver Kiddle  <opk@zsh.org>

	* unposted: Doc/Zsh/compsys.yo: fix typo

	* unposted: Completion/X/Command/_x_utils: duplicate local
	statement was printing variable value

	* users/18498: Completion/Base/Completer/_expand_alias: observe
	add-space style in _expand_alias so suffix can be disabled

	* users/18485: Completion/Unix/Command/_git: add .. as an
	auto-removable suffix in git revision ranges

2014-02-24  Peter Stephenson  <p.stephenson@samsung.com>

	* Hong Xu: 32492: Completion/Unix/Command/_npm: fix outdated
	completion.

	* Sebastien Alaiwan: 32462: Completion/Unix/Command/_bzr:
	improve completion with directory path.

2014-02-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 32427: Doc/Zsh/zle.yo, Src/Zle/zle_main.c: avoid busy loop
	on closed descriptors for "zle -F" handlers.  Assure that the
	handlers are called on error conditions and document the extra
	argument that is passed in the error case.

2014-02-19  Peter Stephenson  <p.stephenson@samsung.com>

	* 32414: Src/glob.c: improved error message for missing glob
	qualifier delimiters.

2014-02-18  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Eric Cook: 32408: Completion/Linux/Command/_btrfs: additional
	completions

	* Eric Cook: 32409: Completion/Linux/Command/_btrfs: updated
	completion for subcommands.

	* Eric Cook: 32411: Completion/Linux/Command/_btrfs: minor typo.

	* Eric Cook: 32410: Completion/Linux/Command/_btrfs: remove hard tabs.

	* m0viefreak: Util/helpfiles: 32402: prefer col -bx to colcrt.

	* m0viefreak: Util/helpfiles: 32405: Util/helpfiles: remove old
	example now shell code is integrated in distribution.

	* m0viefreak: 32404: Util/helpfiles: use env to find perl.

	* m0viefreak: 32403: Doc/Zsh/contrib.yo: update zshcontrib
	manual for helpfiles improvements.

2014-02-18  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 32396: Completion/Unix/Command/_git: _git: fix
	__git_committish_range_{first,last} and __git_is_committish_range

	* 32395: Completion/Unix/Command/_git: _git: diff: refactor and
	fix wrong completions

	* 32397: Completion/Unix/Command/_git: _git: fix __git_submodules
	to only use the actual name of the submodule

	* 32398: Completion/Unix/Command/_git: _git: completion updates up
	to latest git v1.9.0

2014-02-17  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted (users/18468): Doc/Zsh/builtins.yo, Doc/Zsh/params.yo:
	document interactions of "fc -R" etc. with "fc -l" and $HISTCMD

2014-02-15  Barton E. Schaefer  <schaefer@zsh.org>

	* 32389 (with Jun Takimoto): Test/X02zlevi.ztst, Test/comptest:
	additional PTY and keybinding adjustments

	* 32388: Doc/Zsh/mod_zutil.yo, Src/Modules/zutil.c: zparseopts -K
	preserves individual associative array elements

2014-02-14  Oliver Kiddle  <opk@zsh.org>

	* 32361: Src/Zle/zle_tricky.c: don't reset lastline before completion

2014-02-13  Barton E. Schaefer  <schaefer@zsh.org>

	* 32377: Test/comptest: change keybindings and PTY control for
	vi-mode tests to make them more reliable

2014-02-08  Barton E. Schaefer  <schaefer@zsh.org>

	* 32365: Src/Zle/zle_refresh.c, Src/init.c: another stab at the
	heuristic for initializing rprompt_indent

2014-02-07  Peter Stephenson  <p.stephenson@samsung.com>

	* Martin Vaeth: 32356: Util/helpfiles: fix a typo.

2014-02-05  Oliver Kiddle  <opk@zsh.org>

	* 32355: Doc/Zsh/zle.yo Test/X02zlevi.ztst Test/comptest: document
	and test vi mode undo changes

	* 32342: Src/Zle/zle_main.c, Src/Zle/zle_vi.c: fix overstrike for vi
	mode and use varying vi commands at line start

	* 32334 (modified so KEEPSUFFIX is unchanged for vi-cmd-mode; based on
	Jun T: 32324, 32330), 32347, Jun T: 32344, 32349: Src/Zle/iwidgets.list,
	Src/Zle/zle_main.c, Src/Zle/zle_utils.c, Src/Zle/zle_vi.c
	add split-undo zle widget for configurable breaks in undo sequence

2014-02-02  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/builtins.yo, Doc/Zsh/expn.yo,
	Doc/Zsh/roadmap.yo: tweak index markers and related whitespace
	to make appearance consistent with other pages

	* 32341: Src/init.c: guess at best ZLE_RPROMPT_INDENT based on
	termcap/terminfo description

	* unposted: Src/Zle/zle_tricky.c: whitespace in comment

	* 32340: Src/init.c, Src/Zle/compctl.c:  add specifics to error
	messages explaining failure of "read -c" / "read -l".

	* 32338: Doc/Makefile.in: create Doc/help.txt as an empty file
	when Util/helpfiles fails, so that the rest of the build does not
	yeild a spurious error

	* 32337: Src/params.c: initialize several special parameters to
	unset for better compatibility in emulation modes; for the same
	reason, remove the readonly flag from $_

2014-01-31  Oliver Kiddle  <opk@zsh.org>

	* 32314: Src/Zle/zle_main.c, Src/Zle/zle_tricky.c,
	Src/Zle/zle_utils.c, Src/Zle/zle_vi.c: merge undo events
	corresponding to vi change in the vi-cmd-mode widget so undo from
	insert mode is useful again

2014-01-30  Barton E. Schaefer  <schaefer@zsh.org>

	* 32322: Completion/Base/Core/_main_complete: display a message
	when completion is interrupted from the keyboard

2014-01-30  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T: 32300: Completion/Unix/Command/_od: +
	Completion/Unix/Command/.distfiles: new completion.

2014-01-29  Peter Stephenson  <p.stephenson@samsung.com>

	* Christian Hesse: 32316: Completion/Unix/Command/_ssh: complete
	new ssh key type.

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

	* 32303: Src/Zle/compcore.c, Completion/Zsh/Type/_parameters,
	Completion/Zsh/Context/_brace_parameter: allow completion
	of modifiers for parameters in a fairly simplistic way.

2014-01-28  Peter Stephenson  <p.stephenson@samsung.com>

	* 32308 (slightly modified to use "a" as the vi command at start
	of line): Src/Zle/zle_main.c, Src/Zle/zle_vi.c: improve
	initialising of vi mode change when entering viins at start of
	editing.

2014-01-27  Barton E. Schaefer  <schaefer@zsh.org>

	* users/18368: Completion/Unix/Command/_git: in __git_files,
	retry ls-files if nothing matched the prefix pattern, to give
	_multi_parts a shot at the whole file list.  Restores partial
	 path completion inadvertently removed by 31159.

2014-01-27  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Src/zsh.mdd: update 31983 to suppress stdout from
	cmp, too.

2014-01-23  Bart Schaefer  <schaefer@zsh.org>

	* unposted: Doc/Zsh/arith.yo: use LPAR()+RPAR() instead of parens
	in sqrt example

2014-01-23  Peter Stephenson  <p.stephenson@samsung.com>

	* 32299: Doc/Zsh/arith.yo, Functions/Misc/zcalc, Src/math.c,
	Src/params.c, Src/subst.c, Test/C01arith.ztst: add
	ability to use "_" at the end of a [#] arithmetic expression
	to get underscores to space numeric output.

2014-01-22  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Src/mem.c: reformulate 32285 to lift the fheap->sp
	test out of the loop, improve commentary

2014-01-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 32294 (plus typo fix): Src/utils.c: prevent buffer overflow when
	scanning very long directory paths for symbolic links

	* users/18335: Completion/Zsh/Command/_typeset: avoid passing to
	"functions" those typeset options that it does not accept

2014-01-18  Barton E. Schaefer  <schaefer@zsh.org>

	* 32285: Src/mem.c (freeheap): when the last-arena-with-free-space
	pointer (fheap) points to an arena that is going to be discarded
	because it has become empty, loop back through the entire linked
	list of arenas to find another partly-filled arena; fixes crash
	wherein pushheap followed by freeheap could orphan the whole list
	of arenas in some circumstances

	* 32283: Src/Zle/complist.c: avoid using a negative number for
	available vertical space when the terminal has only a small number
	of lines; fixes crash in menu selection

2014-01-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Daniel Hahler: 32271: Doc/Zsh/compsys.yo: fix matcher list
	example.

2014-01-17  Peter Stephenson  <p.stephenson@samsung.com>

	* sergio: 32267: Completion/Linux/Command/_modutils: modinfo may
	not be in user's path, so use explicit path as already done for lsmod.

2014-01-17  Frank Terbeck  <ft@bewatermyfriend.org>

	* 32264: Functions/VCS_Info/Backends/VCS_INFO_detect_hg: vcs_info,
	hg: Support detecting repos using ShareExtension

2014-01-16  Barton E. Schaefer  <schaefer@zsh.org>

	* Thomas Mitterfellner: 32265: Completion/openSUSE/Command/_zypper:
	better handling of large lists of packages

2014-01-16  Peter Stephenson  <p.stephenson@samsung.com>

	*  Holger Macht: 32257: Completion/openSUSE/Command/_zypper:
	updates.

2014-01-14  Peter Stephenson  <p.stephenson@samsung.com>

	* 32255: Completion/Unix/Command/_python: complete for Python
	with command names python2.4 ... python3.4.

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

	* 32246: Doc/Zsh/builtins.yo, Src/builtin.c, Test/.distfiles,
	Test/B08shift.ztst: add "shift -p" to pop arguments from the end
	of arrays.

2014-01-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Koen Wilde: 32245: Completion/Unix/Command/_mpc: complete more
	arguments.

2014-01-09  Peter Stephenson  <p.stephenson@samsung.com>

	* users/18298 (tidied up): Doc/Zsh/expn.yo, Src/glob.c,
	Test/D09brace.ztst: add {<char>..<char>} expansion.

2014-01-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Mark Oteiza: 32238: suppress error output completing after ip.

2014-01-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk: update to 5.0.5-dev-0 to avoid
	installation clash with 5.0.5 release.

2014-01-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk, Doc/Zsh/compsys.yo: update
	release to 5.0.5 and correct typo in compsys.yo making texinfo
	format unusable.

	* unposted but c.f. 32231: Doc/Zsh/compsys.yo: the parameter
	'line' doesn't include the original command.

	* Jun T: 32231: Completion/Unix/Command/_chmod: was confused by
	options before the mode argument.

	* Axel Beckert: 32229: LICENCE: was not correctly referring to
	Gnu General Public License.

2014-01-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: README: update another reference to 5.0.5.

	* users/18271 plus some additional rewriting: Etc/FAQ.yo: add
	FAQ entry to explain pattern exclusions.

	* unposted: README, Etc/FAQ.yo: update source documentation for
	5.0.5.

2014-01-02  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Danek Duvall: 32216: Completion/Solaris/Command/_svcadm,
	Completion/Solaris/Command/_zoneadm,
	Completion/Unix/Command/_zfs, Completion/Unix/Command/_zpool,
	Completion/Unix/Type/_zfs_dataset: updates for Solaris 11,
	Update 1.

	* 32196: Carl Drougge: Src/Zle/zle_misc.c: copy-prev-shell-word
	needs an extra flag to work properly.

2013-12-31  Barton E. Schaefer  <schaefer@zsh.org>

	* Eric Cook: 32210: Completion/Linux/Command/_sysstat: completion
	for mpstat, iostat, etc.

2013-12-30  Barton E. Schaefer  <schaefer@zsh.org>

	* 32208: Src/params.c: always reset pathchecked when the path
	array is modified in arrvarsetfn(), to avoid bad dereference

	* 32205: Completion/Zsh/Command/_cd: skip cdpath search when
	the prefix begins with "../" (bug introduced by 31714)

	* unposted (cf. Carlo: 32202): MACHINES: OS X 10.9.1. gcc problem

2013-12-28  Barton E. Schaefer  <schaefer@zsh.org>

	* 32190 (cf. Alexey Bezhan: 32189): Completion/Zsh/Command/_cd:
	quote _path_files -W path in case of spaces or special characters
	when completing relative to ../

	* 32186: Completion/Base/Completer/_expand: fix bad backreference;
	handle glob patterns that include backslashed quote characters

2013-12-26  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted (cf. Jun Takimoto: 32184): Test/comptest,
	Test/Y01completion.ztst: back 32183 out of comptest and instead
	reset path in the individual tests in Y01completion.ztst

2013-12-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 32183: Test/comptest, Test/Y01completion.ztst: regression tests
	for 32182 and 31611

	* 32182: Src/Zle/zle_tricky.c: re-enable command completion after
	a separator (tweak to 31611)

	* 32178: Src/jobs.c: fix another acquire_pgrp() infinite loop

2013-12-21  Barton E. Schaefer  <schaefer@zsh.org>

	* PWS + Bart: 32176: plug additional descriptor leaks causing
	deadlock via different code paths; expand regression test

2013-12-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Config/version.mk: update version to 5.0.4-dev-0 so as
	not to clash with release.

2013-12-20  Barton E. Schaefer  <schaefer@zsh.org>

	* 32172; Test/A05execution.ztst: regression test for 32171

	* 32171: Src/exec.c: fix leaked pipe descriptor that could
	deadlock a pipeline from a complex shell construct or function
	into an external command

2013-12-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk, Etc/FAQ.yo, README: release 5.0.4.

2013-12-18  Barton E. Schaefer  <schaefer@zsh.org>

	* 32157: Doc/Zsh/params.yo, Src/Zle/zle_refresh.c, Src/init.c,
	Src/params.c: make ZLE_RPROMPT_INDENT a special variable tied to
	an internal C global, to avoid having the shell variable value
	fetched on every keystroke and to make it available when testing
	how to reposition the cursor after the right-prompt is output.
	Fixes erasure in completion listing when ZLE_RPROMPT_INDENT=0.

	* 32150: Completion/compaudit: Reference loop variable rather
	than absolute path in executable ownership test

2013-12-17  Phil Pennock  <pdpennock@users.sourceforge.net>

	* 32143: INSTALL: Fix --enable-custom-patchlevel name in INSTALL

2013-12-16  Barton E. Schaefer  <schaefer@zsh.org>

	* Jun Takimoto: 32137: Test/comptest: set pseudo-terminal speed to
	prevent padding characters which confuse output parsing.

2013-12-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32136: Src/pattern.c, Src/zsh.h, Test/D02glob.ztst:
	fix problem with +*, @*, !* when kshglob is set introduced
	by pattern disable feature.

	* unposted: NEWS: add ZLE_PROMPT_INDENT.

	* 32119: Src/Zle/zle_tricky.c: left square bracket completed in
	command position is not part of a subscript expression

	* Patrick Oscity + pws: 32114: Doc/Zsh/params.yo,
	Src/Zle/zle_refresh.c: ZLE_RPROMPT_INDENT allows you to make the
	right prompt flush if your terminal supports it.

2013-12-16  Barton E. Schaefer  <schaefer@zsh.org>

	* Jun Takimoto + Bart: 32131: Src/Modules/zpty.c: avoid infinite
	loop reading pseudo-terminal on platforms that do not buffer pty
	contents after child process exits

2013-12-15  Barton E. Schaefer  <schaefer@zsh.org>

	* users/18219: Completion/Zsh/Type/_command_names: compadd -Q for
	builtins, aliases, and reserved words to preserve special chars

2013-12-14  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: increment version to 5.0.3-dev-0 to avoid confusion
	with released 5.0.3.

	* unposted: version 5.0.3, finally.

2013-12-13  Barton E. Schaefer  <schaefer@zsh.org>

	* Martin Vaeth: 32105: Util/helpfiles: support all combinations of
	man or nroff with colcrt or col.

	* Aaron Peschel: 32103: Completion/Unix/Type/_hosts: parse
	host:port format in ssh known_hosts files.

2013-12-10  Barton E. Schaefer  <schaefer@zsh.org>

	* 32099: Src/init.c: fix pointer declaration to avoid compile
	time error when arithmetic on void * is not allowed.

2013-12-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/18210: Doc/Zsh/builtins.yo: document print -D better.

	* 32093: INSTALL: describe the dependency issues fixed
	by the doc bundle.

2013-12-09  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T.: 32056: Completion/Unix/Command/_iconv: Handle
	different versions of iconv.

2013-12-06  Peter Stephenson  <p.stephenson@samsung.com>

	* Daniel Shahaf: 32091: Src/exec.c, Test/E01options.ztst:
	WARN_CREATE_GLOBAL false positive for assignment before
	commands.

2013-12-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Daniel Shahaf: 32089:
	Functions/VCS_Info/Backends/VCS_INFO_detect_svn: tweak for
	detecting Subversion repository.

2013-12-02  Barton E. Schaefer  <schaefer@zsh.org>

	* 32080 (plus unposted second instance of same):
	Test/A05execution.ztst: suppress any error output from
	nonessential "setopt MONITOR"

2013-12-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk: 5.0.2-test-3.

2013-11-30  Barton E. Schaefer  <schaefer@zsh.org>

	* Hong Xu: 32069: Completion/Unix/Command/_git: completion for
	"git submodule update --remote"

2013-11-29  Barton E. Schaefer  <schaefer@zsh.org>

	* 32066 (via 31985 Clemens Hammacher and 32064 Hong Xu):
	Functions/VCS_Info/Backends/VCS_INFO_get_data_git,
	Functions/VCS_Info/VCS_INFO_reposub: fix %r and %S in vcs_info
	formats when a repository subdirectory is accessed via a symlink.

2013-11-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 32061: Src/utils.c: Fix "use of uninitialized memory" in metafy

2013-11-27  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted, see 32054 and thread:
	Completion/Unix/Command/_cdrdao, Completion/Unix/Command/_git,
	Completion/Unix/Command/_growisofs, Etc/ChangeLog-3.0,
	Etc/ChangeLog-3.1, LICENCE, Src/Modules/clone.c,
	Src/Modules/example.c, Src/module.c: Rationalise character
	encodings: shell functions are strictly ASCII for maximum
	portability; other files needed for building and documentation
	are ASCII or UTF-8; test files may use ISO-8859-X (we don't
	require the Euro symbol) where needed to get single character
	input with the top bit set.

2013-11-25  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted, see 32050, 32051: remove non-ASCII characters in
	installed functions as this causes sed on MacOS problems.

2013-11-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Completion/Unix/Command/.distfiles,
	Config/version.mk: update for 5.0.2-test-2.

2013-11-25  Barton E. Schaefer  <schaefer@zsh.org>

	* 32045 (as corrected by Martin Vaeth 32047): Config/defs.mk.in,
	Doc/Makefile.in, configure.ac: use dependencies to determine
	whether to rebuild helpfiles.

2013-11-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32031 plus missed _run_help: Completion/Zsh/Command/_run-help,
	Config/defs.mk.in, Config/installfns.sh, Doc/Makefile.in,
	Functions/Misc/run-help, Makefile.in: turn @runhelpdir@ in
	installed functions into the actual installation path.

2013-11-20  Peter Stephenson  <p.stephenson@samsung.com>

	* 32030: revert 31995 as it caused (N) to fail on an empty
	failed glob.  Add test for this case.

2013-11-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 32023: Src/utils.c: better interrupt handling at RM_STAR_WAIT

2013-11-18  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted but see 32012: Doc/help/.cvsignore,
	Doc/help/.distfiles: were created in the wrong place, so move.

2013-11-18  Barton E. Schaefer  <schaefer@zsh.org>

	* Martin Vaeth: 32008: Completion/Zsh/Command/.distfiles
	Completion/Zsh/Command/_run-help Doc/Makefile.in: follow-up to
	31988 - complete "." and ":" for run-help, distribute _run-help,
	clean up better during make

	* Han Pingtian: 31995: Src/glob.c: glob	qualifiers cannot
	follow an empty pattern, so a leading paren means grouping

2013-11-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 32001: Src/subst.c: fix crash on empty arrays with array
	intersection and disjunction.

2013-11-15  Barton E. Schaefer  <schaefer@zsh.org>

	* Martin Vaeth: 31988: Doc/Makefile.in, Util/helpfiles: remove
	LC_CTYPE heuristics, assure clean environment, force LANG=C

2013-11-14  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T.: 31984: Completion/Unix/Command/_df: new completion.

	* 31983: Src/zsh.mdd: suppress warning from cmp that doesn't
	indicate a problem when generating patchlevel header.

	* 31982: Src/math.c, Test/C01arith.ztst: detection of floating
	point constants had run rampant in users/17445.  Fix the original
	problem another way.

2013-11-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31977: Src/module.c: no error if autoloading a feature that
	is already loaded in a consistent fashion.

	* Jun T.: 31971: locale fix for helpfiles.

	* Martin Vaeth: 31959: .gitignore, Doc/help/.cvsignore,
	Doc/help/.distfiles: missed files.

2013-11-12  Bart Schaefer  <schaefer@zsh.org>

	* 31966: Util/helpfiles: skip introductory paragraphs processing
	"man zshbuiltins" by assuming that all real command names start
	with a lower case letter.  Check "ztcp" file as a guess that all
	builtins were processed.

2013-11-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Martin Vaeth: 31959: .gitignore,
	Completion/Zsh/Command/_run-help, Doc/.cvsignore,
	Doc/.distfiles, Doc/Makefile.in, Makefile.in,
	StartupFiles/zshrc, Util/helpfiles, configure.ac: make help
	files during installation.

	* 31961: Src/Zle/zle.h, Src/Zle/zle_main.c,
	Src/Zle/zle_thingy.c: rationalise fd watch to use structures.

2013-11-08  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: fix ChangeLog to say 5.0.3 instead of 4.0.3.

	* unposted: NEWS: refer to zle -Fw.

	* 31940: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: add -e option
	to zcalc to use input from arguments to command.

2013-11-07  Peter Stephenson  <p.stephenson@samsung.com>

	* 31937: Doc/Zsh/zle.yo, Src/Zle/zle_main.c,
	Src/Zle/zle_thingy.c, Src/Zle/zle_utils.c, Src/math.c,
	Test/C01arith.ztst: zle -Fw uses widget semantics for
	file descriptor handler.

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

	* unposted: Completion/Debian/Command/.distfiles,
	Completion/Unix/Type/.distfiles, Config/version.mk, Etc/FAQ.yo,
	README, Src/pattern.c, Src/signals.c, Test/.distfiles: updates
	for 5.0.2-test-1 in preparation for 5.0.3.  Updated files
	in .distfiles and add mod_export declarations.

2013-11-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Stefan Neudorf: 31936: Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c: rationalise
	thread limits

	* Stefan Neudorf: 31935: Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c: further
	limit updates for 31930, 39134.

2013-10-31  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Stefan Neudorf: 31930 / 31934: Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c, configure.ac,
	Src/Builtins/rlimits.c:  New BSD limits; avoid clash with
	ulimit -k.

2013-10-29  Barton E. Schaefer  <schaefer@zsh.org>

	* 31929: Src/jobs.c: fix DPUTS3() test condition from 31906.

2013-10-28  Bart Schaefer  <schaefer@zsh.org>

	* unposted: NEWS: mention HISTORY_IGNORE

2013-10-28  Peter Stephenson  <p.stephenson@samsung.com>

	* 31922: Src/Zle/zle_utils.c (zlecharasstring): missing
	flip of bit five when Meta marker inserted.

2013-10-27  Barton E. Schaefer  <schaefer@zsh.org>

	* 31912: Src/exec.c: in closemn(), distinguish closing for >&-
	from closing for a real redirect.  Fixes knock-on multios bug
	introduced by workers/20666 way back in 2005.

	* unposted (cf. users/18063): Functions/Zle/keeper: clean up
	some syntax nits, add working link to old Unix Review article

	* 31919: Src/exec.c, Src/init.c: fix deadlock when a shell builtin
	with a multio redirection is used on the left side of a pipeline,
	by making sure stdin/out/err file descriptors are closed for the
	multio copy process, which means not re-using those descriptors
	after they are closed and marked FDT_UNUSED in fdtable[].  For
	completeness, initialize their fdtable[] state to FDT_EXTERNAL.

2013-10-27  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 31909: Completion/Unix/Command/_cat: new completion.

2013-10-26  Barton E. Schaefer  <schaefer@zsh.org>

	* 31906: Src/jobs.c, Test/A05execution.ztst: printjob() should not
	reference oldjobtab for job numbers unless it is being called from
	bin_fg().  Add a DPUTS check in case this goes horribly wrong.
	printjob() also must not attempt to update pipestats when called
	from bin_fg().  Finally, acquire_pgrp() cannot acquire the tty
	group leader if the shell is not interactive, so avoid looping
	infinitely in the attempt.  Update the $pipestatus stress test so
	that it also exercises the oldjobtab repair.

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

	* Jun T: 31902: rationalise gamma function in mathfunc for
	consistency with various libraries and user expectations.

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

	* 31890 (with Mikael's fixes in 31891): NEWS: add descriptions
	of new features since 5.0.2.

2013-10-24  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31889: Test/D02glob.ztst: tests for disable -p.

	* 31877: Src/pattern.c: fix behaviour of disable -p for
	entities with parentheses.

2013-10-24  Barton E. Schaefer  <schaefer@zsh.org>

	* 31885: Src/jobs.c: fix PIPEFAIL behavior when the last command
	in a pipeline is executed within the current shell; add comments

2013-10-24  Peter Stephenson  <p.stephenson@samsung.com>

	* 31888: Test/A05execution.ztst: add test of pipestatus
	that was reliably failing before 31879.

	* 31882: Src/Zle/compcore.c: better insulation of
	completion widget excecution against job environment.

	* 31884: Test/A05execution.ztst: eliminate variable output
	from test due to vagaries of uniq implementation.

2013-10-23  Barton E. Schaefer  <schaefer@zsh.org>

	* 31879: Src/jobs.c: improve $pipestatus behavior when the last
	command in the pipeline is executed within the current shell

	* unposted (cf. Frank Terbeck: 30047): Test/A05redirect.ztst:
	stress test for $pipestatus handling

2013-10-23  Peter Stephenson  <p.stephenson@samsung.com>

	* 31873: Doc/Zsh/builtins.yo: Document conventions for use of
	command options with builtin commands.

2013-10-21  Barton E. Schaefer  <schaefer@zsh.org>

	* 31869: Src/input.c: reduce WINCH-twaddling in shingetline()

2013-10-21  Øystein Walle  <oystwa@gmail.com>

	* 31861: Completion/Unix/Command/_git: _git: Add git-clean
	-i/--interactive support

	* 31863: Completion/Unix/Command/_git: _git: Add new arguments
	introduced in Git v1.8.4

	* 31862: Completion/Unix/Command/_git: _git: Add status.short and
	status.branch

	* 31866: Completion/Unix/Command/_git: _git: Reword --heads to
	match new meaning

	* 31864: Completion/Unix/Command/_git: _git: Add two sub-comamnds
	introduced in v1.8.4

	* 31865: Completion/Unix/Command/_git: _git: Make --batch(-check)
	accept an argument

2013-10-21  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31856: Completion/Unix/Command/_git: _git: fix a few
	"undocumented" options

	* 31855: Completion/Unix/Command/_git: _git: revert: add
	'-e,--edit'

2013-10-21  Øystein Walle  <oystwa@gmail.com>

	* 31858: Completion/Unix/Command/_git: _git: fix wrong default
	value

2013-10-21  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31857: Completion/Unix/Command/_git: _git: Remove unsupported -q
	option from diff options

2013-10-21  Øystein Walle  <oystwa@gmail.com>

	* 31853: Completion/Unix/Command/_git: _git: Add missing column.*
	config variables

	* 31854: Completion/Unix/Command/_git: _git: Make git-show accept
	diff arguments

	* 31859: Completion/Unix/Command/_git: _git: re-order the last two
	git-blame arguments

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

	* 31851: Src/exec.c: execstring() should display string to
	be executed with VERBOSE option.

2013-10-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 31849: Doc/Zsh/params.yo: note effect of KSH_ZERO_SUBSCRIPT
	on the arrays of positional parameters e.g. ${argv[0]} vs. $0

2013-10-18  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31846: Src/exec.c: fix NOEXEC option in execsimple().

2013-10-18  Barton E. Schaefer  <schaefer@zsh.org>

	* 31840: Completion/Unix/Command/_make: "read" used wrong $IFS

2013-10-17  Barton E. Schaefer  <schaefer@zsh.org>

	* 31836 (cf. 31823): Doc/Zsh/params.yo, Src/hist.c: add
	HISTORY_IGNORE pattern to exclude matching lines in the
	internal history from the HISTFILE at write time.

	* 31832: Src/exec.c: make execrestore() more signal-safe.

2013-10-17  Peter Stephenson  <p.stephenson@samsung.com>

	* 31830: Doc/Zsh/func.yo, README, Src/hist.c, Src/zsh.h:
	If a zshaddhistory hook returns status 2, save the line on
	the internal history but don't write it out.

2013-10-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Users/18033: Doc/Zsh/builtins.yo, Doc/Zsh/jobs.yo,
	Doc/Zsh/options.yo: try to document interaction between exit and
	asynchronous jobs that don't look asynchronous.

2013-10-16  Peter Stephenson  <p.stephenson@samsung.com>

	* 31827: Doc/Zsh/func.yo: options needed for example.  Only
	works with INCAPPENDHISTORY or SHAREHISTORY.

2013-10-15  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Doc/Zsh/func.yo: trivial typo in zshaddhistory doc.

2013-10-12  Barton E. Schaefer  <schaefer@zsh.org>

	* 31818: Completion/Unix/Command/_sh, Doc/Zsh/compsys.yo: to avoid
	side effects, reposition the _arguments call in _sh for the zsh
	special case.  Document the side effects so avoided, and clean up
	the _arguments documentation a bit along the way.

2013-10-11  Mikael Magnusson  <mikachu@gmail.com>

	* 31805: Doc/Zsh/mod_parameter.yo, Src/Modules/parameter.c,
	Src/Modules/parameter.mdd, Src/pattern.c, Test/V01zmodload.ztst:
	Add $patchars and $dis_patchars to zsh/parameter module

	* 31805: Completion/Zsh/Command/_disable,
	Completion/Zsh/Command/_enable, Doc/Zsh/builtins.yo: Update
	_enable and _disable for -p, fix related typo in docs

	* 31806: Completion/Zsh/Command/_disable,
	Completion/Zsh/Command/_enable, Workaround special characters
	in alias and function names breaking _arguments syntax

2013-10-11  Peter Stephenson  <p.stephenson@samsung.com>

	* 31815: Src/hist.c: more fallout from 31789: we need to save
	using pushed history file before we pop.

2013-10-10  Peter Stephenson  <p.stephenson@samsung.com>

	* 31810: Test/E02xtrace.ztst: tests for simple cases of XTRACE
	output for conditions.

	* 31809: Src/exec.c: make whitespace clear in trace output for
	patterns.

2013-10-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Eric Cook: 31801: Completion/Linux/Command/_btrfs: some
	additional variables need to be local.

2013-10-08  Barton E. Schaefer  <schaefer@zsh.org>

	* 31797: Src/hist.c: partly fix long-standing history expansion
	bug in which in some circumstances a default history expansion
	would occur even when there is neither an event nor a word
	designator, which is contradictory to the documentation.
	There are still some cases in which expansion is attempted
	when it should not be, but in most of those cases the expansion
	simply fails.

2013-10-07  Peter Stephenson  <p.stephenson@samsung.com>

	* 31794: Src/hist.c: further refinement that SHAREHISTORY should
	work as it always did because it's careful about file locking.

	* 31793: Src/hist.c (hbegin): Modify 31789 so that the save
	history here only happens for interactive editing.

2013-10-06  Wayne Davison  <wayned@users.sourceforge.net>

	* users/18024: Completion/Unix/Command/_rsync: add new options for
	rsync 3.1.0.

2013-10-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/18023: Doc/Zsh/options.yo, Src/jobs.c, Src/options.c,
	Src/zsh.h, Test/E01options.ztst: add PIPEFAIL option and test.

2013-10-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Hang Pingtian: 31789: Src/hist.c: add history for
	INCAPPENDHISTORY later so history time works.

2013-10-03  Barton E. Schaefer  <schaefer@zsh.org>

	* 31784: Src/Zle/computil.c: when deciding whether there is enough
	horizontal space to show completion descriptions for each match in
	a listing, treat the separator as part of the description rather
	than as part of the match, and account for lines that have already
	wrapped due to very long matches.

	* 31781: Src/Zle/computil.c: "compdescribe -i" must clear the
	completion list column padding width along with the rest of the
	description state.  Cf. 31782.

2013-09-26  Barton E. Schaefer  <schaefer@zsh.org>

	* 31772: Src/params.c: queue_signals() to prevent re-entry into
	endparamscope().

	* 31770: Src/hist.c: memmove() instead of memcpy() for overlapping
	regions.

2013-09-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31765: Src/Zle/zle_main.c: on entry to editor, if starting in
	vi insert mode mark this as the start of an insertion (duh).

2013-09-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31764 (with correction of sense of a test): Src/glob.c,
	Src/pattern.c: use of array before initialisation wreaked havoc
	in detecting glob qualifiers.

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31754: Completion/Unix/Command/_git: _git: git rm: make git rm
	--cached work as intended

2013-09-22  Øystein Walle  <oystwa@gmail.com>

	* 31752: Completion/Unix/Command/_git: _git: change completion
	text for consistency

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31753: Completion/Unix/Command/_git: _git: correct some
	"undocumented" options

2013-09-22  Øystein Walle  <oystwa@gmail.com>

	* 31749: Completion/Unix/Command/_git: _git: fix some typos in
	description texts

	* 31751: Completion/Unix/Command/_git: _git: remove TODOs of
	actually documented options

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31746: Completion/Unix/Command/_git: _git: reword _git-config
	TODO

	* 31748: Completion/Unix/Command/_git: _git: support completing
	remote branches without <remote>/ prefix

2013-09-22  Øystein Walle  <oystwa@gmail.com>

	* 31747: Completion/Unix/Command/_git: _git: completion updates to
	match latest git v1.8.3 part 2

	* 31750: Completion/Unix/Command/_git: _git: add new configuration
	options to match latest git v1.8.3

2013-09-22  m0viefreak  <m0viefreak.cm@googlemail.com>

	* 31741: Completion/Unix/Command/_git: _git: fix a wrong variable
	in __git_config_values

	* 31743: Completion/Unix/Command/_git: _git: fix usage of ->int:
	for some entries in _git-config

	* 31744: Completion/Unix/Command/_git: _git: make git submodule
	<cmd> completion work

	* 31745: Completion/Unix/Command/_git: _git: correctly use
	__git_guard_number in some cases

	* 31755: Completion/Unix/Command/_git: _git: completion updates to
	match latest git v1.8.3

2013-09-21  Barton E. Schaefer  <schaefer@zsh.org>

	* unposted: Src/glob.c: improve an error message.

2013-09-19  Barton E. Schaefer  <schaefer@zsh.org>

	* 31737: Src/Zle/computil.c (get_cadef): same fix as get_cvdef.

2013-09-19  Peter Stephenson  <p.stephenson@samsung.com>

	* Axel Beckert: 31735: Src/Zle/computil.c (get_cvdef):
	off-by-one in obscure loop handling could cause crash in complex
	completion.

2013-09-14  Luka Perkov  <luka@openwrt.org>

	* 31723: Completion/Unix/Command/_systemd: _systemd: add more
	system commands

	* 31726: Completion/Unix/Command/_git: _git: add few more
	arguments for cherry-pick and revert

2013-09-10  Barton E. Schaefer  <schaefer@zsh.org>

	* 31714: Completion/Zsh/Command/_cd: handle ".." properly when
	$PWD or the path prefix traverses a symbolic link.

2013-09-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31711: Doc/Zsh/contrib.yo, Functions/MIME/zsh-mime-handler:
	add execute-never style for MIME handler for files on alien file
	systems.

2013-09-07  Luka Perkov  <luka@openwrt.org>

	* 31708: Completion/Unix/Command/_git: _git: add --fixup and
	--squash options to commit

2013-09-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Luka Perkov: 31702: Completion/Unix/Command/_git:
	check for presence of "-i" when checking for "--interactive".

	* 31706: Src/builtin.c, Test/C02cond.ztst: standardise
	handling of "test ! <x> <y> <z>".

2013-09-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31696: Src/parse.c, Test/C02cond.ztst: in "test", no one
	can hear if you shriek.  Treat exclamation marks as strings in
	"! -a ..." and "! -o ...".

2013-09-02  Peter Stephenson  <p.stephenson@samsung.com>

	* 31685: Doc/Zsh/mod_mapfile.yo: documentation of how to get
	lines from a file is not correct.

2013-08-29  Peter Stephenson  <p.stephenson@samsung.com>

	* users/17955: Doc/Zsh/contrib.yo,
	Functions/MIME/zsh-mime-handler: "disown" style makes MIME
	handlers put into background run without job control.

	* based on 31641, 31642: Completion/Unix/Command/_make: support
	a couple of different variants of make.

2013-08-26  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31672: Src/Modules/zpty.c, Test/V08zpty.ztst: add test that
	was failing and fix race when setting up pty.

2013-08-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31665: Src/Modules/zpty.c, Test/V08zpty.ztst, Test/.distfiles:
	zpty should attach terminal on slave.

2013-08-17  Barton E. Schaefer  <schaefer@zsh.org>

	* 31637: Src/builtin.c: change of directory should not be retried
	relative to the current directory when it has already failed along
	some path that does not refer to the current directory.

2013-08-11  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31650: Src/utils.c: use zlong for mailcheck parameters to
	ensure sufficient range.

2013-08-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31648: joe M: Src/utils.c: fix timing errors in mailcheck.

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

	* Src/Zle/zle_tricky.c (inststrlen): 31644: the wrong length was
	used when inserting multibyte characters from a string from
	outside ZLE into the editing buffer.

	* users/17908: Src/hist.c Src/Zle/zle_main.c Src/zsh.h: if
	modifying history with ZLE active, keep the history line
	recorded in ZLE in sync.

2013-08-07  Phil Pennock  <pdpennock@users.sourceforge.net>

	* 31634: Functions/Misc/run-help: run-help compat with alias to
	noglob/nocorrect

2013-08-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31631: configure.ac, Src/builtin.c: use cygwin_conv_path in
	preference to cygwin_conv_to_posix_path if available.

2013-08-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Yuusuke Yoshimoto: 31632: Completion/Unix/Type/_java_class:
	suppress stderr from jar when completing classes.

2013-08-02  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31611: Src/Zle/zle_tricky.c: attempt to fix crash in
	"for in 1; do <[TAB] x".

2013-08-01  Peter Stephenson  <p.stephenson@samsung.com>

	* Thomas Klausner: 31625: Completion/X/Command/_mplayer: mplayer
	supports .ts (transport stream) files.

2013-07-29  Peter Stephenson  <p.stephenson@samsung.com>

	* 17891: Src/builtin.c: fix error message for invalid file
	descriptor in "print -u".

2013-07-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Manuel Presnitz: 31592 (with minor changes of phrasing):
	Doc/Zsh/builtins.yo, Doc/Zsh/expn.yo, Doc/Zsh/prompt.yo: improve
	documentation for named directory handling.

2013-07-25  Peter Stephenson  <p.stephenson@samsung.com>

	* Jun T.: 31756: Completion/Unix/Command/_make: further make
	completion improvements: tke care of mutually exclusive options;
	add _description using $state_descr; add completions for
	--debug=flag; fix typo (pointed out by Daniel Shahaf).

	* 31574: Src/parse.c: alternative fix to 31545 if FD_CLOEXEC is
	not available, removing dump records more consistently.

2013-07-24  Richard Hartmann  <richih.mailinglist@gmail.com>

	* 31571: Completion/Unix/Command/_vcsh: Update

	* 31572: Completion/Debian/Command/_linda,
	Completion/Debian/Command/.distfiles: Remove _linda

2013-07-24  Peter Stephenson  <p.stephenson@samsung.com>

	* Src/hist.c: 31570: with HIST_REDUCE_BLANKS don't truncate
	the line after the last word if there's more non-white-space
	text (probably a comment but we don't assume that).

2013-07-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Src/lex.c: correct previous commit: should call
	hwend(), not ihwend().

	* 31559: Src/lex.c: Fix problem with history lines for comments
	that occur in the middle of an alias.

	* Eric Cook: 31558: Completion/Command/Unix/_qemu: name of
	binary has changed.

2013-07-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31549: Src/exec,c, Src/zsh.h: replace ad-hoc subsh_close file
	descriptor for pipes with new addfilelist() job-based mechanism.

2013-07-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31545: Src/exec.c, Src/parse.c: if FD_CLOEXEC is available,
	so mark dump file file descriptors, avoiding possible
	multiple use of file descriptors.

2013-07-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* c.f. 31531: Completion/Unix/Command/_imagemagick,
	Completion/Unix/Command/_graphicsmagick: complete .xcf files.

2013-07-19  Peter Stephenson  <p.stephenson@samsung.com>

	* 31536 (plus memory leak fixed, plus test code):
	Src/jobs.c, Test/D03procsubst.ztst: fix hang in 31528 by
	closing process substitution file descriptors when waiting
	for job to finish.

2013-07-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31528: Src/exec.c, Src/jobs.c, Src/zsh.h: use job table
	to record file descriptors associated with process
	substitution.

	* Jun T: 31525: Completion/Unix/Command/_make: fix some option
	handling.

2013-07-12  Peter Stephenson  <p.stephenson@samsung.com>

	* Nick Cross: 31512: Completion/Unix/Command/_make:
	extra GNU options plus fix to makefile completion.

2013-07-11  Peter Stephenson  <p.stephenson@samsung.com>

	* users/17856: Completion/Command/Unix/_make: rewrite to use
	_arguments so as to make adding option handling easier.

2013-07-03  Peter Stephenson  <p.stephenson@samsung.com>

	* 31503: Doc/Zsh/contrib.yo, Functions/Misc/zmv: split words
	in program passed to zmv with -p and add -P for programs
	that don't understand the "--" convention.

2013-06-28  Clint Adams  <clint@zsh.org>

	* 31500: Completion/Debian/Command/_dput: dput-ng completion
	support from Sebastian Ramacher.

	* 31499: Completion/Debian/Command/_dcut: dcut completion
	from Sebastian Ramacher.

	* 31498: Completion/Debian/Command/_dak: complete files for
	subcommands that are not explicitly specified.

2013-06-27  Mikael Magnusson  <mikachu@gmail.com>

	* 31483: Call zrefresh() before unqueue()ing signals, was
	moved in 31174.

2013-06-18  Frank Terbeck  <ft@bewatermyfriend.org>

	* 31485: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	vcs_info, git: Avoid error messages for `guilt' users

2013-06-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31465: Completion/compinit, Src/glob.c, Src/pattern.c: fix
	basic completion and globbing use of pattern disables.

	* 31444: Doc/Zsh/builtins.yo, Doc/Zsh/options.yo,
	Doc/zmacros.yo, Src/builtin.c, Src/exec.c, Src/options.c,
	Src/pattern.c, Src/zsh.h: Basic (not fully functional) code for
	enable/disable -p.

2013-06-13  Barton E. Schaefer  <schaefer@zsh.org>

	* 31474: Makefile.in, Src/zsh.mdd: create patchlevel.h correctly
	when running make in a separate build tree

2013-06-10  Peter Stephenson  <p.stephenson@samsung.com>

	* Hong Xu: 31462: .editorconfig: move comment to individual
	line.

	* Bruce Stephens (via Axel Beckert of Debian): 31459:
	Doc/ztexi.yo: alignment of zsh info menu entry is wrong.

2013-06-09  Barton E. Schaefer  <schaefer@zsh.org>

	* 31466: .cvsignore, .gitignore: Cause git and cvs to ignore
	one another.

	* 31205: Completion/Base/Widget/_complete_help:  Do not display
	"(eval)" as a tag context.

2013-06-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31441: Src/glob.c, Src/pattern.c, Src/zsh.h: use an array
	based on ZPC_* enum to decide which forms of pattern are enabled.

2013-05-30  Peter Stephenson  <p.stephenson@samsung.com>

	* 31436: Doc/Zsh/expn.yo: KSH_GLOB syntax does not
	support recursive directories.

2013-05-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31433: Completion/Unix/Command/_gzip: zcat -f doesn't
	need files with suffix .gz.

	* 31422: Doc/Zsh/calsys.yo, Functions/Calendar/age: better
	heuristic for timestamps in use of :file feature.

2013-05-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31405: Doc/Zsh/options.yo: weasel words about
	PRINT_EXIT_STATUS option.

2013-05-21  Peter Stephenson  <p.stephenson@samsung.com>

	* 31419: Src/Modules/stat.c: Add time zone and year to
	default time format with -s option to zstat.

	* 31418: Doc/Zsh/calsys.yo, Functions/Calendar/age:
	in "age" docs correct typo and note the feature that
	you can supply a file as a timestamp on the command line.

	* Stephane: 31417: Functions/Calendar/age: needs --
	to protect againts files starting with -.

2013-05-20  Barton Schaefer  <schaefer@zsh.org>

	* 31416: Src/builtin.c: upon "read" of a short line, assign all
	variables passed as arguments.

2013-05-14  Peter Stephenson  <p.stephenson@samsung.com>

	* unposted: Completion/Unix/Command/_perforce: Improve
	Perforce jobs completion to limit potentially huge output
	using jobview by default; fix quoting of arguments passed on
	to eval within _call_program.

2013-05-10  Peter Stephenson  <p.stephenson@samsung.com>

	* Richard Hartmann <richih.mailinglist@gmail.com>: 31389:
	Completion/X/Command/_mplayer: add .ogv.

	* Mihai Moldovan <ionic@ionic.de>: 31387: Src/zsh_system.h:
	unused functions when compiling with clang.

2013-05-05  Frank Terbeck  <ft@bewatermyfriend.org>

	* unposted: Src/exec.c: Revert "31372: Do not block SIGWINCH for
	child processes" as suggested by Bart.

	* 31376: Src/exec.c: Make sure every execve() is prefixed by
	winch_unblock()

2013-05-05  Bart Schaefer  <schaefer@zsh.org>

	* 31372: Src/exec.c: Do not block SIGWINCH for child processes

2013-05-05  Kenyon Ralph  <kenyon@kenyonralph.com>

	* 31371: Completion/Linux/Command/_brctl: _brctl: update brctl
	subcommands

2013-05-04  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31369: Completion/Base/Utility/_comp_locale: action if locale
	command is not usable.

2013-04-29  Bart Schaefer  <schaefer@zsh.org>

	* 31361: Src/init.c: handle negative optno ("no" prefix used)
	when storing options with parseopts_insert() for sticky contexts

	* 31353: Src/math.c: fix handling of floating point in ternary

	* 31350: Src/init.c, Src/input.c, Src/signals.h, Src/utils.c,
	Src/Zle/zle_main.c: block SIGWINCH nearly all the time, except
	when about to calculate prompts or do synchronous read, so
	syscalls are not interrupted by window size changes.

2013-04-29  Jun T  <takimoto-j@kba.biglobe.ne.jp>

	* 31357: Completion/Unix/Command/_cp: add support for Mac OS X

2013-04-29  Peter Stephenson  <p.stephenson@samsung.com>

	* 31356: Completion/Unix/Command/_subversion: typo noted by Bart.

	* 31355: Completion/Base/Utility/.distfiles,
	Completion/Base/Utility/_comp_locale,
	Completion/Unix/Command/_subversion: _comp_locale tries to
	sanitise locales but keep CTYPE; use this for subversion completion.

2013-04-25  Ramkumar Ramachandra  <artagnon@gmail.com>

	* 31288: Completion/Unix/Command/_git: _git: fix shortlog
	completer

2013-04-21  Ramkumar Ramachandra  <artagnon@gmail.com>

	* 31286: Completion/Unix/Command/_git: _git: add a couple of
	browsers

	* 31289: Completion/Unix/Command/_git: _git: branch.*.pushremote,
	remote.pushdefault

2013-04-20  Torstein Hegge  <hegge@resisty.net>

	* 31159: Completion/Unix/Command/_git: git: Pass prefix filter to
	ls-files even if it matches no files

2013-04-20  Jun T  <takimoto-j@kba.biglobe.ne.jp>

	* 31281: Completion/Unix/Command/_du: _du: add support for Mac OS
	X

2013-04-20  Bart Schaefer  <schaefer@zsh.org>

	* 31272: Src/Zle/compctl.c: avoid double free.

2013-04-16  Peter Stephenson  <p.stephenson@samsung.com>

	* Daniel Friesel: 31265: Completion/Unix/Command/_devtodo:
	improved option handling.

2013-04-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: .gitignore: ignore PDF and PS versions of intro file.

2013-04-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31263 (changed * to - for consistency with elsewhere):
	Doc/Zsh/mod_curses.yo: suppress texinfo warning by adding item
	arguments.

	* 31261: Doc/Zsh/compsys.yo, Doc/ztexi.yo: updates needed
	with latest texinfo.

2013-04-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17754: Src/builtin.c: failing to retie an array
	and colon-separated scalar shouldn't be a fatal error.

2013-04-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31246: Makefile.in, Src/zsh.mdd: make a separate patch level
	header for releases.

2013-04-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/.distfiles: remove mention of files no
	longer there.

2013-04-07  Bart Schaefer  <schaefer@zsh.org>

	* 31234: Completion/Base/Widget/_complete_help: use an "always"
	block instead of "trap" to clean up various function overrides

2013-04-05  Frank Terbeck  <ft@bewatermyfriend.org>

	* 31174: Src/Zle/zle_main.c: 31174: zle: Make sure state changes
	are refreshed after init hook

	* 31172: Src/Zle/zle_main.c: 31172: Let vared define custom init
	and finish hooks

	* 31175: Doc/Zsh/zle.yo: 31175: Add documentation for the new -i
	and -f options of vared

	* 31221: Completion/Unix/Command/_git: Handle zero defined aliases
	better

	* 31222: Functions/Zle/down-line-or-beginning-search,
	Functions/Zle/up-line-or-beginning-search: Don't trigger
	warn_create_global

2013-04-04  Peter Stephenson  <p.stephenson@samsung.com>

	* 31203: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/_etags: new etags completion.

2013-02-18  Aaron Schrab  <aaron@schrab.com>

	* 07478c6b: Src/zsh.mdd: Generate patch level using `git describe`

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

	* Jun T.: 31183: Src/Zle/zle_move.c: record old line rather than
	history line in vi-goto-mark.

2013-03-29  Mikael Magnusson  <mikachu@gmail.com>

	* 31182: Completion/Unix/Command/_awk: Allow sticked arguments.

2013-03-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Han Pingtian: 31167 (with tweak):
	Completion/Unix/Command/_ssh: limit use of colons for detecting
	a remote path.

2013-03-19  Bart Schaefer  <schaefer@zsh.org>

	* 31158: Src/pattern.c: following a wildcard with a repetition
	produces a bad pattern error instead of an unbounded search

2013-03-17  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31156: Completion/Zsh/Context/_math,
	Completion/Zsh/Context/_zcalc_line, Completion/Zsh/Type/.distfile,
	Completion/Zsh/Type/_math_params,
	Completion/Zsh/Type/_module_math_func,
	Completion/Zsh/Type/_user_math_func: improved math context
	completion: functions.

	* 31155: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: minor
	extra zcalc features and documentation.

2013-03-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31154: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: make zcalc
	understand continuation lines using backslash.

2013-03-14  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31151: Pavol Juhas: complete (C etc) tags better
	when file system is not case sensitive.

2013-03-13  Mikael Magnusson  <mikachu@gmail.com>

	* unposted: Doc/Zsh/contrib.yo: Also adjust a mention of psvar
	in the vcs info documentation.

	* 31140: Src/math.c: when the math recursion limit is hit, make
	sure to not leave *ep pointing nowhere, which caused a crash
	sometimes. Also print the token that we refused to evaluate
	because of the limit.

2013-03-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted, c.f. thread from 31144: Doc/Zsh/params.yo: all psvar
	entries can be shown in prompts nowadays.

2013-03-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31141: Src/exec.c, Test/A04redirect.ztst: NO_CLOBBER for {fd}
	syntax should only apply if $fd is exactly an fd and nothing
	else.

2013-03-10  Mikael Magnusson  <mikachu@gmail.com>

	* 30496: Src/prompt.c: Parse argument to %F and %K as prompt
	sequences. This allows constructs like %F{%3v} to use $psvar[3]
	for the color.

	* 30490: Completion/Unix/Command/_java: Complete files for the
	-keystore argument.

	* 30639: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	Add support for showing the current action is cherry-pick (happens
	when cherry-picking a range).

	* 31136: Functions/VCS_Info/Backends/VCS_INFO_get_data_git:
	just set parameters instead of passing over a pipe.

2013-03-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17666: Doc/Zsh/contrib.yo, Functions/Misc/zcalc: -f
	option to zcalc sets FORCE_FLOAT.

	* users/17665: Doc/Zsh/options.yo, Src/math.c, Src/options.c,
	Src/zsh.h, Test/C01arith.ztst: add FORCE_FLOAT option.

2013-02-27  Oliver Kiddle  <opk@zsh.org>

	* 31076: Completion/Linux/Command/_yast,
	Completion/Unix/Type/_pids, Completion/Unix/Type/_pdf:
	fix cases of more than one completion function for a command

	* 31077: Completion/Unix/Command/_sort: update for new
	options in GNU sort

	* c.f. 31071: Completion/Unix/Type/_postscript,
	Completion/Unix/Command/_psutils: remove duplicate _osc and
	rename _ps to avoid name clash

2013-02-22  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31061: Completion/Zsh/Command/_typeset: "functions" completion
	takes account of options already on the command line.

	* 31060: Src/builtin.c: "+" before a flag for "functions" or
	"autoload" should suppress display of function body.

2013-02-21  Oliver Kiddle  <opk@zsh.org>

	* 31058: Completion/Zsh/Command/_fc, Completion/Unix/Command/_cut,
	Completion/Unix/Command/_sed, Completion/Unix/Command/_wget,
	Completion/Unix/Command/_xmlsoft: add options from newer
	versions of some commands to completion functions

2013-02-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31055: Completion/compaudit: missing '$' in search of /proc
	file system.

2013-02-12  Oliver Kiddle  <opk@zsh.org>

	* 31041: Test/comptest, Test/X02zlevi.ztst: add support for
	testing line editor widgets from the test suite

	* unposted: Etc/zsh-development-guide: remove duplication in
	git guidelines

2013-02-09  Oliver Kiddle  <opk@zsh.org>

	* Morita Sho: 31038: Completion/Unix/Type/_terminals:
	add location of terminfo entries on Debian

	* 31037: Src/Zle/zle_move.c: return to previous position
	with vi-goto-mark using `` or ''

2013-02-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	*  Wieland Hoffmann: 31030: Completion/X/Command/_mplayer:
	improve label for selected files.

	*  Wieland Hoffmann: 31029: README: correct directory.

	* Han Pingtian: 31027: Completion/Unix/Type/_files: remove
	the -g's from the glob options.

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

	* Eric P. Mangold: c.f. 31016
	http://twistedmatrix.com/trac/browser/trunk/twisted/python/twisted-completion.zsh?format=txt:
	completion for twisted using internally generated completion.

2013-02-01  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 31015: Completion: compaudit: where we can find who owns the
	zsh executable, allow the same owner to own completion files.

2013-02-01  Mikael Magnusson  <mikachu@gmail.com>

	* unposted: Fix _prove completer commit.

2013-01-29  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jesper Nygårds: 31012: Completion/Unix/Command/_gradle:
	updates.

	* Dmitry Roshchin: 31008: Completion/openSUSE/Command/_zypper,
	Completion/openSUSE/Command/_osc: updates.

2013-01-26  Bart Schaefer  <schaefer@zsh.org>

	* 31000: Doc/Zsh/contrib.yo: fix typo in example.

2013-01-24  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17608: Doc/Zsh/contrib.yo,
	Functions/Zle/modify-current-argument: use function to modify
	current command line argument.

2013-01-22  Peter Stephenson  <p.stephenson@samsung.com>

	* 30993: Src/subst.c, Test/D04parameter.ztst: parameter
	modifiers :wq operating on an empty string crashed the shell.
	The shell isn't supposed to crash.

2013-01-20  Oliver Kiddle  <opk@zsh.org>

	* 30987: Completion/X/Command/_xrandr: only call xrandr when
	necessary and use _call_program

2013-01-14  Peter Stephenson  <p.stephenson@samsung.com>

	* 30960: Alexey Bezhan: Completion/Unix/Command/_django:
	compatibility issue.

2013-01-10  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30958: Jeremy Mates: Completion/Unix/Command/_prove,
	Completion/Unix/Command/.distfiles: new completion.

2013-01-07  Bart Schaefer  <schaefer@zsh.org>

	* unposted (see 30952): Src/builtin.c: tweak to 30949 to fix the
	buffer pointer.

2013-01-06  Bart Schaefer  <schaefer@zsh.org>

	* 30949: Src/builtin.c: restore "read -q" behavior lost by 27188.

2013-01-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30946: Robert Kovacsics: Completion/X/Command/_xrandr: use
	command to generate completions.

2013-01-04  Peter Stephenson  <p.stephenson@samsung.com>

	* 30941: Completion/bashcompinit: scalars giving status of bash
	completion should be exported for external programmes.

2013-01-03  Bart Schaefer  <schaefer@zsh.org>

	* users/17524: Doc/Zsh/expn.yo: misc. parameter flag clarifications.

2013-01-03  Peter Stephenson  <pws@csr.com>

	* unposted: Config/version.mk: update version to 5.0.2-dev-0
	to avoid clash with release.

2012-12-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: README, Config/version.mk, Etc/FAQ.yo: release
	5.0.2.

2012-12-21  Peter Stephenson  <pws@csr.com>

	* 30930: Src/parse.c, Test/D03procsubst.ztst: anonymous
	functions shouldn't be marked as simple; this prevented process
	based features from working in their arguments.

2012-12-20  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Config/version.mk: zsh 5.0.1.

2012-12-18  Oliver Kiddle  <opk@zsh.org>

	* 30877: Etc/zsh-development-guide: document git workflow

2012-12-18  Peter Stephenson  <pws@csr.com>

	* 30914: mkinstalldirs: default mode for installation
	directories is 755.

2012-12-17  Phil Pennock  <pdpennock@users.sourceforge.net>

	* 30901, 30906: Etc/zsh-development-guide: document git usage,
	update patch descriptions, mention editorconfig.

2012-12-16  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: README, Config/version.mk, Etc/FAQ.yo,
	Completion/Base/Utility/.distfiles,
	Completion/Unix/Command/.distfiles,
	Completion/Unix/Type/.distfiles, for 5.0.0-test-1.

	* unposted: Src/utils.c: missing mod_export.

2012-12-13  Peter Stephenson  <pws@csr.com>

	* 30876: Src/exec.c, Test/A06assign.ztst, Test/C03traps.ztst:
	obscure failures to process non-zero return values could result
	from optimising a list to a simple command.

2012-12-08  Bart Schaefer  <schaefer@zsh.org>

	* users/17445: Src/math.c, Test/C01arith.ztst: fix handling of
	leading zeroes in floating point.

2012-11-20  Oliver Kiddle  <opk@zsh.org>

	* 30811: Completion/Linux/Command/_btrfs,
	Completion/Unix/Command/_mount: new completion for btrfs and
	complete btrfs and ext4 mount options and new linux mount flags

2012-11-16  Vin Shelton  <acs@xemacs.org>

	* users/16865: Doc/Zsh/grammar.yo: Added missing menu item for Errors.

2012-11-18  Bart Schaefer  <schaefer@zsh.org>

	* users/17042: Src/jobs.c: don't stomp the environment in "jobs -Z"
	unless we've first copied it to new memory.

2012-11-16  Oliver Kiddle  <opk@zsh.org>

	* 30802: Completion/Unix/Command/_find: add new command switches

	* 30801: Completion/X/Command/_urxvt, Completion/X/Type/_xft_fonts:
	fix font completion for newer fontconfig & update urxvt completion

2012-11-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30789: Doc/Zsh/grammar.yo, Doc/Zsh/options.yo, Src/hist.c,
	Src/init.c, Src/options.c, Src/zsh.h, Test/A04redirect.zsh:  add
	CONTINUE_ON_ERROR option for compatibility but turn it off:
	scripts exit on an error instead of returning to the top-level
	like interactive shells.

	* 30800: Michal Halenka: Completion/Unix/Command/_arping: fix
	option.

2012-11-12  Oliver Kiddle  <opk@zsh.org>

	* 30795: Completion/Unix/Command/_xz,
	Completion/Unix/Command/_bzip2: new xz completion, new bzip2 options

	* 30794: Completion/Unix/Command/_irssi,
	Completion/Unix/Command/_mutt: update for new options

2012-11-11  Oliver Kiddle  <opk@zsh.org>

	* 30793: Completion/Unix/Command/_getent,
	Completion/Unix/Command/_iconv, Completion/Unix/Command/_ldd:
	account for eglibc in _pick_variant patterns

2012-11-08  Bart Schaefer  <schaefer@zsh.org>

	* 30786: Src/builtin.c: do not enter interactive history editing
	or command execution if "fc" is called from a ZLE widget.

2012-11-08  Peter Stephenson  <pws@csr.com>

	* 30783: Src/lex.c: we don't want leading "="'s to be active when
	tokenising strings that aren't going to be treated as command
	line arguments.

	* 30780: Doc/Zsh/builds.yo: document that set -o failures are
	hard but setopt failures are soft.

2012-11-07  Oliver Kiddle  <opk@zsh.org>

	* Benjamin R. Haskell: 30737: Completion/Unix/Command/_git:
	make custom completion functions for git aliases easier

	* users/17382: Completion/Unix/Type/_remote_files,
	Completion/Unix/Command/_vim, Completion/Unix/Command/_git,
	Completion/Unix/Type/_urls: complete URLs for vim and make
	_remote_files more consistent with _files

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

	* 30735: Src/parse.c: array assignments aren't simple because
	they can contain process substitutions.

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

	* Roman Kaminski: 30738: Completion/Unix/Command/_bzr: send
	command.

	* Greg Bouzakis: 30741: Completion/Unix/Command/_systemd: add
	suspend command.

	* unposted: Doc/Zsh/expn.yo: further splitting clarifications.

2012-10-18  Peter Stephenson  <pws@csr.com>

	* 30740: Doc/Zsh/expn.yo: add example of process substitution
	with anonymous function.

	* c.f. users/17330: Doc/Zsh/expn.yo: fix reference to splitting
	rule in parameter expansion rules.

2012-10-11  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30726: Doc/Zsh/builtins.yo, Src/builtin.c, Src/exec.c,
	Src/hashtable.c, Src/init.c, Src/options.c, Src/parse.c,
	Src/signals.c, Src/zsh.h, Src/Modules/parameter.c,
	Test/B07emulate.ztst: extend 30722 to handle the case
	where shell options passed to the emulate command need
	propagating to sticky emulation.

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

	* 30724: Src/exec.c, Src/jobs.c: shell code optimised to use
	execsimple() doesn't have a valid thisjob.

2012-10-09  Peter Stephenson  <pws@csr.com>

	* users/17318: Src/Zle/zle_utils.c: don't increment the undo
	change number for every variable read, only the first in a row.

	* users/17314: Src/Zle/zle_utils.c: ensure an undo change number
	uniquely specifies a point in editing history by incrementing
	the value returned by the variable.

	* unposted: Src/builtin.c: fix trivial typo with "functions +T".

2012-10-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30722: Src/builtin.c, Src/exec.c, Src/init.c, Src/options.c,
	Src/Modules/parameter.c, Test/B07emulate.ztst: fix some cases
	where options or emulations were not propagated properly
	from the emulate command.

	* 30718: README, Doc/Zsh/builtins.yo, Src/builtin.c,
	Test/C04funcdef.ztst: emulate command evaluations should apply
	sticky emulation to autoloads, too.

2012-10-07  Oliver Kiddle  <opk@zsh.org>

	* unposted: Completion/Unix/Command/_webbrowser,
	Completion/Unix/Type/_pspdf: add evince, zathura, dwb

	* 30714: Completion/X/Command/_xclip: complete files,-t,-f for xclip

2012-10-05  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30716: Src/options.c: IGNORECLOSEBRACES should be an emulation
	option since it changes what syntax is valid.

	* 30715: Src/init.c, Src/lex.c, Src/parse.c, Src/subst.c,
	Src/zsh.h, Src/Zle/zle_tricky.c: use a named enum for
	lexical tokens.

2012-10-03  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17305: Doc/Zsh/expn.yo: fix documentation for ordering
	of word splitting and improve (z) and (Z) documentation.

	* users/17310: Doc/Zsh/params.yo, Src/lex.c, Test/A04redirect.ztst,
	Test/D06subscript.ztst: back off users/17304 owing to problem
	with [ command, document problem, and test the case that needs
	to work.

2012-10-02  Peter Stephenson  <pws@csr.com>

	* users/17304: Src/lex.c, Test/D06subscript.ztst: angle brackets
	aren't associated with special parsing inside square brackets.

2012-09-30  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Aaron Schrab: 30712: .editorconfig: multi-editor specification
	of editing formats.

	* Aaron Schrab: 30711: Completion/Unix/Type/_bind_addresses:
	improved IPv6 completion.

	* Aaron Schrab: 30710: Completion/Unix/Command/_perldoc: updates.

2012-09-29  Frank Terbeck  <ft@bewatermyfriend.org>

	* Seth House: 30702: Doc/Zsh/contrib.yo,
	Functions/VCS_Info/Backends/VCS_INFO_get_data_hg: Removed --debug
	flag from the hg vcs_info backend

	* Seth House: 30701: Misc/vcs_info-examples: Added an hg hook
	example to restore the 40-char hash

	* Baptiste Daroussin: 30703:
	Functions/VCS_Info/Backends/VCS_INFO_detect_fossil: Fix fossil
	detection on unix

2012-09-28  Oliver Kiddle  <opk@zsh.org>

	* 30697: Completion/Unix/Command/_dbus: new completion definition

2012-09-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30692: Completion/Unix/Type/_path_files, Doc/Zsh/builtins.yo,
	Src/builtin.c: allow autoload +X -m to work; change _path_files
	so it works on that.

2012-09-21  Peter Stephenson  <pws@csr.com>

	* 30687 (typo fixed): Doc/Zsh/params.yo, Src/jobs.c: don't
	REPORTTIME if zleactive (but time keyword is allowed).

2012-09-15  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Александр Балезин: 30667: Completion/Unix/Command/_ip: add
	addrlabl subcommand.

2012-09-11  Peter Stephenson  <pws@csr.com>

	* unposted: NEWS: refer to some newly added features.

	* 30647, 30649: Doc/Zsh/arith.yo, Src/math.c, Src/utils.c,
	Test/C01arith.ztst: allow underscores in numeric constants
	within math evaluation.

2012-09-09  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T.: 30664: configure.ac: fix some Yodl version issues.

2012-09-08  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17236: Src/builtin.c: r and other fc output didn't
	unmetafy when listing to a file other than stdout.

2012-09-06  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30656: Src/math.c: treat dividing by -1 the same as
	multiplying by it to get around SIGFPE.

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

	* Jun T.: 30658: Completion/Unix/Command/_uniq: more options.

	* Silas Silva: users/17223: Completion/Unix/Command/_lp:
	page-ranges option.

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

	* users/17213: Completion/Base/Completer/_user_expand,
	Doc/Zsh/compsys.yo: allow REPLY to pass a description for an
	expansion.

2012-08-27  Peter Stephenson  <p.w.stephenson@ntlworld. com>

	* Oliver (olipro): 30643: Completion/Linux/Command/_ipset:
	completion update.

2012-08-25  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* John Stahara: 30641: Src/Zle/zle_keymap.c: bindkey -N
	error report is misleading when copying keymap.

2012-08-23  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* Jun T: 30640 (plus additional comment): Src/zsh.h,
	Src/compat.c: MacOS doesn't define __STDC_ISO_10646__ but we
	need the replacement wcwidth() anyway.

2012-08-23  Peter Stephenson  <pws@csr.com>

	* Aaron Schrab: 30636: Completion/Unix/Command/_telnet:
	telnet-ssl options.

	* Aaron Schrab: 30637: Completion/Unix/Command/_telnet: -b option

	* Aaron Schrab: 30638: Completion/Unix/Command/_telnet: IPv4
	and IPv6 options.

2012-08-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* users/17211: Completion/Unix/Type/_files, Doc/Zsh/compsys.yo:
	new recursive-files style.

	* 30633: Doc/Zsh/builtins.yo, Src/builtin.c, Src/exec.c,
	Src/hashtable.c, Src/options.c, Src/subst.c, Src/zsh.h:
	"functions -T" traces only marked function and not called
	functions unless also marked.

2012-08-20  Peter Stephenson  <pws@csr.com>

	* Stepan Koltsov: 30634: Functions/Misc/zmv: use (q-) quoting
	for output for clarity.

2012-08-17  Peter Stephenson  <pws@csr.com>

	* Stepan Koltsov: 30632
	(https://raw.github.com/stepancheg/zsh/bfa81caaac44dacfa05adb77f61526ea90346219/Completion/Unix/Command/_clay):
	Completion/Unix/Command/_clay,
	Completion/Unix/Command/.distfiles:
	new completion.

	* Stepan Koltsov: 30632
	(https://github.com/stepancheg/zsh/commit/b0f1427e4983be6dfdc07ccaf86f153d5f9959b9.patch):
	Completion/Unix/Command/_gcc: aliases and clang-specific flags.

	* 30629 plus unposted formatting improvements:
	Doc/Zsh/builtins.yo, Src/Builtins/rlimits.c: more complete
	handling for socket buffer size limit (NetBSD) plus formatting
	and consistency changes (kb -> kbytes everywhere in ulimit
	output, K-bytes to kilobytes everywhere in documentation).

	* 30627: configure.ac, Doc/Zsh/builtins.yo,
	Src/Builtins/rlimits.awk, Src/Builtins/rlimits.c:
	support RLIMIT_NTHR as on NetBSD.

2012-08-16  Peter Stephenson  <pws@csr.com>

	* 30619: Doc/Zsh/builtins.yo, Src/builtin.c,
	Test/B02typeset.ztst: repeat "typeset -T" with same two first
	arguments is not an error.

	* 30617: Src/prototypes.h, Src/zsh_system.h: rationalise
	replacement of tgoto() prototype which could appear twice
	inconsistently.

2012-08-14  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: Etc/relnote_5.0.0.txt, Etc/.distfiles: add.

	* unposted: Etc/Changelog-4.3, Etc/ChangeLog-5.0,
	Etc/.distfiles: rename

2012-08-13  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: ChangeLog, Etc/ChangeLog-5.0: move changes up
	to 5.0 into subdirectory.

	* Michal Halenka: 30608: Completion/Unix/Command/_ip: del rather
	delete tunnel.

2012-08-13  Peter Stephenson  <pws@csr.com>

	* Jesse Weinstein: 30607: Doc/Makefile.in: fix ancient
	dependency problem with moved Yodl files.

	* Aaron Schrab: 30604: Src/Zle/zle_move.c: make repeating vi skip
	character useful by ignoring character just matched.

	* Aaron Schrab: 30603: Src/Zle/zle_move.c: repeating vi skip
	characters commands caused bad positioning.

2012-08-07  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* cat_in_136: 17200: Completion/Unix/Command/.distfiles,
	Completion/Unix/Command/_lha, Completion/Unix/Command/_nkf: new
	completions.  nkf is a Kanji code converter.

	* YAMAMOTO Takashi: 30599: Src/compat.c, Src/zsh.h: don't
	use the replacement wcwidth if not ISO-10646 as the assumptions
	it makes probably won't work.

2012-07-27  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* 30590: Doc/Makefile.in, Doc/.distfiles: work around problem
	turning intro.ms into PDF.

	* unposted: relabel as 5.0.0-dev-0.

2012-07-23  Geoff Wing  <gcw@zsh.org>

	* unposted: Doc/Zsh/ftp_sites.yo: Remove unavailable sites

2012-07-21  Peter Stephenson  <p.w.stephenson@ntlworld.com>

	* unposted: update for 5.0.0 release.