summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.0461
blob: bf108843142bdb0a08592bfa3cbddec474ba79e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
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
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0461
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 8.1.0461
Problem:    Quickfix code uses too many /* */ comments.
Solution:   Change to // comments. (Yegappan Lakshmanan)
Files:	    src/quickfix.c


*** ../vim-8.1.0460/src/quickfix.c	2018-10-07 14:38:43.714247899 +0200
--- src/quickfix.c	2018-10-07 20:20:56.652633675 +0200
***************
*** 27,46 ****
  typedef struct qfline_S qfline_T;
  struct qfline_S
  {
!     qfline_T	*qf_next;	/* pointer to next error in the list */
!     qfline_T	*qf_prev;	/* pointer to previous error in the list */
!     linenr_T	qf_lnum;	/* line number where the error occurred */
!     int		qf_fnum;	/* file number for the line */
!     int		qf_col;		/* column where the error occurred */
!     int		qf_nr;		/* error number */
!     char_u	*qf_module;	/* module name for this error */
!     char_u	*qf_pattern;	/* search pattern for the error */
!     char_u	*qf_text;	/* description of the error */
!     char_u	qf_viscol;	/* set to TRUE if qf_col is screen column */
!     char_u	qf_cleared;	/* set to TRUE if line has been deleted */
!     char_u	qf_type;	/* type of the error (mostly 'E'); 1 for
! 				   :helpgrep */
!     char_u	qf_valid;	/* valid error message detected */
  };
  
  /*
--- 27,46 ----
  typedef struct qfline_S qfline_T;
  struct qfline_S
  {
!     qfline_T	*qf_next;	// pointer to next error in the list
!     qfline_T	*qf_prev;	// pointer to previous error in the list
!     linenr_T	qf_lnum;	// line number where the error occurred
!     int		qf_fnum;	// file number for the line
!     int		qf_col;		// column where the error occurred
!     int		qf_nr;		// error number
!     char_u	*qf_module;	// module name for this error
!     char_u	*qf_pattern;	// search pattern for the error
!     char_u	*qf_text;	// description of the error
!     char_u	qf_viscol;	// set to TRUE if qf_col is screen column
!     char_u	qf_cleared;	// set to TRUE if line has been deleted
!     char_u	qf_type;	// type of the error (mostly 'E'); 1 for
! 				// :helpgrep
!     char_u	qf_valid;	// valid error message detected
  };
  
  /*
***************
*** 60,75 ****
   */
  typedef struct qf_list_S
  {
!     int_u	qf_id;		/* Unique identifier for this list */
!     qfline_T	*qf_start;	/* pointer to the first error */
!     qfline_T	*qf_last;	/* pointer to the last error */
!     qfline_T	*qf_ptr;	/* pointer to the current error */
!     int		qf_count;	/* number of errors (0 means empty list) */
!     int		qf_index;	/* current index in the error list */
!     int		qf_nonevalid;	/* TRUE if not a single valid entry found */
!     char_u	*qf_title;	/* title derived from the command that created
! 				 * the error list or set by setqflist */
!     typval_T	*qf_ctx;	/* context set by setqflist/setloclist */
  
      struct dir_stack_T	*qf_dir_stack;
      char_u		*qf_directory;
--- 60,75 ----
   */
  typedef struct qf_list_S
  {
!     int_u	qf_id;		// Unique identifier for this list
!     qfline_T	*qf_start;	// pointer to the first error
!     qfline_T	*qf_last;	// pointer to the last error
!     qfline_T	*qf_ptr;	// pointer to the current error
!     int		qf_count;	// number of errors (0 means empty list)
!     int		qf_index;	// current index in the error list
!     int		qf_nonevalid;	// TRUE if not a single valid entry found
!     char_u	*qf_title;	// title derived from the command that created
! 				// the error list or set by setqflist
!     typval_T	*qf_ctx;	// context set by setqflist/setloclist
  
      struct dir_stack_T	*qf_dir_stack;
      char_u		*qf_directory;
***************
*** 87,108 ****
   */
  struct qf_info_S
  {
!     /*
!      * Count of references to this list. Used only for location lists.
!      * When a location list window reference this list, qf_refcount
!      * will be 2. Otherwise, qf_refcount will be 1. When qf_refcount
!      * reaches 0, the list is freed.
!      */
      int		qf_refcount;
!     int		qf_listcount;	    /* current number of lists */
!     int		qf_curlist;	    /* current error list */
      qf_list_T	qf_lists[LISTCOUNT];
  };
  
! static qf_info_T ql_info;	/* global quickfix list */
! static int_u last_qf_id = 0;	/* Last used quickfix list id */
  
! #define FMT_PATTERNS 11		/* maximum number of % recognized */
  
  /*
   * Structure used to hold the info of one part of 'errorformat'
--- 87,106 ----
   */
  struct qf_info_S
  {
!     // Count of references to this list. Used only for location lists.
!     // When a location list window reference this list, qf_refcount
!     // will be 2. Otherwise, qf_refcount will be 1. When qf_refcount
!     // reaches 0, the list is freed.
      int		qf_refcount;
!     int		qf_listcount;	    // current number of lists
!     int		qf_curlist;	    // current error list
      qf_list_T	qf_lists[LISTCOUNT];
  };
  
! static qf_info_T ql_info;	// global quickfix list
! static int_u last_qf_id = 0;	// Last used quickfix list id
  
! #define FMT_PATTERNS 11		// maximum number of % recognized
  
  /*
   * Structure used to hold the info of one part of 'errorformat'
***************
*** 110,138 ****
  typedef struct efm_S efm_T;
  struct efm_S
  {
!     regprog_T	    *prog;	/* pre-formatted part of 'errorformat' */
!     efm_T	    *next;	/* pointer to next (NULL if last) */
!     char_u	    addr[FMT_PATTERNS]; /* indices of used % patterns */
!     char_u	    prefix;	/* prefix of this format line: */
! 				/*   'D' enter directory */
! 				/*   'X' leave directory */
! 				/*   'A' start of multi-line message */
! 				/*   'E' error message */
! 				/*   'W' warning message */
! 				/*   'I' informational message */
! 				/*   'C' continuation line */
! 				/*   'Z' end of multi-line message */
! 				/*   'G' general, unspecific message */
! 				/*   'P' push file (partial) message */
! 				/*   'Q' pop/quit file (partial) message */
! 				/*   'O' overread (partial) message */
!     char_u	    flags;	/* additional flags given in prefix */
! 				/*   '-' do not include this line */
! 				/*   '+' include whole line in message */
!     int		    conthere;	/* %> used */
  };
  
! static efm_T	*fmt_start = NULL; /* cached across qf_parse_line() calls */
  
  static void	qf_new_list(qf_info_T *qi, char_u *qf_title);
  static int	qf_add_entry(qf_info_T *qi, int qf_idx, char_u *dir, char_u *fname, char_u *module, int bufnum, char_u *mesg, long lnum, int col, int vis_col, char_u *pattern, int nr, int type, int valid);
--- 108,136 ----
  typedef struct efm_S efm_T;
  struct efm_S
  {
!     regprog_T	    *prog;	// pre-formatted part of 'errorformat'
!     efm_T	    *next;	// pointer to next (NULL if last)
!     char_u	    addr[FMT_PATTERNS]; // indices of used % patterns
!     char_u	    prefix;	// prefix of this format line:
! 				//   'D' enter directory
! 				//   'X' leave directory
! 				//   'A' start of multi-line message
! 				//   'E' error message
! 				//   'W' warning message
! 				//   'I' informational message
! 				//   'C' continuation line
! 				//   'Z' end of multi-line message
! 				//   'G' general, unspecific message
! 				//   'P' push file (partial) message
! 				//   'Q' pop/quit file (partial) message
! 				//   'O' overread (partial) message
!     char_u	    flags;	// additional flags given in prefix
! 				//   '-' do not include this line
! 				//   '+' include whole line in message
!     int		    conthere;	// %> used
  };
  
! static efm_T	*fmt_start = NULL; // cached across qf_parse_line() calls
  
  static void	qf_new_list(qf_info_T *qi, char_u *qf_title);
  static int	qf_add_entry(qf_info_T *qi, int qf_idx, char_u *dir, char_u *fname, char_u *module, int bufnum, char_u *mesg, long lnum, int col, int vis_col, char_u *pattern, int nr, int type, int valid);
***************
*** 153,161 ****
  static void	unload_dummy_buffer(buf_T *buf, char_u *dirname_start);
  static qf_info_T *ll_get_or_alloc_list(win_T *);
  
! /* Quickfix window check helper macro */
  #define IS_QF_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref == NULL)
! /* Location list window check helper macro */
  #define IS_LL_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref != NULL)
  
  // Quickfix and location list stack check helper macros
--- 151,159 ----
  static void	unload_dummy_buffer(buf_T *buf, char_u *dirname_start);
  static qf_info_T *ll_get_or_alloc_list(win_T *);
  
! // Quickfix window check helper macro
  #define IS_QF_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref == NULL)
! // Location list window check helper macro
  #define IS_LL_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref != NULL)
  
  // Quickfix and location list stack check helper macros
***************
*** 189,195 ****
      char	*pattern;
  } fmt_pat[FMT_PATTERNS] =
      {
! 	{'f', ".\\+"},	    /* only used when at end */
  	{'n', "\\d\\+"},
  	{'l', "\\d\\+"},
  	{'c', "\\d\\+"},
--- 187,193 ----
      char	*pattern;
  } fmt_pat[FMT_PATTERNS] =
      {
! 	{'f', ".\\+"},	    // only used when at end
  	{'n', "\\d\\+"},
  	{'l', "\\d\\+"},
  	{'c', "\\d\\+"},
***************
*** 221,227 ****
  
      if (efminfo->addr[idx])
      {
! 	/* Each errorformat pattern can occur only once */
  	sprintf((char *)errmsg,
  		_("E372: Too many %%%c in format string"), *efmpat);
  	EMSG(errmsg);
--- 219,225 ----
  
      if (efminfo->addr[idx])
      {
! 	// Each errorformat pattern can occur only once
  	sprintf((char *)errmsg,
  		_("E372: Too many %%%c in format string"), *efmpat);
  	EMSG(errmsg);
***************
*** 243,251 ****
  #ifdef BACKSLASH_IN_FILENAME
      if (*efmpat == 'f')
      {
! 	/* Also match "c:" in the file name, even when
! 	 * checking for a colon next: "%f:".
! 	 * "\%(\a:\)\=" */
  	STRCPY(regpat, "\\%(\\a:\\)\\=");
  	regpat += 10;
      }
--- 241,249 ----
  #ifdef BACKSLASH_IN_FILENAME
      if (*efmpat == 'f')
      {
! 	// Also match "c:" in the file name, even when
! 	// checking for a colon next: "%f:".
! 	// "\%(\a:\)\="
  	STRCPY(regpat, "\\%(\\a:\\)\\=");
  	regpat += 10;
      }
***************
*** 254,271 ****
      {
  	if (efmpat[1] != '\\' && efmpat[1] != '%')
  	{
! 	    /* A file name may contain spaces, but this isn't
! 	     * in "\f".  For "%f:%l:%m" there may be a ":" in
! 	     * the file name.  Use ".\{-1,}x" instead (x is
! 	     * the next character), the requirement that :999:
! 	     * follows should work. */
  	    STRCPY(regpat, ".\\{-1,}");
  	    regpat += 7;
  	}
  	else
  	{
! 	    /* File name followed by '\\' or '%': include as
! 	     * many file name chars as possible. */
  	    STRCPY(regpat, "\\f\\+");
  	    regpat += 4;
  	}
--- 252,269 ----
      {
  	if (efmpat[1] != '\\' && efmpat[1] != '%')
  	{
! 	    // A file name may contain spaces, but this isn't
! 	    // in "\f".  For "%f:%l:%m" there may be a ":" in
! 	    // the file name.  Use ".\{-1,}x" instead (x is
! 	    // the next character), the requirement that :999:
! 	    // follows should work.
  	    STRCPY(regpat, ".\\{-1,}");
  	    regpat += 7;
  	}
  	else
  	{
! 	    // File name followed by '\\' or '%': include as
! 	    // many file name chars as possible.
  	    STRCPY(regpat, "\\f\\+");
  	    regpat += 4;
  	}
***************
*** 298,313 ****
  
      if (*efmp == '[' || *efmp == '\\')
      {
! 	if ((*regpat++ = *efmp) == '[')	/* %*[^a-z0-9] etc. */
  	{
  	    if (efmp[1] == '^')
  		*regpat++ = *++efmp;
  	    if (efmp < efm + len)
  	    {
! 		*regpat++ = *++efmp;	    /* could be ']' */
  		while (efmp < efm + len
  			&& (*regpat++ = *++efmp) != ']')
! 		    /* skip */;
  		if (efmp == efm + len)
  		{
  		    EMSG(_("E374: Missing ] in format string"));
--- 296,311 ----
  
      if (*efmp == '[' || *efmp == '\\')
      {
! 	if ((*regpat++ = *efmp) == '[')	// %*[^a-z0-9] etc.
  	{
  	    if (efmp[1] == '^')
  		*regpat++ = *++efmp;
  	    if (efmp < efm + len)
  	    {
! 		*regpat++ = *++efmp;	    // could be ']'
  		while (efmp < efm + len
  			&& (*regpat++ = *++efmp) != ']')
! 		    // skip ;
  		if (efmp == efm + len)
  		{
  		    EMSG(_("E374: Missing ] in format string"));
***************
*** 315,328 ****
  		}
  	    }
  	}
! 	else if (efmp < efm + len)	/* %*\D, %*\s etc. */
  	    *regpat++ = *++efmp;
  	*regpat++ = '\\';
  	*regpat++ = '+';
      }
      else
      {
! 	/* TODO: scanf()-like: %*ud, %*3c, %*f, ... ? */
  	sprintf((char *)errmsg,
  		_("E375: Unsupported %%%c in format string"), *efmp);
  	EMSG(errmsg);
--- 313,326 ----
  		}
  	    }
  	}
! 	else if (efmp < efm + len)	// %*\D, %*\s etc.
  	    *regpat++ = *++efmp;
  	*regpat++ = '\\';
  	*regpat++ = '+';
      }
      else
      {
! 	// TODO: scanf()-like: %*ud, %*3c, %*f, ... ?
  	sprintf((char *)errmsg,
  		_("E375: Unsupported %%%c in format string"), *efmp);
  	EMSG(errmsg);
***************
*** 374,382 ****
      int		round;
      int		idx = 0;
  
!     /*
!      * Build a regexp pattern for a 'errorformat' option part
!      */
      ptr = regpat;
      *ptr++ = '^';
      round = 0;
--- 372,378 ----
      int		round;
      int		idx = 0;
  
!     // Build a regexp pattern for a 'errorformat' option part
      ptr = regpat;
      *ptr++ = '^';
      round = 0;
***************
*** 404,420 ****
  		    return FAIL;
  	    }
  	    else if (vim_strchr((char_u *)"%\\.^$~[", *efmp) != NULL)
! 		*ptr++ = *efmp;		/* regexp magic characters */
  	    else if (*efmp == '#')
  		*ptr++ = '*';
  	    else if (*efmp == '>')
  		fmt_ptr->conthere = TRUE;
! 	    else if (efmp == efm + 1)		/* analyse prefix */
  	    {
! 		/*
! 		 * prefix is allowed only at the beginning of the errorformat
! 		 * option part
! 		 */
  		efmp = efm_analyze_prefix(efmp, fmt_ptr, errmsg);
  		if (efmp == NULL)
  		    return FAIL;
--- 400,414 ----
  		    return FAIL;
  	    }
  	    else if (vim_strchr((char_u *)"%\\.^$~[", *efmp) != NULL)
! 		*ptr++ = *efmp;		// regexp magic characters
  	    else if (*efmp == '#')
  		*ptr++ = '*';
  	    else if (*efmp == '>')
  		fmt_ptr->conthere = TRUE;
! 	    else if (efmp == efm + 1)		// analyse prefix
  	    {
! 		// prefix is allowed only at the beginning of the errorformat
! 		// option part
  		efmp = efm_analyze_prefix(efmp, fmt_ptr, errmsg);
  		if (efmp == NULL)
  		    return FAIL;
***************
*** 427,438 ****
  		return FAIL;
  	    }
  	}
! 	else			/* copy normal character */
  	{
  	    if (*efmp == '\\' && efmp + 1 < efm + len)
  		++efmp;
  	    else if (vim_strchr((char_u *)".*^$~[", *efmp) != NULL)
! 		*ptr++ = '\\';	/* escape regexp atoms */
  	    if (*efmp)
  		*ptr++ = *efmp;
  	}
--- 421,432 ----
  		return FAIL;
  	    }
  	}
! 	else			// copy normal character
  	{
  	    if (*efmp == '\\' && efmp + 1 < efm + len)
  		++efmp;
  	    else if (vim_strchr((char_u *)".*^$~[", *efmp) != NULL)
! 		*ptr++ = '\\';	// escape regexp atoms
  	    if (*efmp)
  		*ptr++ = *efmp;
  	}
***************
*** 474,482 ****
      for (i = FMT_PATTERNS; i > 0; )
  	sz += (int)STRLEN(fmt_pat[--i].pattern);
  #ifdef BACKSLASH_IN_FILENAME
!     sz += 12; /* "%f" can become twelve chars longer (see efm_to_regpat) */
  #else
!     sz += 2; /* "%f" can become two chars longer */
  #endif
  
      return sz;
--- 468,476 ----
      for (i = FMT_PATTERNS; i > 0; )
  	sz += (int)STRLEN(fmt_pat[--i].pattern);
  #ifdef BACKSLASH_IN_FILENAME
!     sz += 12; // "%f" can become twelve chars longer (see efm_to_regpat)
  #else
!     sz += 2; // "%f" can become two chars longer
  #endif
  
      return sz;
***************
*** 519,566 ****
      if (errmsg == NULL)
  	goto parse_efm_end;
  
!     /*
!      * Each part of the format string is copied and modified from errorformat
!      * to regex prog.  Only a few % characters are allowed.
!      */
! 
!     /*
!      * Get some space to modify the format string into.
!      */
      sz = efm_regpat_bufsz(efm);
      if ((fmtstr = alloc(sz)) == NULL)
  	goto parse_efm_error;
  
      while (efm[0] != NUL)
      {
! 	/*
! 	 * Allocate a new eformat structure and put it at the end of the list
! 	 */
  	fmt_ptr = (efm_T *)alloc_clear((unsigned)sizeof(efm_T));
  	if (fmt_ptr == NULL)
  	    goto parse_efm_error;
! 	if (fmt_first == NULL)	    /* first one */
  	    fmt_first = fmt_ptr;
  	else
  	    fmt_last->next = fmt_ptr;
  	fmt_last = fmt_ptr;
  
! 	/*
! 	 * Isolate one part in the 'errorformat' option
! 	 */
  	len = efm_option_part_len(efm);
  
  	if (efm_to_regpat(efm, len, fmt_ptr, fmtstr, errmsg) == FAIL)
  	    goto parse_efm_error;
  	if ((fmt_ptr->prog = vim_regcomp(fmtstr, RE_MAGIC + RE_STRING)) == NULL)
  	    goto parse_efm_error;
! 	/*
! 	 * Advance to next part
! 	 */
! 	efm = skip_to_option_part(efm + len);	/* skip comma and spaces */
      }
  
!     if (fmt_first == NULL)	/* nothing found */
  	EMSG(_("E378: 'errorformat' contains no pattern"));
  
      goto parse_efm_end;
--- 513,550 ----
      if (errmsg == NULL)
  	goto parse_efm_end;
  
!     // Each part of the format string is copied and modified from errorformat
!     // to regex prog.  Only a few % characters are allowed.
! 
!     // Get some space to modify the format string into.
      sz = efm_regpat_bufsz(efm);
      if ((fmtstr = alloc(sz)) == NULL)
  	goto parse_efm_error;
  
      while (efm[0] != NUL)
      {
! 	// Allocate a new eformat structure and put it at the end of the list
  	fmt_ptr = (efm_T *)alloc_clear((unsigned)sizeof(efm_T));
  	if (fmt_ptr == NULL)
  	    goto parse_efm_error;
! 	if (fmt_first == NULL)	    // first one
  	    fmt_first = fmt_ptr;
  	else
  	    fmt_last->next = fmt_ptr;
  	fmt_last = fmt_ptr;
  
! 	// Isolate one part in the 'errorformat' option
  	len = efm_option_part_len(efm);
  
  	if (efm_to_regpat(efm, len, fmt_ptr, fmtstr, errmsg) == FAIL)
  	    goto parse_efm_error;
  	if ((fmt_ptr->prog = vim_regcomp(fmtstr, RE_MAGIC + RE_STRING)) == NULL)
  	    goto parse_efm_error;
! 	// Advance to next part
! 	efm = skip_to_option_part(efm + len);	// skip comma and spaces
      }
  
!     if (fmt_first == NULL)	// nothing found
  	EMSG(_("E378: 'errorformat' contains no pattern"));
  
      goto parse_efm_end;
***************
*** 611,620 ****
  {
      char_u	*p;
  
!     /*
!      * If the line exceeds LINE_MAXLEN exclude the last
!      * byte since it's not a NL character.
!      */
      state->linelen = newsz > LINE_MAXLEN ? LINE_MAXLEN - 1 : newsz;
      if (state->growbuf == NULL)
      {
--- 595,602 ----
  {
      char_u	*p;
  
!     // If the line exceeds LINE_MAXLEN exclude the last
!     // byte since it's not a NL character.
      state->linelen = newsz > LINE_MAXLEN ? LINE_MAXLEN - 1 : newsz;
      if (state->growbuf == NULL)
      {
***************
*** 639,650 ****
      static int
  qf_get_next_str_line(qfstate_T *state)
  {
!     /* Get the next line from the supplied string */
      char_u	*p_str = state->p_str;
      char_u	*p;
      int		len;
  
!     if (*p_str == NUL) /* Reached the end of the string */
  	return QF_END_OF_INPUT;
  
      p = vim_strchr(p_str, '\n');
--- 621,632 ----
      static int
  qf_get_next_str_line(qfstate_T *state)
  {
!     // Get the next line from the supplied string
      char_u	*p_str = state->p_str;
      char_u	*p;
      int		len;
  
!     if (*p_str == NUL) // Reached the end of the string
  	return QF_END_OF_INPUT;
  
      p = vim_strchr(p_str, '\n');
***************
*** 666,675 ****
      }
      vim_strncpy(state->linebuf, p_str, state->linelen);
  
!     /*
!      * Increment using len in order to discard the rest of the
!      * line if it exceeds LINE_MAXLEN.
!      */
      p_str += len;
      state->p_str = p_str;
  
--- 648,655 ----
      }
      vim_strncpy(state->linebuf, p_str, state->linelen);
  
!     // Increment using len in order to discard the rest of the
!     // line if it exceeds LINE_MAXLEN.
      p_str += len;
      state->p_str = p_str;
  
***************
*** 688,696 ****
      while (p_li != NULL
  	    && (p_li->li_tv.v_type != VAR_STRING
  		|| p_li->li_tv.vval.v_string == NULL))
! 	p_li = p_li->li_next;	/* Skip non-string items */
  
!     if (p_li == NULL)		/* End of the list */
      {
  	state->p_li = NULL;
  	return QF_END_OF_INPUT;
--- 668,676 ----
      while (p_li != NULL
  	    && (p_li->li_tv.v_type != VAR_STRING
  		|| p_li->li_tv.vval.v_string == NULL))
! 	p_li = p_li->li_next;	// Skip non-string items
  
!     if (p_li == NULL)		// End of the list
      {
  	state->p_li = NULL;
  	return QF_END_OF_INPUT;
***************
*** 711,717 ****
  
      vim_strncpy(state->linebuf, p_li->li_tv.vval.v_string, state->linelen);
  
!     state->p_li = p_li->li_next;	/* next item */
      return QF_OK;
  }
  
--- 691,697 ----
  
      vim_strncpy(state->linebuf, p_li->li_tv.vval.v_string, state->linelen);
  
!     state->p_li = p_li->li_next;	// next item
      return QF_OK;
  }
  
***************
*** 724,730 ****
      char_u	*p_buf = NULL;
      int		len;
  
!     /* Get the next line from the supplied buffer */
      if (state->buflnum > state->lnumlast)
  	return QF_END_OF_INPUT;
  
--- 704,710 ----
      char_u	*p_buf = NULL;
      int		len;
  
!     // Get the next line from the supplied buffer
      if (state->buflnum > state->lnumlast)
  	return QF_END_OF_INPUT;
  
***************
*** 764,773 ****
      state->linelen = (int)STRLEN(IObuff);
      if (state->linelen == IOSIZE - 1 && !(IObuff[state->linelen - 1] == '\n'))
      {
! 	/*
! 	 * The current line exceeds IObuff, continue reading using
! 	 * growbuf until EOL or LINE_MAXLEN bytes is read.
! 	 */
  	if (state->growbuf == NULL)
  	{
  	    state->growbufsiz = 2 * (IOSIZE - 1);
--- 744,751 ----
      state->linelen = (int)STRLEN(IObuff);
      if (state->linelen == IOSIZE - 1 && !(IObuff[state->linelen - 1] == '\n'))
      {
! 	// The current line exceeds IObuff, continue reading using
! 	// growbuf until EOL or LINE_MAXLEN bytes is read.
  	if (state->growbuf == NULL)
  	{
  	    state->growbufsiz = 2 * (IOSIZE - 1);
***************
*** 776,782 ****
  		return QF_NOMEM;
  	}
  
! 	/* Copy the read part of the line, excluding null-terminator */
  	memcpy(state->growbuf, IObuff, IOSIZE - 1);
  	growbuflen = state->linelen;
  
--- 754,760 ----
  		return QF_NOMEM;
  	}
  
! 	// Copy the read part of the line, excluding null-terminator
  	memcpy(state->growbuf, IObuff, IOSIZE - 1);
  	growbuflen = state->linelen;
  
***************
*** 806,816 ****
  
  	while (discard)
  	{
! 	    /*
! 	     * The current line is longer than LINE_MAXLEN, continue
! 	     * reading but discard everything until EOL or EOF is
! 	     * reached.
! 	     */
  	    if (fgets((char *)IObuff, IOSIZE, state->fd) == NULL
  		    || (int)STRLEN(IObuff) < IOSIZE - 1
  		    || IObuff[IOSIZE - 1] == '\n')
--- 784,792 ----
  
  	while (discard)
  	{
! 	    // The current line is longer than LINE_MAXLEN, continue
! 	    // reading but discard everything until EOL or EOF is
! 	    // reached.
  	    if (fgets((char *)IObuff, IOSIZE, state->fd) == NULL
  		    || (int)STRLEN(IObuff) < IOSIZE - 1
  		    || IObuff[IOSIZE - 1] == '\n')
***************
*** 824,830 ****
  	state->linebuf = IObuff;
  
  #ifdef FEAT_MBYTE
!     /* Convert a line if it contains a non-ASCII character. */
      if (state->vc.vc_type != CONV_NONE && has_non_ascii(state->linebuf))
      {
  	char_u	*line;
--- 800,806 ----
  	state->linebuf = IObuff;
  
  #ifdef FEAT_MBYTE
!     // Convert a line if it contains a non-ASCII character.
      if (state->vc.vc_type != CONV_NONE && has_non_ascii(state->linebuf))
      {
  	char_u	*line;
***************
*** 864,887 ****
  	if (state->tv != NULL)
  	{
  	    if (state->tv->v_type == VAR_STRING)
! 		/* Get the next line from the supplied string */
  		status = qf_get_next_str_line(state);
  	    else if (state->tv->v_type == VAR_LIST)
! 		/* Get the next line from the supplied list */
  		status = qf_get_next_list_line(state);
  	}
  	else
! 	    /* Get the next line from the supplied buffer */
  	    status = qf_get_next_buf_line(state);
      }
      else
! 	/* Get the next line from the supplied file */
  	status = qf_get_next_file_line(state);
  
      if (status != QF_OK)
  	return status;
  
!     /* remove newline/CR from the line */
      if (state->linelen > 0 && state->linebuf[state->linelen - 1] == '\n')
      {
  	state->linebuf[state->linelen - 1] = NUL;
--- 840,863 ----
  	if (state->tv != NULL)
  	{
  	    if (state->tv->v_type == VAR_STRING)
! 		// Get the next line from the supplied string
  		status = qf_get_next_str_line(state);
  	    else if (state->tv->v_type == VAR_LIST)
! 		// Get the next line from the supplied list
  		status = qf_get_next_list_line(state);
  	}
  	else
! 	    // Get the next line from the supplied buffer
  	    status = qf_get_next_buf_line(state);
      }
      else
! 	// Get the next line from the supplied file
  	status = qf_get_next_file_line(state);
  
      if (status != QF_OK)
  	return status;
  
!     // remove newline/CR from the line
      if (state->linelen > 0 && state->linebuf[state->linelen - 1] == '\n')
      {
  	state->linebuf[state->linelen - 1] = NUL;
***************
*** 924,939 ****
      if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL)
  	return QF_FAIL;
  
!     /* Expand ~/file and $HOME/file to full path. */
      c = *rmp->endp[midx];
      *rmp->endp[midx] = NUL;
      expand_env(rmp->startp[midx], fields->namebuf, CMDBUFFSIZE);
      *rmp->endp[midx] = c;
  
!     /*
!      * For separate filename patterns (%O, %P and %Q), the specified file
!      * should exist.
!      */
      if (vim_strchr((char_u *)"OPQ", prefix) != NULL
  	    && mch_getperm(fields->namebuf) == -1)
  	return QF_FAIL;
--- 900,913 ----
      if (rmp->startp[midx] == NULL || rmp->endp[midx] == NULL)
  	return QF_FAIL;
  
!     // Expand ~/file and $HOME/file to full path.
      c = *rmp->endp[midx];
      *rmp->endp[midx] = NUL;
      expand_env(rmp->startp[midx], fields->namebuf, CMDBUFFSIZE);
      *rmp->endp[midx] = c;
  
!     // For separate filename patterns (%O, %P and %Q), the specified file
!     // should exist.
      if (vim_strchr((char_u *)"OPQ", prefix) != NULL
  	    && mch_getperm(fields->namebuf) == -1)
  	return QF_FAIL;
***************
*** 1004,1010 ****
  
      if (linelen >= fields->errmsglen)
      {
! 	/* linelen + null terminator */
  	if ((p = vim_realloc(fields->errmsg, linelen + 1)) == NULL)
  	    return QF_NOMEM;
  	fields->errmsg = p;
--- 978,984 ----
  
      if (linelen >= fields->errmsglen)
      {
! 	// linelen + null terminator
  	if ((p = vim_realloc(fields->errmsg, linelen + 1)) == NULL)
  	    return QF_NOMEM;
  	fields->errmsg = p;
***************
*** 1029,1035 ****
      len = (int)(rmp->endp[midx] - rmp->startp[midx]);
      if (len >= fields->errmsglen)
      {
! 	/* len + null terminator */
  	if ((p = vim_realloc(fields->errmsg, len + 1)) == NULL)
  	    return QF_NOMEM;
  	fields->errmsg = p;
--- 1003,1009 ----
      len = (int)(rmp->endp[midx] - rmp->startp[midx]);
      if (len >= fields->errmsglen)
      {
! 	// len + null terminator
  	if ((p = vim_realloc(fields->errmsg, len + 1)) == NULL)
  	    return QF_NOMEM;
  	fields->errmsg = p;
***************
*** 1181,1207 ****
  	fields->type = idx;
      else
  	fields->type = 0;
!     /*
!      * Extract error message data from matched line.
!      * We check for an actual submatch, because "\[" and "\]" in
!      * the 'errorformat' may cause the wrong submatch to be used.
!      */
      for (i = 0; i < FMT_PATTERNS; i++)
      {
  	status = QF_OK;
  	midx = (int)fmt_ptr->addr[i];
! 	if (i == 0 && midx > 0)				/* %f */
  	    status = qf_parse_fmt_f(regmatch, midx, fields, idx);
  	else if (i == 5)
  	{
! 	    if (fmt_ptr->flags == '+' && !qf_multiscan)	/* %+ */
  		status = qf_parse_fmt_plus(linebuf, linelen, fields);
! 	    else if (midx > 0)				/* %m */
  		status = qf_parse_fmt_m(regmatch, midx, fields);
  	}
! 	else if (i == 6 && midx > 0)			/* %r */
  	    status = qf_parse_fmt_r(regmatch, midx, tail);
! 	else if (midx > 0)				/* others */
  	    status = (qf_parse_fmt[i])(regmatch, midx, fields);
  
  	if (status != QF_OK)
--- 1155,1180 ----
  	fields->type = idx;
      else
  	fields->type = 0;
! 
!     // Extract error message data from matched line.
!     // We check for an actual submatch, because "\[" and "\]" in
!     // the 'errorformat' may cause the wrong submatch to be used.
      for (i = 0; i < FMT_PATTERNS; i++)
      {
  	status = QF_OK;
  	midx = (int)fmt_ptr->addr[i];
! 	if (i == 0 && midx > 0)				// %f
  	    status = qf_parse_fmt_f(regmatch, midx, fields, idx);
  	else if (i == 5)
  	{
! 	    if (fmt_ptr->flags == '+' && !qf_multiscan)	// %+
  		status = qf_parse_fmt_plus(linebuf, linelen, fields);
! 	    else if (midx > 0)				// %m
  		status = qf_parse_fmt_m(regmatch, midx, fields);
  	}
! 	else if (i == 6 && midx > 0)			// %r
  	    status = qf_parse_fmt_r(regmatch, midx, tail);
! 	else if (midx > 0)				// others
  	    status = (qf_parse_fmt[i])(regmatch, midx, fields);
  
  	if (status != QF_OK)
***************
*** 1247,1253 ****
      fields->type = 0;
      *tail = NULL;
  
!     /* Always ignore case when looking for a matching error. */
      regmatch.rm_ic = TRUE;
      regmatch.regprog = fmt_ptr->prog;
      r = vim_regexec(&regmatch, linebuf, (colnr_T)0);
--- 1220,1226 ----
      fields->type = 0;
      *tail = NULL;
  
!     // Always ignore case when looking for a matching error.
      regmatch.rm_ic = TRUE;
      regmatch.regprog = fmt_ptr->prog;
      r = vim_regexec(&regmatch, linebuf, (colnr_T)0);
***************
*** 1267,1273 ****
      static int
  qf_parse_dir_pfx(int idx, qffields_T *fields, qf_list_T *qfl)
  {
!     if (idx == 'D')				/* enter directory */
      {
  	if (*fields->namebuf == NUL)
  	{
--- 1240,1246 ----
      static int
  qf_parse_dir_pfx(int idx, qffields_T *fields, qf_list_T *qfl)
  {
!     if (idx == 'D')				// enter directory
      {
  	if (*fields->namebuf == NUL)
  	{
***************
*** 1279,1285 ****
  	if (qfl->qf_directory == NULL)
  	    return QF_FAIL;
      }
!     else if (idx == 'X')			/* leave directory */
  	qfl->qf_directory = qf_pop_dir(&qfl->qf_dir_stack);
  
      return QF_OK;
--- 1252,1258 ----
  	if (qfl->qf_directory == NULL)
  	    return QF_FAIL;
      }
!     else if (idx == 'X')			// leave directory
  	qfl->qf_directory = qf_pop_dir(&qfl->qf_dir_stack);
  
      return QF_OK;
***************
*** 1324,1341 ****
  {
      char_u	*p;
  
!     fields->namebuf[0] = NUL;	/* no match found, remove file name */
!     fields->lnum = 0;			/* don't jump to this line */
      fields->valid = FALSE;
      if (linelen >= fields->errmsglen)
      {
! 	/* linelen + null terminator */
  	if ((p = vim_realloc(fields->errmsg, linelen + 1)) == NULL)
  	    return QF_NOMEM;
  	fields->errmsg = p;
  	fields->errmsglen = linelen + 1;
      }
!     /* copy whole line to error message */
      vim_strncpy(fields->errmsg, linebuf, linelen);
  
      return QF_OK;
--- 1297,1314 ----
  {
      char_u	*p;
  
!     fields->namebuf[0] = NUL;	// no match found, remove file name
!     fields->lnum = 0;		// don't jump to this line
      fields->valid = FALSE;
      if (linelen >= fields->errmsglen)
      {
! 	// linelen + null terminator
  	if ((p = vim_realloc(fields->errmsg, linelen + 1)) == NULL)
  	    return QF_NOMEM;
  	fields->errmsg = p;
  	fields->errmsglen = linelen + 1;
      }
!     // copy whole line to error message
      vim_strncpy(fields->errmsg, linebuf, linelen);
  
      return QF_OK;
***************
*** 1376,1382 ****
  	if (qfprev->qf_nr == -1)
  	    qfprev->qf_nr = fields->enr;
  	if (vim_isprintc(fields->type) && !qfprev->qf_type)
! 	    /* only printable chars allowed */
  	    qfprev->qf_type = fields->type;
  
  	if (!qfprev->qf_lnum)
--- 1349,1355 ----
  	if (qfprev->qf_nr == -1)
  	    qfprev->qf_nr = fields->enr;
  	if (vim_isprintc(fields->type) && !qfprev->qf_type)
! 	    // only printable chars allowed
  	    qfprev->qf_type = fields->type;
  
  	if (!qfprev->qf_lnum)
***************
*** 1419,1438 ****
      int			status;
  
  restofline:
!     /* If there was no %> item start at the first pattern */
      if (fmt_start == NULL)
  	fmt_ptr = fmt_first;
      else
      {
! 	/* Otherwise start from the last used pattern */
  	fmt_ptr = fmt_start;
  	fmt_start = NULL;
      }
  
!     /*
!      * Try to match each part of 'errorformat' until we find a complete
!      * match or no match.
!      */
      fields->valid = TRUE;
      for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next)
      {
--- 1392,1409 ----
      int			status;
  
  restofline:
!     // If there was no %> item start at the first pattern
      if (fmt_start == NULL)
  	fmt_ptr = fmt_first;
      else
      {
! 	// Otherwise start from the last used pattern
  	fmt_ptr = fmt_start;
  	fmt_start = NULL;
      }
  
!     // Try to match each part of 'errorformat' until we find a complete
!     // match or no match.
      fields->valid = TRUE;
      for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next)
      {
***************
*** 1450,1456 ****
      {
  	if (fmt_ptr != NULL)
  	{
! 	    /* 'D' and 'X' directory specifiers */
  	    status = qf_parse_dir_pfx(idx, fields, qfl);
  	    if (status != QF_OK)
  		return status;
--- 1421,1427 ----
      {
  	if (fmt_ptr != NULL)
  	{
! 	    // 'D' and 'X' directory specifiers
  	    status = qf_parse_dir_pfx(idx, fields, qfl);
  	    if (status != QF_OK)
  		return status;
***************
*** 1465,1495 ****
      }
      else if (fmt_ptr != NULL)
      {
! 	/* honor %> item */
  	if (fmt_ptr->conthere)
  	    fmt_start = fmt_ptr;
  
  	if (vim_strchr((char_u *)"AEWI", idx) != NULL)
  	{
! 	    qfl->qf_multiline = TRUE;	/* start of a multi-line message */
! 	    qfl->qf_multiignore = FALSE;/* reset continuation */
  	}
  	else if (vim_strchr((char_u *)"CZ", idx) != NULL)
! 	{				/* continuation of multi-line msg */
  	    status = qf_parse_multiline_pfx(qi, qf_idx, idx, qfl, fields);
  	    if (status != QF_OK)
  		return status;
  	}
  	else if (vim_strchr((char_u *)"OPQ", idx) != NULL)
! 	{				/* global file names */
  	    status = qf_parse_file_pfx(idx, fields, qfl, tail);
  	    if (status == QF_MULTISCAN)
  		goto restofline;
  	}
! 	if (fmt_ptr->flags == '-')	/* generally exclude this line */
  	{
  	    if (qfl->qf_multiline)
! 		/* also exclude continuation lines */
  		qfl->qf_multiignore = TRUE;
  	    return QF_IGNORE_LINE;
  	}
--- 1436,1466 ----
      }
      else if (fmt_ptr != NULL)
      {
! 	// honor %> item
  	if (fmt_ptr->conthere)
  	    fmt_start = fmt_ptr;
  
  	if (vim_strchr((char_u *)"AEWI", idx) != NULL)
  	{
! 	    qfl->qf_multiline = TRUE;	// start of a multi-line message
! 	    qfl->qf_multiignore = FALSE;// reset continuation
  	}
  	else if (vim_strchr((char_u *)"CZ", idx) != NULL)
! 	{				// continuation of multi-line msg
  	    status = qf_parse_multiline_pfx(qi, qf_idx, idx, qfl, fields);
  	    if (status != QF_OK)
  		return status;
  	}
  	else if (vim_strchr((char_u *)"OPQ", idx) != NULL)
! 	{				// global file names
  	    status = qf_parse_file_pfx(idx, fields, qfl, tail);
  	    if (status == QF_MULTISCAN)
  		goto restofline;
  	}
! 	if (fmt_ptr->flags == '-')	// generally exclude this line
  	{
  	    if (qfl->qf_multiline)
! 		// also exclude continuation lines
  		qfl->qf_multiignore = TRUE;
  	    return QF_IGNORE_LINE;
  	}
***************
*** 1624,1632 ****
      buf_T	    *buf,
      typval_T	    *tv,
      char_u	    *errorformat,
!     int		    newlist,		/* TRUE: start a new error list */
!     linenr_T	    lnumfirst,		/* first line number to use */
!     linenr_T	    lnumlast,		/* last line number to use */
      char_u	    *qf_title,
      char_u	    *enc)
  {
--- 1595,1603 ----
      buf_T	    *buf,
      typval_T	    *tv,
      char_u	    *errorformat,
!     int		    newlist,		// TRUE: start a new error list
!     linenr_T	    lnumfirst,		// first line number to use
!     linenr_T	    lnumlast,		// last line number to use
      char_u	    *qf_title,
      char_u	    *enc)
  {
***************
*** 1638,1647 ****
      static efm_T    *fmt_first = NULL;
      char_u	    *efm;
      static char_u   *last_efm = NULL;
!     int		    retval = -1;	/* default: return error flag */
      int		    status;
  
!     /* Do not used the cached buffer, it may have been wiped out. */
      VIM_CLEAR(qf_last_bufname);
  
      vim_memset(&state, 0, sizeof(state));
--- 1609,1618 ----
      static efm_T    *fmt_first = NULL;
      char_u	    *efm;
      static char_u   *last_efm = NULL;
!     int		    retval = -1;	// default: return error flag
      int		    status;
  
!     // Do not used the cached buffer, it may have been wiped out.
      VIM_CLEAR(qf_last_bufname);
  
      vim_memset(&state, 0, sizeof(state));
***************
*** 1653,1665 ****
  
      if (newlist || qf_idx == qi->qf_listcount)
      {
! 	/* make place for a new list */
  	qf_new_list(qi, qf_title);
  	qf_idx = qi->qf_curlist;
      }
      else
      {
! 	/* Adding to existing list, use last entry. */
  	adding = TRUE;
  	if (!qf_list_empty(qi, qf_idx))
  	    old_last = qi->qf_lists[qf_idx].qf_last;
--- 1624,1636 ----
  
      if (newlist || qf_idx == qi->qf_listcount)
      {
! 	// make place for a new list
  	qf_new_list(qi, qf_title);
  	qf_idx = qi->qf_curlist;
      }
      else
      {
! 	// Adding to existing list, use last entry.
  	adding = TRUE;
  	if (!qf_list_empty(qi, qf_idx))
  	    old_last = qi->qf_lists[qf_idx].qf_last;
***************
*** 1667,1714 ****
  
      qfl = &qi->qf_lists[qf_idx];
  
!     /* Use the local value of 'errorformat' if it's set. */
      if (errorformat == p_efm && tv == NULL && *buf->b_p_efm != NUL)
  	efm = buf->b_p_efm;
      else
  	efm = errorformat;
  
!     /*
!      * If the errorformat didn't change between calls, then reuse the
!      * previously parsed values.
!      */
      if (last_efm == NULL || (STRCMP(last_efm, efm) != 0))
      {
! 	/* free the previously parsed data */
  	VIM_CLEAR(last_efm);
  	free_efm_list(&fmt_first);
  
! 	/* parse the current 'efm' */
  	fmt_first = parse_efm_option(efm);
  	if (fmt_first != NULL)
  	    last_efm = vim_strsave(efm);
      }
  
!     if (fmt_first == NULL)	/* nothing found */
  	goto error2;
  
!     /*
!      * got_int is reset here, because it was probably set when killing the
!      * ":make" command, but we still want to read the errorfile then.
!      */
      got_int = FALSE;
  
!     /*
!      * Read the lines in the error file one by one.
!      * Try to recognize one of the error formats in each line.
!      */
      while (!got_int)
      {
! 	/* Get the next line from a file/buffer/list/string */
  	status = qf_get_nextline(&state);
! 	if (status == QF_NOMEM)		/* memory alloc failure */
  	    goto qf_init_end;
! 	if (status == QF_END_OF_INPUT)	/* end of input */
  	    break;
  
  	status = qf_parse_line(qi, qf_idx, state.linebuf, state.linelen,
--- 1638,1679 ----
  
      qfl = &qi->qf_lists[qf_idx];
  
!     // Use the local value of 'errorformat' if it's set.
      if (errorformat == p_efm && tv == NULL && *buf->b_p_efm != NUL)
  	efm = buf->b_p_efm;
      else
  	efm = errorformat;
  
!     // If the errorformat didn't change between calls, then reuse the
!     // previously parsed values.
      if (last_efm == NULL || (STRCMP(last_efm, efm) != 0))
      {
! 	// free the previously parsed data
  	VIM_CLEAR(last_efm);
  	free_efm_list(&fmt_first);
  
! 	// parse the current 'efm'
  	fmt_first = parse_efm_option(efm);
  	if (fmt_first != NULL)
  	    last_efm = vim_strsave(efm);
      }
  
!     if (fmt_first == NULL)	// nothing found
  	goto error2;
  
!     // got_int is reset here, because it was probably set when killing the
!     // ":make" command, but we still want to read the errorfile then.
      got_int = FALSE;
  
!     // Read the lines in the error file one by one.
!     // Try to recognize one of the error formats in each line.
      while (!got_int)
      {
! 	// Get the next line from a file/buffer/list/string
  	status = qf_get_nextline(&state);
! 	if (status == QF_NOMEM)		// memory alloc failure
  	    goto qf_init_end;
! 	if (status == QF_END_OF_INPUT)	// end of input
  	    break;
  
  	status = qf_parse_line(qi, qf_idx, state.linebuf, state.linelen,
***************
*** 1744,1750 ****
      {
  	if (qfl->qf_index == 0)
  	{
! 	    /* no valid entry found */
  	    qfl->qf_ptr = qfl->qf_start;
  	    qfl->qf_index = 1;
  	    qfl->qf_nonevalid = TRUE;
--- 1709,1715 ----
      {
  	if (qfl->qf_index == 0)
  	{
! 	    // no valid entry found
  	    qfl->qf_ptr = qfl->qf_start;
  	    qfl->qf_index = 1;
  	    qfl->qf_nonevalid = TRUE;
***************
*** 1755,1761 ****
  	    if (qfl->qf_ptr == NULL)
  		qfl->qf_ptr = qfl->qf_start;
  	}
! 	/* return number of matches */
  	retval = qfl->qf_count;
  	goto qf_init_end;
      }
--- 1720,1726 ----
  	    if (qfl->qf_ptr == NULL)
  		qfl->qf_ptr = qfl->qf_start;
  	}
! 	// return number of matches
  	retval = qfl->qf_count;
  	goto qf_init_end;
      }
***************
*** 1763,1769 ****
  error2:
      if (!adding)
      {
! 	/* Error when creating a new list. Free the new list */
  	qf_free(&qi->qf_lists[qi->qf_curlist]);
  	qi->qf_listcount--;
  	if (qi->qf_curlist > 0)
--- 1728,1734 ----
  error2:
      if (!adding)
      {
! 	// Error when creating a new list. Free the new list
  	qf_free(&qi->qf_lists[qi->qf_curlist]);
  	qi->qf_listcount--;
  	if (qi->qf_curlist > 0)
***************
*** 1787,1793 ****
  qf_init(win_T	    *wp,
  	char_u	    *efile,
  	char_u	    *errorformat,
! 	int	    newlist,		/* TRUE: start a new error list */
  	char_u	    *qf_title,
  	char_u	    *enc)
  {
--- 1752,1758 ----
  qf_init(win_T	    *wp,
  	char_u	    *efile,
  	char_u	    *errorformat,
! 	int	    newlist,		// TRUE: start a new error list
  	char_u	    *qf_title,
  	char_u	    *enc)
  {
***************
*** 1848,1865 ****
  {
      int		i;
  
!     /*
!      * If the current entry is not the last entry, delete entries beyond
!      * the current entry.  This makes it possible to browse in a tree-like
!      * way with ":grep'.
!      */
      while (qi->qf_listcount > qi->qf_curlist + 1)
  	qf_free(&qi->qf_lists[--qi->qf_listcount]);
  
!     /*
!      * When the stack is full, remove to oldest entry
!      * Otherwise, add a new entry.
!      */
      if (qi->qf_listcount == LISTCOUNT)
      {
  	qf_free(&qi->qf_lists[0]);
--- 1813,1826 ----
  {
      int		i;
  
!     // If the current entry is not the last entry, delete entries beyond
!     // the current entry.  This makes it possible to browse in a tree-like
!     // way with ":grep'.
      while (qi->qf_listcount > qi->qf_curlist + 1)
  	qf_free(&qi->qf_lists[--qi->qf_listcount]);
  
!     // When the stack is full, remove to oldest entry
!     // Otherwise, add a new entry.
      if (qi->qf_listcount == LISTCOUNT)
      {
  	qf_free(&qi->qf_lists[0]);
***************
*** 1886,1897 ****
      qi = *pqi;
      if (qi == NULL)
  	return;
!     *pqi = NULL;	/* Remove reference to this list */
  
      qi->qf_refcount--;
      if (qi->qf_refcount < 1)
      {
! 	/* No references to this location list */
  	for (i = 0; i < qi->qf_listcount; ++i)
  	    qf_free(&qi->qf_lists[i]);
  	vim_free(qi);
--- 1847,1858 ----
      qi = *pqi;
      if (qi == NULL)
  	return;
!     *pqi = NULL;	// Remove reference to this list
  
      qi->qf_refcount--;
      if (qi->qf_refcount < 1)
      {
! 	// No references to this location list
  	for (i = 0; i < qi->qf_listcount; ++i)
  	    qf_free(&qi->qf_lists[i]);
  	vim_free(qi);
***************
*** 1909,1920 ****
  
      if (wp != NULL)
      {
! 	/* location list */
  	ll_free_all(&wp->w_llist);
  	ll_free_all(&wp->w_llist_ref);
      }
      else
! 	/* quickfix list */
  	for (i = 0; i < qi->qf_listcount; ++i)
  	    qf_free(&qi->qf_lists[i]);
  }
--- 1870,1881 ----
  
      if (wp != NULL)
      {
! 	// location list
  	ll_free_all(&wp->w_llist);
  	ll_free_all(&wp->w_llist_ref);
      }
      else
! 	// quickfix list
  	for (i = 0; i < qi->qf_listcount; ++i)
  	    qf_free(&qi->qf_lists[i]);
  }
***************
*** 1925,1948 ****
   */
      static int
  qf_add_entry(
!     qf_info_T	*qi,		/* quickfix list */
!     int		qf_idx,		/* list index */
!     char_u	*dir,		/* optional directory name */
!     char_u	*fname,		/* file name or NULL */
!     char_u	*module,	/* module name or NULL */
!     int		bufnum,		/* buffer number or zero */
!     char_u	*mesg,		/* message */
!     long	lnum,		/* line number */
!     int		col,		/* column */
!     int		vis_col,	/* using visual column */
!     char_u	*pattern,	/* search pattern */
!     int		nr,		/* error number */
!     int		type,		/* type character */
!     int		valid)		/* valid entry */
  {
      qf_list_T	*qfl = &qi->qf_lists[qf_idx];
      qfline_T	*qfp;
!     qfline_T	**lastp;	/* pointer to qf_last or NULL */
  
      if ((qfp = (qfline_T *)alloc((unsigned)sizeof(qfline_T))) == NULL)
  	return FAIL;
--- 1886,1909 ----
   */
      static int
  qf_add_entry(
!     qf_info_T	*qi,		// quickfix list
!     int		qf_idx,		// list index
!     char_u	*dir,		// optional directory name
!     char_u	*fname,		// file name or NULL
!     char_u	*module,	// module name or NULL
!     int		bufnum,		// buffer number or zero
!     char_u	*mesg,		// message
!     long	lnum,		// line number
!     int		col,		// column
!     int		vis_col,	// using visual column
!     char_u	*pattern,	// search pattern
!     int		nr,		// error number
!     int		type,		// type character
!     int		valid)		// valid entry
  {
      qf_list_T	*qfl = &qi->qf_lists[qf_idx];
      qfline_T	*qfp;
!     qfline_T	**lastp;	// pointer to qf_last or NULL
  
      if ((qfp = (qfline_T *)alloc((unsigned)sizeof(qfline_T))) == NULL)
  	return FAIL;
***************
*** 1983,1995 ****
  	return FAIL;
      }
      qfp->qf_nr = nr;
!     if (type != 1 && !vim_isprintc(type)) /* only printable chars allowed */
  	type = 0;
      qfp->qf_type = type;
      qfp->qf_valid = valid;
  
      lastp = &qfl->qf_last;
!     if (qf_list_empty(qi, qf_idx))	/* first element in the list */
      {
  	qfl->qf_start = qfp;
  	qfl->qf_ptr = qfp;
--- 1944,1956 ----
  	return FAIL;
      }
      qfp->qf_nr = nr;
!     if (type != 1 && !vim_isprintc(type)) // only printable chars allowed
  	type = 0;
      qfp->qf_type = type;
      qfp->qf_valid = valid;
  
      lastp = &qfl->qf_last;
!     if (qf_list_empty(qi, qf_idx))	// first element in the list
      {
  	qfl->qf_start = qfp;
  	qfl->qf_ptr = qfp;
***************
*** 2005,2012 ****
      qfp->qf_cleared = FALSE;
      *lastp = qfp;
      ++qfl->qf_count;
!     if (qfl->qf_index == 0 && qfp->qf_valid)
! 				/* first valid entry */
      {
  	qfl->qf_index = qfl->qf_count;
  	qfl->qf_ptr = qfp;
--- 1966,1972 ----
      qfp->qf_cleared = FALSE;
      *lastp = qfp;
      ++qfl->qf_count;
!     if (qfl->qf_index == 0 && qfp->qf_valid)	// first valid entry
      {
  	qfl->qf_index = qfl->qf_count;
  	qfl->qf_ptr = qfp;
***************
*** 2037,2053 ****
  ll_get_or_alloc_list(win_T *wp)
  {
      if (IS_LL_WINDOW(wp))
! 	/* For a location list window, use the referenced location list */
  	return wp->w_llist_ref;
  
!     /*
!      * For a non-location list window, w_llist_ref should not point to a
!      * location list.
!      */
      ll_free_all(&wp->w_llist_ref);
  
      if (wp->w_llist == NULL)
! 	wp->w_llist = ll_new_list();	    /* new location list */
      return wp->w_llist;
  }
  
--- 1997,2011 ----
  ll_get_or_alloc_list(win_T *wp)
  {
      if (IS_LL_WINDOW(wp))
! 	// For a location list window, use the referenced location list
  	return wp->w_llist_ref;
  
!     // For a non-location list window, w_llist_ref should not point to a
!     // location list.
      ll_free_all(&wp->w_llist_ref);
  
      if (wp->w_llist == NULL)
! 	wp->w_llist = ll_new_list();	    // new location list
      return wp->w_llist;
  }
  
***************
*** 2195,2201 ****
      buf_T	*buf;
      char_u	*bufname;
  
!     if (fname == NULL || *fname == NUL)		/* no file name */
  	return 0;
  
  #ifdef VMS
--- 2153,2159 ----
      buf_T	*buf;
      char_u	*bufname;
  
!     if (fname == NULL || *fname == NUL)		// no file name
  	return 0;
  
  #ifdef VMS
***************
*** 2209,2220 ****
      if (directory != NULL && !vim_isAbsName(fname)
  	    && (ptr = concat_fnames(directory, fname, TRUE)) != NULL)
      {
! 	/*
! 	 * Here we check if the file really exists.
! 	 * This should normally be true, but if make works without
! 	 * "leaving directory"-messages we might have missed a
! 	 * directory change.
! 	 */
  	if (mch_getperm(ptr) < 0)
  	{
  	    vim_free(ptr);
--- 2167,2176 ----
      if (directory != NULL && !vim_isAbsName(fname)
  	    && (ptr = concat_fnames(directory, fname, TRUE)) != NULL)
      {
! 	// Here we check if the file really exists.
! 	// This should normally be true, but if make works without
! 	// "leaving directory"-messages we might have missed a
! 	// directory change.
  	if (mch_getperm(ptr) < 0)
  	{
  	    vim_free(ptr);
***************
*** 2224,2230 ****
  	    else
  		ptr = vim_strsave(fname);
  	}
! 	/* Use concatenated directory name and file name */
  	bufname = ptr;
      }
      else
--- 2180,2186 ----
  	    else
  		ptr = vim_strsave(fname);
  	}
! 	// Use concatenated directory name and file name
  	bufname = ptr;
      }
      else
***************
*** 2264,2270 ****
      struct dir_stack_T  *ds_new;
      struct dir_stack_T  *ds_ptr;
  
!     /* allocate new stack element and hook it in */
      ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T));
      if (ds_new == NULL)
  	return NULL;
--- 2220,2226 ----
      struct dir_stack_T  *ds_new;
      struct dir_stack_T  *ds_ptr;
  
!     // allocate new stack element and hook it in
      ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T));
      if (ds_new == NULL)
  	return NULL;
***************
*** 2272,2288 ****
      ds_new->next = *stackptr;
      *stackptr = ds_new;
  
!     /* store directory on the stack */
      if (vim_isAbsName(dirbuf)
  	    || (*stackptr)->next == NULL
  	    || (*stackptr && is_file_stack))
  	(*stackptr)->dirname = vim_strsave(dirbuf);
      else
      {
! 	/* Okay we don't have an absolute path.
! 	 * dirbuf must be a subdir of one of the directories on the stack.
! 	 * Let's search...
! 	 */
  	ds_new = (*stackptr)->next;
  	(*stackptr)->dirname = NULL;
  	while (ds_new)
--- 2228,2243 ----
      ds_new->next = *stackptr;
      *stackptr = ds_new;
  
!     // store directory on the stack
      if (vim_isAbsName(dirbuf)
  	    || (*stackptr)->next == NULL
  	    || (*stackptr && is_file_stack))
  	(*stackptr)->dirname = vim_strsave(dirbuf);
      else
      {
! 	// Okay we don't have an absolute path.
! 	// dirbuf must be a subdir of one of the directories on the stack.
! 	// Let's search...
  	ds_new = (*stackptr)->next;
  	(*stackptr)->dirname = NULL;
  	while (ds_new)
***************
*** 2296,2302 ****
  	    ds_new = ds_new->next;
  	}
  
! 	/* clean up all dirs we already left */
  	while ((*stackptr)->next != ds_new)
  	{
  	    ds_ptr = (*stackptr)->next;
--- 2251,2257 ----
  	    ds_new = ds_new->next;
  	}
  
! 	// clean up all dirs we already left
  	while ((*stackptr)->next != ds_new)
  	{
  	    ds_ptr = (*stackptr)->next;
***************
*** 2305,2311 ****
  	    vim_free(ds_ptr);
  	}
  
! 	/* Nothing found -> it must be on top level */
  	if (ds_new == NULL)
  	{
  	    vim_free((*stackptr)->dirname);
--- 2260,2266 ----
  	    vim_free(ds_ptr);
  	}
  
! 	// Nothing found -> it must be on top level
  	if (ds_new == NULL)
  	{
  	    vim_free((*stackptr)->dirname);
***************
*** 2333,2342 ****
  {
      struct dir_stack_T  *ds_ptr;
  
!     /* TODO: Should we check if dirbuf is the directory on top of the stack?
!      * What to do if it isn't? */
  
!     /* pop top element and free it */
      if (*stackptr != NULL)
      {
  	ds_ptr = *stackptr;
--- 2288,2297 ----
  {
      struct dir_stack_T  *ds_ptr;
  
!     // TODO: Should we check if dirbuf is the directory on top of the stack?
!     // What to do if it isn't?
  
!     // pop top element and free it
      if (*stackptr != NULL)
      {
  	ds_ptr = *stackptr;
***************
*** 2345,2351 ****
  	vim_free(ds_ptr);
      }
  
!     /* return NEW top element as current dir or NULL if stack is empty*/
      return *stackptr ? (*stackptr)->dirname : NULL;
  }
  
--- 2300,2306 ----
  	vim_free(ds_ptr);
      }
  
!     // return NEW top element as current dir or NULL if stack is empty
      return *stackptr ? (*stackptr)->dirname : NULL;
  }
  
***************
*** 2392,2398 ****
      struct dir_stack_T     *ds_tmp;
      char_u		   *fullname;
  
!     /* no dirs on the stack - there's nothing we can do */
      if (qfl->qf_dir_stack == NULL)
  	return NULL;
  
--- 2347,2353 ----
      struct dir_stack_T     *ds_tmp;
      char_u		   *fullname;
  
!     // no dirs on the stack - there's nothing we can do
      if (qfl->qf_dir_stack == NULL)
  	return NULL;
  
***************
*** 2403,2411 ****
  	vim_free(fullname);
  	fullname = concat_fnames(ds_ptr->dirname, filename, TRUE);
  
! 	/* If concat_fnames failed, just go on. The worst thing that can happen
! 	 * is that we delete the entire stack.
! 	 */
  	if ((fullname != NULL) && (mch_getperm(fullname) >= 0))
  	    break;
  
--- 2358,2365 ----
  	vim_free(fullname);
  	fullname = concat_fnames(ds_ptr->dirname, filename, TRUE);
  
! 	// If concat_fnames failed, just go on. The worst thing that can happen
! 	// is that we delete the entire stack.
  	if ((fullname != NULL) && (mch_getperm(fullname) >= 0))
  	    break;
  
***************
*** 2414,2420 ****
  
      vim_free(fullname);
  
!     /* clean up all dirs we already left */
      while (qfl->qf_dir_stack->next != ds_ptr)
      {
  	ds_tmp = qfl->qf_dir_stack->next;
--- 2368,2374 ----
  
      vim_free(fullname);
  
!     // clean up all dirs we already left
      while (qfl->qf_dir_stack->next != ds_ptr)
      {
  	ds_tmp = qfl->qf_dir_stack->next;
***************
*** 2437,2443 ****
  
      if (wp != NULL)
      {
! 	qi = GET_LOC_LIST(wp);	    /* Location list */
  	if (qi == NULL)
  	    return FALSE;
      }
--- 2391,2397 ----
  
      if (wp != NULL)
      {
! 	qi = GET_LOC_LIST(wp);	    // Location list
  	if (qi == NULL)
  	    return FALSE;
      }
***************
*** 2461,2473 ****
      qfline_T	*qfp;
      int		i;
  
!     /* Search for the entry in the current list */
      for (i = 0, qfp = qfl->qf_start; i < qfl->qf_count;
  	    ++i, qfp = qfp->qf_next)
  	if (qfp == NULL || qfp == qf_ptr)
  	    break;
  
!     if (i == qfl->qf_count) /* Entry is not found */
  	return FALSE;
  
      return TRUE;
--- 2415,2427 ----
      qfline_T	*qfp;
      int		i;
  
!     // Search for the entry in the current list
      for (i = 0, qfp = qfl->qf_start; i < qfl->qf_count;
  	    ++i, qfp = qfp->qf_next)
  	if (qfp == NULL || qfp == qf_ptr)
  	    break;
  
!     if (i == qfl->qf_count) // Entry is not found
  	return FALSE;
  
      return TRUE;
***************
*** 2667,2682 ****
  	win_enter(wp, TRUE);
      else
      {
! 	/*
! 	 * Split off help window; put it at far top if no position
! 	 * specified, the current window is vertically split and narrow.
! 	 */
  	flags = WSP_HELP;
  	if (cmdmod.split == 0 && curwin->w_width != Columns
  		&& curwin->w_width < 80)
  	    flags |= WSP_TOP;
  	if (IS_LL_STACK(qi))
! 	    flags |= WSP_NEWLOC;  /* don't copy the location list */
  
  	if (win_split(0, flags) == FAIL)
  	    return FAIL;
--- 2621,2634 ----
  	win_enter(wp, TRUE);
      else
      {
! 	// Split off help window; put it at far top if no position
! 	// specified, the current window is vertically split and narrow.
  	flags = WSP_HELP;
  	if (cmdmod.split == 0 && curwin->w_width != Columns
  		&& curwin->w_width < 80)
  	    flags |= WSP_TOP;
  	if (IS_LL_STACK(qi))
! 	    flags |= WSP_NEWLOC;  // don't copy the location list
  
  	if (win_split(0, flags) == FAIL)
  	    return FAIL;
***************
*** 2688,2701 ****
  
  	if (IS_LL_STACK(qi))		// not a quickfix list
  	{
! 	    /* The new window should use the supplied location list */
  	    curwin->w_llist = qi;
  	    qi->qf_refcount++;
  	}
      }
  
      if (!p_im)
! 	restart_edit = 0;	    /* don't want insert mode in help file */
  
      return OK;
  }
--- 2640,2653 ----
  
  	if (IS_LL_STACK(qi))		// not a quickfix list
  	{
! 	    // The new window should use the supplied location list
  	    curwin->w_llist = qi;
  	    qi->qf_refcount++;
  	}
      }
  
      if (!p_im)
! 	restart_edit = 0;	    // don't want insert mode in help file
  
      return OK;
  }
***************
*** 2764,2777 ****
      if (ll_ref != NULL)
  	flags |= WSP_NEWLOC;
      if (win_split(0, flags) == FAIL)
! 	return FAIL;		/* not enough room for window */
!     p_swb = empty_option;	/* don't split again */
      swb_flags = 0;
      RESET_BINDING(curwin);
      if (ll_ref != NULL)
      {
! 	/* The new window should use the location list from the
! 	 * location list window */
  	curwin->w_llist = ll_ref;
  	ll_ref->qf_refcount++;
      }
--- 2716,2729 ----
      if (ll_ref != NULL)
  	flags |= WSP_NEWLOC;
      if (win_split(0, flags) == FAIL)
! 	return FAIL;		// not enough room for window
!     p_swb = empty_option;	// don't split again
      swb_flags = 0;
      RESET_BINDING(curwin);
      if (ll_ref != NULL)
      {
! 	// The new window should use the location list from the
! 	// location list window
  	curwin->w_llist = ll_ref;
  	ll_ref->qf_refcount++;
      }
***************
*** 2791,2819 ****
  
      if (win == NULL)
      {
! 	/* Find the window showing the selected file */
  	FOR_ALL_WINDOWS(win)
  	    if (win->w_buffer->b_fnum == qf_fnum)
  		break;
  	if (win == NULL)
  	{
! 	    /* Find a previous usable window */
  	    win = curwin;
  	    do
  	    {
  		if (bt_normal(win->w_buffer))
  		    break;
  		if (win->w_prev == NULL)
! 		    win = lastwin;	/* wrap around the top */
  		else
! 		    win = win->w_prev; /* go to previous window */
  	    } while (win != curwin);
  	}
      }
      win_goto(win);
  
!     /* If the location list for the window is not set, then set it
!      * to the location list from the location window */
      if (win->w_llist == NULL)
      {
  	win->w_llist = ll_ref;
--- 2743,2771 ----
  
      if (win == NULL)
      {
! 	// Find the window showing the selected file
  	FOR_ALL_WINDOWS(win)
  	    if (win->w_buffer->b_fnum == qf_fnum)
  		break;
  	if (win == NULL)
  	{
! 	    // Find a previous usable window
  	    win = curwin;
  	    do
  	    {
  		if (bt_normal(win->w_buffer))
  		    break;
  		if (win->w_prev == NULL)
! 		    win = lastwin;	// wrap around the top
  		else
! 		    win = win->w_prev; // go to previous window
  	    } while (win != curwin);
  	}
      }
      win_goto(win);
  
!     // If the location list for the window is not set, then set it
!     // to the location list from the location window
      if (win->w_llist == NULL)
      {
  	win->w_llist = ll_ref;
***************
*** 2841,2854 ****
  	if (win->w_buffer->b_fnum == qf_fnum)
  	    break;
  	if (win->w_prev == NULL)
! 	    win = lastwin;	/* wrap around the top */
  	else
! 	    win = win->w_prev;	/* go to previous window */
  
  	if (IS_QF_WINDOW(win))
  	{
! 	    /* Didn't find it, go to the window before the quickfix
! 	     * window. */
  	    if (altwin != NULL)
  		win = altwin;
  	    else if (curwin->w_prev != NULL)
--- 2793,2806 ----
  	if (win->w_buffer->b_fnum == qf_fnum)
  	    break;
  	if (win->w_prev == NULL)
! 	    win = lastwin;	// wrap around the top
  	else
! 	    win = win->w_prev;	// go to previous window
  
  	if (IS_QF_WINDOW(win))
  	{
! 	    // Didn't find it, go to the window before the quickfix
! 	    // window.
  	    if (altwin != NULL)
  		win = altwin;
  	    else if (curwin->w_prev != NULL)
***************
*** 2858,2864 ****
  	    break;
  	}
  
! 	/* Remember a usable window. */
  	if (altwin == NULL && !win->w_p_pvw && bt_normal(win->w_buffer))
  	    altwin = win;
      }
--- 2810,2816 ----
  	    break;
  	}
  
! 	// Remember a usable window.
  	if (altwin == NULL && !win->w_p_pvw && bt_normal(win->w_buffer))
  	    altwin = win;
      }
***************
*** 2885,2891 ****
      ll_ref = curwin->w_llist_ref;
      if (ll_ref != NULL)
      {
! 	/* Find a non-quickfix window with this location list */
  	usable_win_ptr = qf_find_win_with_loclist(ll_ref);
  	if (usable_win_ptr != NULL)
  	    usable_win = 1;
--- 2837,2843 ----
      ll_ref = curwin->w_llist_ref;
      if (ll_ref != NULL)
      {
! 	// Find a non-quickfix window with this location list
  	usable_win_ptr = qf_find_win_with_loclist(ll_ref);
  	if (usable_win_ptr != NULL)
  	    usable_win = 1;
***************
*** 2893,2926 ****
  
      if (!usable_win)
      {
! 	/* Locate a window showing a normal buffer */
  	win = qf_find_win_with_normal_buf();
  	if (win != NULL)
  	    usable_win = 1;
      }
  
!     /*
!      * If no usable window is found and 'switchbuf' contains "usetab"
!      * then search in other tabs.
!      */
      if (!usable_win && (swb_flags & SWB_USETAB))
  	usable_win = qf_goto_tabwin_with_file(qf_fnum);
  
!     /*
!      * If there is only one window and it is the quickfix window, create a
!      * new one above the quickfix window.
!      */
      if ((ONE_WINDOW && bt_quickfix(curbuf)) || !usable_win)
      {
  	if (qf_open_new_file_win(ll_ref) != OK)
  	    return FAIL;
! 	*opened_window = TRUE;	/* close it when fail */
      }
      else
      {
! 	if (curwin->w_llist_ref != NULL)	/* In a location window */
  	    qf_goto_win_with_ll_file(usable_win_ptr, qf_fnum, ll_ref);
! 	else					/* In a quickfix window */
  	    qf_goto_win_with_qfl_file(qf_fnum);
      }
  
--- 2845,2874 ----
  
      if (!usable_win)
      {
! 	// Locate a window showing a normal buffer
  	win = qf_find_win_with_normal_buf();
  	if (win != NULL)
  	    usable_win = 1;
      }
  
!     // If no usable window is found and 'switchbuf' contains "usetab"
!     // then search in other tabs.
      if (!usable_win && (swb_flags & SWB_USETAB))
  	usable_win = qf_goto_tabwin_with_file(qf_fnum);
  
!     // If there is only one window and it is the quickfix window, create a
!     // new one above the quickfix window.
      if ((ONE_WINDOW && bt_quickfix(curbuf)) || !usable_win)
      {
  	if (qf_open_new_file_win(ll_ref) != OK)
  	    return FAIL;
! 	*opened_window = TRUE;	// close it when fail
      }
      else
      {
! 	if (curwin->w_llist_ref != NULL)	// In a location window
  	    qf_goto_win_with_ll_file(usable_win_ptr, qf_fnum, ll_ref);
! 	else					// In a quickfix window
  	    qf_goto_win_with_qfl_file(qf_fnum);
      }
  
***************
*** 2946,2953 ****
  
      if (qf_ptr->qf_type == 1)
      {
! 	/* Open help file (do_ecmd() will set b_help flag, readfile() will
! 	 * set b_p_ro flag). */
  	if (!can_abandon(curbuf, forceit))
  	{
  	    no_write_message();
--- 2894,2901 ----
  
      if (qf_ptr->qf_type == 1)
      {
! 	// Open help file (do_ecmd() will set b_help flag, readfile() will
! 	// set b_p_ro flag).
  	if (!can_abandon(curbuf, forceit))
  	{
  	    no_write_message();
***************
*** 2968,2977 ****
  
  	if (IS_LL_STACK(qi))
  	{
! 	    /*
! 	     * Location list. Check whether the associated window is still
! 	     * present and the list is still valid.
! 	     */
  	    if (!win_valid_any_tab(oldwin))
  	    {
  		EMSG(_("E924: Current window was closed"));
--- 2916,2923 ----
  
  	if (IS_LL_STACK(qi))
  	{
! 	    // Location list. Check whether the associated window is still
! 	    // present and the list is still valid.
  	    if (!win_valid_any_tab(oldwin))
  	    {
  		EMSG(_("E924: Current window was closed"));
***************
*** 3016,3024 ****
  
      if (qf_pattern == NULL)
      {
! 	/*
! 	 * Go to line with error, unless qf_lnum is 0.
! 	 */
  	i = qf_lnum;
  	if (i > 0)
  	{
--- 2962,2968 ----
  
      if (qf_pattern == NULL)
      {
! 	// Go to line with error, unless qf_lnum is 0.
  	i = qf_lnum;
  	if (i > 0)
  	{
***************
*** 3034,3045 ****
  #endif
  	    if (qf_viscol == TRUE)
  	    {
! 		/*
! 		 * Check each character from the beginning of the error
! 		 * line up to the error column.  For each tab character
! 		 * found, reduce the error column value by the length of
! 		 * a tab character.
! 		 */
  		line = ml_get_curline();
  		screen_col = 0;
  		for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col)
--- 2978,2987 ----
  #endif
  	    if (qf_viscol == TRUE)
  	    {
! 		// Check each character from the beginning of the error
! 		// line up to the error column.  For each tab character
! 		// found, reduce the error column value by the length of
! 		// a tab character.
  		line = ml_get_curline();
  		screen_col = 0;
  		for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col)
***************
*** 3065,3071 ****
      {
  	pos_T save_cursor;
  
! 	/* Move the cursor to the first line in the buffer */
  	save_cursor = curwin->w_cursor;
  	curwin->w_cursor.lnum = 0;
  	if (!do_search(NULL, '/', qf_pattern, (long)1,
--- 3007,3013 ----
      {
  	pos_T save_cursor;
  
! 	// Move the cursor to the first line in the buffer
  	save_cursor = curwin->w_cursor;
  	curwin->w_cursor.lnum = 0;
  	if (!do_search(NULL, '/', qf_pattern, (long)1,
***************
*** 3088,3108 ****
      linenr_T		i;
      int			len;
  
!     /* Update the screen before showing the message, unless the screen
!      * scrolled up. */
      if (!msg_scrolled)
  	update_topline_redraw();
      sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
  	    qi->qf_lists[qi->qf_curlist].qf_count,
  	    qf_ptr->qf_cleared ? _(" (line deleted)") : "",
  	    (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr));
!     /* Add the message, skipping leading whitespace and newlines. */
      len = (int)STRLEN(IObuff);
      qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len);
  
!     /* Output the message.  Overwrite to avoid scrolling when the 'O'
!      * flag is present in 'shortmess'; But when not jumping, print the
!      * whole message. */
      i = msg_scroll;
      if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum)
  	msg_scroll = TRUE;
--- 3030,3050 ----
      linenr_T		i;
      int			len;
  
!     // Update the screen before showing the message, unless the screen
!     // scrolled up.
      if (!msg_scrolled)
  	update_topline_redraw();
      sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index,
  	    qi->qf_lists[qi->qf_curlist].qf_count,
  	    qf_ptr->qf_cleared ? _(" (line deleted)") : "",
  	    (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr));
!     // Add the message, skipping leading whitespace and newlines.
      len = (int)STRLEN(IObuff);
      qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len);
  
!     // Output the message.  Overwrite to avoid scrolling when the 'O'
!     // flag is present in 'shortmess'; But when not jumping, print the
!     // whole message.
      i = msg_scroll;
      if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum)
  	msg_scroll = TRUE;
***************
*** 3304,3312 ****
      }
  }
  
! /*
!  * Highlight attributes used for displaying entries from the quickfix list.
!  */
  static int	qfFileAttr;
  static int	qfSepAttr;
  static int	qfLineAttr;
--- 3246,3252 ----
      }
  }
  
! // Highlight attributes used for displaying entries from the quickfix list.
  static int	qfFileAttr;
  static int	qfSepAttr;
  static int	qfLineAttr;
***************
*** 3333,3339 ****
  		&& (buf = buflist_findnr(qfp->qf_fnum)) != NULL)
  	{
  	    fname = buf->b_fname;
! 	    if (qfp->qf_type == 1)	/* :helpgrep */
  		fname = gettail(fname);
  	}
  	if (fname == NULL)
--- 3273,3279 ----
  		&& (buf = buflist_findnr(qfp->qf_fnum)) != NULL)
  	{
  	    fname = buf->b_fname;
! 	    if (qfp->qf_type == 1)	// :helpgrep
  		fname = gettail(fname);
  	}
  	if (fname == NULL)
***************
*** 3382,3395 ****
      }
      msg_puts((char_u *)" ");
  
!     /* Remove newlines and leading whitespace from the text.  For an
!      * unrecognized line keep the indent, the compiler may mark a word
!      * with ^^^^. */
      qf_fmt_text((fname != NULL || qfp->qf_lnum != 0)
  				? skipwhite(qfp->qf_text) : qfp->qf_text,
  				IObuff, IOSIZE);
      msg_prt_line(IObuff, FALSE);
!     out_flush();		/* show one line at a time */
  }
  
  /*
--- 3322,3335 ----
      }
      msg_puts((char_u *)" ");
  
!     // Remove newlines and leading whitespace from the text.  For an
!     // unrecognized line keep the indent, the compiler may mark a word
!     // with ^^^^.
      qf_fmt_text((fname != NULL || qfp->qf_lnum != 0)
  				? skipwhite(qfp->qf_text) : qfp->qf_text,
  				IObuff, IOSIZE);
      msg_prt_line(IObuff, FALSE);
!     out_flush();		// show one line at a time
  }
  
  /*
***************
*** 3406,3413 ****
      int		idx2 = -1;
      char_u	*arg = eap->arg;
      int		plus = FALSE;
!     int		all = eap->forceit;	/* if not :cl!, only show
! 						   recognised errors */
      qf_info_T	*qi = &ql_info;
  
      if (is_loclist_cmd(eap->cmdidx))
--- 3346,3353 ----
      int		idx2 = -1;
      char_u	*arg = eap->arg;
      int		plus = FALSE;
!     int		all = eap->forceit;	// if not :cl!, only show
! 					// recognised errors
      qf_info_T	*qi = &ql_info;
  
      if (is_loclist_cmd(eap->cmdidx))
***************
*** 3451,3463 ****
  	    idx2 = (-idx2 > i) ? 0 : idx2 + i + 1;
      }
  
!     /* Shorten all the file names, so that it is easy to read */
      shorten_fnames(FALSE);
  
!     /*
!      * Get the attributes for the different quickfix highlight items.  Note
!      * that this depends on syntax items defined in the qf.vim syntax file
!      */
      qfFileAttr = syn_name2attr((char_u *)"qfFileName");
      if (qfFileAttr == 0)
  	qfFileAttr = HL_ATTR(HLF_D);
--- 3391,3401 ----
  	    idx2 = (-idx2 > i) ? 0 : idx2 + i + 1;
      }
  
!     // Shorten all the file names, so that it is easy to read
      shorten_fnames(FALSE);
  
!     // Get the attributes for the different quickfix highlight items.  Note
!     // that this depends on syntax items defined in the qf.vim syntax file
      qfFileAttr = syn_name2attr((char_u *)"qfFileName");
      if (qfFileAttr == 0)
  	qfFileAttr = HL_ATTR(HLF_D);
***************
*** 3638,3646 ****
  	    stop = (qfp == qfpnext);
  	    vim_free(qfp);
  	    if (stop)
! 		/* Somehow qf_count may have an incorrect value, set it to 1
! 		 * to avoid crashing when it's wrong.
! 		 * TODO: Avoid qf_count being incorrect. */
  		qfl->qf_count = 1;
  	}
  	qfl->qf_start = qfpnext;
--- 3576,3584 ----
  	    stop = (qfp == qfpnext);
  	    vim_free(qfp);
  	    if (stop)
! 		// Somehow qf_count may have an incorrect value, set it to 1
! 		// to avoid crashing when it's wrong.
! 		// TODO: Avoid qf_count being incorrect.
  		qfl->qf_count = 1;
  	}
  	qfl->qf_start = qfpnext;
***************
*** 3828,3841 ****
  	    return;
      }
  
!     /* Look for an existing quickfix window.  */
      win = qf_find_win(qi);
  
!     /*
!      * If a quickfix window is open but we have no errors to display,
!      * close the window.  If a quickfix window is not open, then open
!      * it if we have errors; otherwise, leave it closed.
!      */
      if (qf_stack_empty(qi)
  	    || qi->qf_lists[qi->qf_curlist].qf_nonevalid
  	    || qf_list_empty(qi, qi->qf_curlist))
--- 3766,3777 ----
  	    return;
      }
  
!     // Look for an existing quickfix window.
      win = qf_find_win(qi);
  
!     // If a quickfix window is open but we have no errors to display,
!     // close the window.  If a quickfix window is not open, then open
!     // it if we have errors; otherwise, leave it closed.
      if (qf_stack_empty(qi)
  	    || qi->qf_lists[qi->qf_curlist].qf_nonevalid
  	    || qf_list_empty(qi, qi->qf_curlist))
***************
*** 3864,3870 ****
  	    return;
      }
  
!     /* Find existing quickfix window and close it. */
      win = qf_find_win(qi);
      if (win != NULL)
  	win_close(win, FALSE);
--- 3800,3806 ----
  	    return;
      }
  
!     // Find existing quickfix window and close it.
      win = qf_find_win(qi);
      if (win != NULL)
  	win_close(win, FALSE);
***************
*** 4052,4060 ****
      curwin->w_cursor.coladd = 0;
  #endif
      curwin->w_curswant = 0;
!     update_topline();		/* scroll to show the line */
      redraw_later(VALID);
!     curwin->w_redr_status = TRUE;	/* update ruler */
      curwin = old_curwin;
      curbuf = curwin->w_buffer;
  }
--- 3988,3996 ----
      curwin->w_cursor.coladd = 0;
  #endif
      curwin->w_curswant = 0;
!     update_topline();		// scroll to show the line
      redraw_later(VALID);
!     curwin->w_redr_status = TRUE;	// update ruler
      curwin = old_curwin;
      curbuf = curwin->w_buffer;
  }
***************
*** 4093,4099 ****
      qf_info_T	*qi = &ql_info;
  
      if (IS_LL_WINDOW(wp))
! 	/* In the location list window, use the referenced location list */
  	qi = wp->w_llist_ref;
  
      return qi->qf_lists[qi->qf_curlist].qf_index;
--- 4029,4035 ----
      qf_info_T	*qi = &ql_info;
  
      if (IS_LL_WINDOW(wp))
! 	// In the location list window, use the referenced location list
  	qi = wp->w_llist_ref;
  
      return qi->qf_lists[qi->qf_curlist].qf_index;
***************
*** 4106,4120 ****
      static int
  qf_win_pos_update(
      qf_info_T	*qi,
!     int		old_qf_index)	/* previous qf_index or zero */
  {
      win_T	*win;
      int		qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
  
!     /*
!      * Put the cursor on the current error in the quickfix window, so that
!      * it's viewable.
!      */
      win = qf_find_win(qi);
      if (win != NULL
  	    && qf_index <= win->w_buffer->b_ml.ml_line_count
--- 4042,4054 ----
      static int
  qf_win_pos_update(
      qf_info_T	*qi,
!     int		old_qf_index)	// previous qf_index or zero
  {
      win_T	*win;
      int		qf_index = qi->qf_lists[qi->qf_curlist].qf_index;
  
!     // Put the cursor on the current error in the quickfix window, so that
!     // it's viewable.
      win = qf_find_win(qi);
      if (win != NULL
  	    && qf_index <= win->w_buffer->b_ml.ml_line_count
***************
*** 4142,4153 ****
      static int
  is_qf_win(win_T *win, qf_info_T *qi)
  {
!     /*
!      * A window displaying the quickfix buffer will have the w_llist_ref field
!      * set to NULL.
!      * A window displaying a location list buffer will have the w_llist_ref
!      * pointing to the location list.
!      */
      if (bt_quickfix(win->w_buffer))
  	if ((IS_QF_STACK(qi) && win->w_llist_ref == NULL)
  		|| (IS_LL_STACK(qi) && win->w_llist_ref == qi))
--- 4076,4085 ----
      static int
  is_qf_win(win_T *win, qf_info_T *qi)
  {
!     // A window displaying the quickfix buffer will have the w_llist_ref field
!     // set to NULL.
!     // A window displaying a location list buffer will have the w_llist_ref
!     // pointing to the location list.
      if (bt_quickfix(win->w_buffer))
  	if ((IS_QF_STACK(qi) && win->w_llist_ref == NULL)
  		|| (IS_LL_STACK(qi) && win->w_llist_ref == qi))
***************
*** 4216,4229 ****
      win_T	*win;
      aco_save_T	aco;
  
!     /* Check if a buffer for the quickfix list exists.  Update it. */
      buf = qf_find_buf(qi);
      if (buf != NULL)
      {
  	linenr_T	old_line_count = buf->b_ml.ml_line_count;
  
  	if (old_last == NULL)
! 	    /* set curwin/curbuf to buf and save a few things */
  	    aucmd_prepbuf(&aco, buf);
  
  	qf_update_win_titlevar(qi);
--- 4148,4161 ----
      win_T	*win;
      aco_save_T	aco;
  
!     // Check if a buffer for the quickfix list exists.  Update it.
      buf = qf_find_buf(qi);
      if (buf != NULL)
      {
  	linenr_T	old_line_count = buf->b_ml.ml_line_count;
  
  	if (old_last == NULL)
! 	    // set curwin/curbuf to buf and save a few things
  	    aucmd_prepbuf(&aco, buf);
  
  	qf_update_win_titlevar(qi);
***************
*** 4235,4246 ****
  	{
  	    (void)qf_win_pos_update(qi, 0);
  
! 	    /* restore curwin/curbuf and a few other things */
  	    aucmd_restbuf(&aco);
  	}
  
! 	/* Only redraw when added lines are visible.  This avoids flickering
! 	 * when the added lines are not visible. */
  	if ((win = qf_find_win(qi)) != NULL && old_line_count < win->w_botline)
  	    redraw_buf_later(buf, NOT_VALID);
      }
--- 4167,4178 ----
  	{
  	    (void)qf_win_pos_update(qi, 0);
  
! 	    // restore curwin/curbuf and a few other things
  	    aucmd_restbuf(&aco);
  	}
  
! 	// Only redraw when added lines are visible.  This avoids flickering
! 	// when the added lines are not visible.
  	if ((win = qf_find_win(qi)) != NULL && old_line_count < win->w_botline)
  	    redraw_buf_later(buf, NOT_VALID);
      }
***************
*** 4264,4274 ****
  	    && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL
  	    && errbuf->b_fname != NULL)
      {
! 	if (qfp->qf_type == 1)	/* :helpgrep */
  	    STRCPY(IObuff, gettail(errbuf->b_fname));
  	else
  	{
! 	    /* shorten the file name if not done already */
  	    if (errbuf->b_sfname == NULL
  		    || mch_isFullName(errbuf->b_sfname))
  	    {
--- 4196,4206 ----
  	    && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL
  	    && errbuf->b_fname != NULL)
      {
! 	if (qfp->qf_type == 1)	// :helpgrep
  	    STRCPY(IObuff, gettail(errbuf->b_fname));
  	else
  	{
! 	    // shorten the file name if not done already
  	    if (errbuf->b_sfname == NULL
  		    || mch_isFullName(errbuf->b_sfname))
  	    {
***************
*** 4307,4315 ****
      IObuff[len++] = '|';
      IObuff[len++] = ' ';
  
!     /* Remove newlines and leading whitespace from the text.
!      * For an unrecognized line keep the indent, the compiler may
!      * mark a word with ^^^^. */
      qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text,
  	    IObuff + len, IOSIZE - len);
  
--- 4239,4247 ----
      IObuff[len++] = '|';
      IObuff[len++] = ' ';
  
!     // Remove newlines and leading whitespace from the text.
!     // For an unrecognized line keep the indent, the compiler may
!     // mark a word with ^^^^.
      qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text,
  	    IObuff + len, IOSIZE - len);
  
***************
*** 4342,4360 ****
  	    return;
  	}
  
! 	/* delete all existing lines */
  	while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0)
  	    (void)ml_delete((linenr_T)1, FALSE);
      }
  
!     /* Check if there is anything to display */
      if (!qf_stack_empty(qi))
      {
  	char_u	dirname[MAXPATHL];
  
  	*dirname = NUL;
  
! 	/* Add one line for each error */
  	if (old_last == NULL)
  	{
  	    qfp = qi->qf_lists[qi->qf_curlist].qf_start;
--- 4274,4292 ----
  	    return;
  	}
  
! 	// delete all existing lines
  	while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0)
  	    (void)ml_delete((linenr_T)1, FALSE);
      }
  
!     // Check if there is anything to display
      if (!qf_stack_empty(qi))
      {
  	char_u	dirname[MAXPATHL];
  
  	*dirname = NUL;
  
! 	// Add one line for each error
  	if (old_last == NULL)
  	{
  	    qfp = qi->qf_lists[qi->qf_curlist].qf_start;
***************
*** 4377,4399 ****
  	}
  
  	if (old_last == NULL)
! 	    /* Delete the empty line which is now at the end */
  	    (void)ml_delete(lnum + 1, FALSE);
      }
  
!     /* correct cursor position */
      check_lnums(TRUE);
  
      if (old_last == NULL)
      {
! 	/* Set the 'filetype' to "qf" each time after filling the buffer.
! 	 * This resembles reading a file into a buffer, it's more logical when
! 	 * using autocommands. */
  	++curbuf_lock;
  	set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL);
  	curbuf->b_p_ma = FALSE;
  
! 	keep_filetype = TRUE;		/* don't detect 'filetype' */
  	apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
  							       FALSE, curbuf);
  	apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
--- 4309,4331 ----
  	}
  
  	if (old_last == NULL)
! 	    // Delete the empty line which is now at the end
  	    (void)ml_delete(lnum + 1, FALSE);
      }
  
!     // correct cursor position
      check_lnums(TRUE);
  
      if (old_last == NULL)
      {
! 	// Set the 'filetype' to "qf" each time after filling the buffer.
! 	// This resembles reading a file into a buffer, it's more logical when
! 	// using autocommands.
  	++curbuf_lock;
  	set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL);
  	curbuf->b_p_ma = FALSE;
  
! 	keep_filetype = TRUE;		// don't detect 'filetype'
  	apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
  							       FALSE, curbuf);
  	apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
***************
*** 4401,4411 ****
  	keep_filetype = FALSE;
  	--curbuf_lock;
  
! 	/* make sure it will be redrawn */
  	redraw_curbuf_later(NOT_VALID);
      }
  
!     /* Restore KeyTyped, setting 'filetype' may reset it. */
      KeyTyped = old_KeyTyped;
  }
  
--- 4333,4343 ----
  	keep_filetype = FALSE;
  	--curbuf_lock;
  
! 	// make sure it will be redrawn
  	redraw_curbuf_later(NOT_VALID);
      }
  
!     // Restore KeyTyped, setting 'filetype' may reset it.
      KeyTyped = old_KeyTyped;
  }
  
***************
*** 4694,4700 ****
  
      if (is_loclist_cmd(eap->cmdidx))
      {
! 	/* Location list */
  	qi = GET_LOC_LIST(curwin);
  	if (qi == NULL)
  	    return 0;
--- 4626,4632 ----
  
      if (is_loclist_cmd(eap->cmdidx))
      {
! 	// Location list
  	qi = GET_LOC_LIST(curwin);
  	if (qi == NULL)
  	    return 0;
***************
*** 4707,4716 ****
  	if (qfp->qf_valid)
  	{
  	    if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo)
! 		sz++;	/* Count all valid entries */
  	    else if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
  	    {
! 		/* Count the number of files */
  		sz++;
  		prev_fnum = qfp->qf_fnum;
  	    }
--- 4639,4648 ----
  	if (qfp->qf_valid)
  	{
  	    if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo)
! 		sz++;	// Count all valid entries
  	    else if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
  	    {
! 		// Count the number of files
  		sz++;
  		prev_fnum = qfp->qf_fnum;
  	    }
***************
*** 4731,4737 ****
  
      if (is_loclist_cmd(eap->cmdidx))
      {
! 	/* Location list */
  	qi = GET_LOC_LIST(curwin);
  	if (qi == NULL)
  	    return 0;
--- 4663,4669 ----
  
      if (is_loclist_cmd(eap->cmdidx))
      {
! 	// Location list
  	qi = GET_LOC_LIST(curwin);
  	if (qi == NULL)
  	    return 0;
***************
*** 4755,4761 ****
  
      if (is_loclist_cmd(eap->cmdidx))
      {
! 	/* Location list */
  	qi = GET_LOC_LIST(curwin);
  	if (qi == NULL)
  	    return 1;
--- 4687,4693 ----
  
      if (is_loclist_cmd(eap->cmdidx))
      {
! 	// Location list
  	qi = GET_LOC_LIST(curwin);
  	if (qi == NULL)
  	    return 1;
***************
*** 4764,4770 ****
      qfl = &qi->qf_lists[qi->qf_curlist];
      qfp = qfl->qf_start;
  
!     /* check if the list has valid errors */
      if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
  	return 1;
  
--- 4696,4702 ----
      qfl = &qi->qf_lists[qi->qf_curlist];
      qfp = qfl->qf_start;
  
!     // check if the list has valid errors
      if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
  	return 1;
  
***************
*** 4776,4782 ****
  	    {
  		if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
  		{
! 		    /* Count the number of files */
  		    eidx++;
  		    prev_fnum = qfp->qf_fnum;
  		}
--- 4708,4714 ----
  	    {
  		if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
  		{
! 		    // Count the number of files
  		    eidx++;
  		    prev_fnum = qfp->qf_fnum;
  		}
***************
*** 4802,4808 ****
      int		i, eidx;
      int		prev_fnum = 0;
  
!     /* check if the list has valid errors */
      if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
  	return 1;
  
--- 4734,4740 ----
      int		i, eidx;
      int		prev_fnum = 0;
  
!     // check if the list has valid errors
      if (qfl->qf_count <= 0 || qfl->qf_nonevalid)
  	return 1;
  
***************
*** 4815,4821 ****
  	    {
  		if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
  		{
! 		    /* Count the number of files */
  		    eidx++;
  		    prev_fnum = qfp->qf_fnum;
  		}
--- 4747,4753 ----
  	    {
  		if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum)
  		{
! 		    // Count the number of files
  		    eidx++;
  		    prev_fnum = qfp->qf_fnum;
  		}
***************
*** 4873,4881 ****
  	}
      }
  
!     /* For cdo and ldo commands, jump to the nth valid error.
!      * For cfdo and lfdo commands, jump to the nth valid file entry.
!      */
      if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo
  	    || eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
  	errornr = qf_get_nth_valid_entry(&qi->qf_lists[qi->qf_curlist],
--- 4805,4812 ----
  	}
      }
  
!     // For cdo and ldo commands, jump to the nth valid error.
!     // For cfdo and lfdo commands, jump to the nth valid file entry.
      if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo
  	    || eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo)
  	errornr = qf_get_nth_valid_entry(&qi->qf_lists[qi->qf_curlist],
***************
*** 4949,4955 ****
      win_T	*wp = NULL;
      qf_info_T	*qi = &ql_info;
      char_u	*au_name = NULL;
!     int_u	save_qfid = 0;		/* init for gcc */
      int		res;
  
      switch (eap->cmdidx)
--- 4880,4886 ----
      win_T	*wp = NULL;
      qf_info_T	*qi = &ql_info;
      char_u	*au_name = NULL;
!     int_u	save_qfid = 0;		// init for gcc
      int		res;
  
      switch (eap->cmdidx)
***************
*** 4986,5001 ****
      if (is_loclist_cmd(eap->cmdidx))
  	wp = curwin;
  
!     /*
!      * This function is used by the :cfile, :cgetfile and :caddfile
!      * commands.
!      * :cfile always creates a new quickfix list and jumps to the
!      * first error.
!      * :cgetfile creates a new quickfix list but doesn't jump to the
!      * first error.
!      * :caddfile adds to an existing quickfix list. If there is no
!      * quickfix list then a new list is created.
!      */
      res = qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile
  			&& eap->cmdidx != CMD_laddfile),
  			qf_cmdtitle(*eap->cmdlinep), enc);
--- 4917,4930 ----
      if (is_loclist_cmd(eap->cmdidx))
  	wp = curwin;
  
!     // This function is used by the :cfile, :cgetfile and :caddfile
!     // commands.
!     // :cfile always creates a new quickfix list and jumps to the
!     // first error.
!     // :cgetfile creates a new quickfix list but doesn't jump to the
!     // first error.
!     // :caddfile adds to an existing quickfix list. If there is no
!     // quickfix list then a new list is created.
      res = qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile
  			&& eap->cmdidx != CMD_laddfile),
  			qf_cmdtitle(*eap->cmdlinep), enc);
***************
*** 5045,5056 ****
      static void
  vgr_init_regmatch(regmmatch_T *regmatch, char_u *s)
  {
!     /* Get the search pattern: either white-separated or enclosed in // */
      regmatch->regprog = NULL;
  
      if (s == NULL || *s == NUL)
      {
! 	/* Pattern is empty, use last search pattern. */
  	if (last_search_pat() == NULL)
  	{
  	    EMSG(_(e_noprevre));
--- 4974,4985 ----
      static void
  vgr_init_regmatch(regmmatch_T *regmatch, char_u *s)
  {
!     // Get the search pattern: either white-separated or enclosed in //
      regmatch->regprog = NULL;
  
      if (s == NULL || *s == NUL)
      {
! 	// Pattern is empty, use last search pattern.
  	if (last_search_pat() == NULL)
  	{
  	    EMSG(_(e_noprevre));
***************
*** 5083,5090 ****
  	vim_free(p);
      }
      msg_clr_eos();
!     msg_didout = FALSE;	    /* overwrite this message */
!     msg_nowait = TRUE;	    /* don't wait for this message */
      msg_col = 0;
      out_flush();
  }
--- 5012,5019 ----
  	vim_free(p);
      }
      msg_clr_eos();
!     msg_didout = FALSE;	    // overwrite this message
!     msg_nowait = TRUE;	    // don't wait for this message
      msg_col = 0;
      out_flush();
  }
***************
*** 5105,5120 ****
      buf_T	*buf;
  
  #if defined(FEAT_SYN_HL)
!     /* Don't do Filetype autocommands to avoid loading syntax and
!      * indent scripts, a great speed improvement. */
      save_ei = au_event_disable(",Filetype");
  #endif
!     /* Don't use modelines here, it's useless. */
      save_mls = p_mls;
      p_mls = 0;
  
!     /* Load file into a buffer, so that 'fileencoding' is detected,
!      * autocommands applied, etc. */
      buf = load_dummy_buffer(fname, dirname_start, dirname_now);
  
      p_mls = save_mls;
--- 5034,5049 ----
      buf_T	*buf;
  
  #if defined(FEAT_SYN_HL)
!     // Don't do Filetype autocommands to avoid loading syntax and
!     // indent scripts, a great speed improvement.
      save_ei = au_event_disable(",Filetype");
  #endif
!     // Don't use modelines here, it's useless.
      save_mls = p_mls;
      p_mls = 0;
  
!     // Load file into a buffer, so that 'fileencoding' is detected,
!     // autocommands applied, etc.
      buf = load_dummy_buffer(fname, dirname_start, dirname_now);
  
      p_mls = save_mls;
***************
*** 5137,5154 ****
  	int_u	    qfid,
  	char_u	    *title)
  {
!     /* Verify that the quickfix/location list was not freed by an autocmd */
      if (!qflist_valid(wp, qfid))
      {
  	if (wp != NULL)
  	{
! 	    /* An autocmd has freed the location list. */
  	    EMSG(_(e_loc_list_changed));
  	    return FALSE;
  	}
  	else
  	{
! 	    /* Quickfix list is not found, create a new one. */
  	    qf_new_list(qi, title);
  	    return TRUE;
  	}
--- 5066,5083 ----
  	int_u	    qfid,
  	char_u	    *title)
  {
!     // Verify that the quickfix/location list was not freed by an autocmd
      if (!qflist_valid(wp, qfid))
      {
  	if (wp != NULL)
  	{
! 	    // An autocmd has freed the location list.
  	    EMSG(_(e_loc_list_changed));
  	    return FALSE;
  	}
  	else
  	{
! 	    // Quickfix list is not found, create a new one.
  	    qf_new_list(qi, title);
  	    return TRUE;
  	}
***************
*** 5184,5195 ****
  	while (vim_regexec_multi(regmatch, curwin, buf, lnum,
  		    col, NULL, NULL) > 0)
  	{
! 	    /* Pass the buffer number so that it gets used even for a
! 	     * dummy buffer, unless duplicate_name is set, then the
! 	     * buffer will be wiped out below. */
  	    if (qf_add_entry(qi,
  			qi->qf_curlist,
! 			NULL,       /* dir */
  			fname,
  			NULL,
  			duplicate_name ? 0 : buf->b_fnum,
--- 5113,5124 ----
  	while (vim_regexec_multi(regmatch, curwin, buf, lnum,
  		    col, NULL, NULL) > 0)
  	{
! 	    // Pass the buffer number so that it gets used even for a
! 	    // dummy buffer, unless duplicate_name is set, then the
! 	    // buffer will be wiped out below.
  	    if (qf_add_entry(qi,
  			qi->qf_curlist,
! 			NULL,       // dir
  			fname,
  			NULL,
  			duplicate_name ? 0 : buf->b_fnum,
***************
*** 5197,5207 ****
  			    regmatch->startpos[0].lnum + lnum, FALSE),
  			regmatch->startpos[0].lnum + lnum,
  			regmatch->startpos[0].col + 1,
! 			FALSE,      /* vis_col */
! 			NULL,	    /* search pattern */
! 			0,	    /* nr */
! 			0,	    /* type */
! 			TRUE	    /* valid */
  			) == FAIL)
  	    {
  		got_int = TRUE;
--- 5126,5136 ----
  			    regmatch->startpos[0].lnum + lnum, FALSE),
  			regmatch->startpos[0].lnum + lnum,
  			regmatch->startpos[0].col + 1,
! 			FALSE,      // vis_col
! 			NULL,	    // search pattern
! 			0,	    // nr
! 			0,	    // type
! 			TRUE	    // valid
  			) == FAIL)
  	    {
  		got_int = TRUE;
***************
*** 5242,5252 ****
      buf = curbuf;
      qf_jump(qi, 0, 0, forceit);
      if (buf != curbuf)
! 	/* If we jumped to another buffer redrawing will already be
! 	 * taken care of. */
  	*redraw_for_dummy = FALSE;
  
!     /* Jump to the directory used after loading the buffer. */
      if (curbuf == first_match_buf && target_dir != NULL)
      {
  	exarg_T ea;
--- 5171,5181 ----
      buf = curbuf;
      qf_jump(qi, 0, 0, forceit);
      if (buf != curbuf)
! 	// If we jumped to another buffer redrawing will already be
! 	// taken care of.
  	*redraw_for_dummy = FALSE;
  
!     // Jump to the directory used after loading the buffer.
      if (curbuf == first_match_buf && target_dir != NULL)
      {
  	exarg_T ea;
***************
*** 5315,5321 ****
      else
  	tomatch = MAXLNUM;
  
!     /* Get the search pattern: either white-separated or enclosed in // */
      regmatch.regprog = NULL;
      title = vim_strsave(qf_cmdtitle(*eap->cmdlinep));
      p = skip_vimgrep_pat(eap->arg, &s, &flags);
--- 5244,5250 ----
      else
  	tomatch = MAXLNUM;
  
!     // Get the search pattern: either white-separated or enclosed in //
      regmatch.regprog = NULL;
      title = vim_strsave(qf_cmdtitle(*eap->cmdlinep));
      p = skip_vimgrep_pat(eap->arg, &s, &flags);
***************
*** 5340,5349 ****
  		&& eap->cmdidx != CMD_vimgrepadd
  		&& eap->cmdidx != CMD_lvimgrepadd)
  					|| qf_stack_empty(qi))
! 	/* make place for a new list */
  	qf_new_list(qi, title != NULL ? title : qf_cmdtitle(*eap->cmdlinep));
  
!     /* parse the list of arguments */
      if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL)
  	goto theend;
      if (fcount == 0)
--- 5269,5278 ----
  		&& eap->cmdidx != CMD_vimgrepadd
  		&& eap->cmdidx != CMD_lvimgrepadd)
  					|| qf_stack_empty(qi))
! 	// make place for a new list
  	qf_new_list(qi, title != NULL ? title : qf_cmdtitle(*eap->cmdlinep));
  
!     // parse the list of arguments
      if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL)
  	goto theend;
      if (fcount == 0)
***************
*** 5360,5371 ****
  	goto theend;
      }
  
!     /* Remember the current directory, because a BufRead autocommand that does
!      * ":lcd %:p:h" changes the meaning of short path names. */
      mch_dirname(dirname_start, MAXPATHL);
  
!      /* Remember the current quickfix list identifier, so that we can check for
!       * autocommands changing the current quickfix list. */
      save_qfid = qi->qf_lists[qi->qf_curlist].qf_id;
  
      seconds = (time_t)0;
--- 5289,5300 ----
  	goto theend;
      }
  
!     // Remember the current directory, because a BufRead autocommand that does
!     // ":lcd %:p:h" changes the meaning of short path names.
      mch_dirname(dirname_start, MAXPATHL);
  
!     // Remember the current quickfix list identifier, so that we can check for
!     // autocommands changing the current quickfix list.
      save_qfid = qi->qf_lists[qi->qf_curlist].qf_id;
  
      seconds = (time_t)0;
***************
*** 5374,5381 ****
  	fname = shorten_fname1(fnames[fi]);
  	if (time(NULL) > seconds)
  	{
! 	    /* Display the file name every second or so, show the user we are
! 	     * working on it. */
  	    seconds = time(NULL);
  	    vgr_display_fname(fname);
  	}
--- 5303,5310 ----
  	fname = shorten_fname1(fnames[fi]);
  	if (time(NULL) > seconds)
  	{
! 	    // Display the file name every second or so, show the user we are
! 	    // working on it.
  	    seconds = time(NULL);
  	    vgr_display_fname(fname);
  	}
***************
*** 5383,5389 ****
  	buf = buflist_findname_exp(fnames[fi]);
  	if (buf == NULL || buf->b_ml.ml_mfp == NULL)
  	{
! 	    /* Remember that a buffer with this name already exists. */
  	    duplicate_name = (buf != NULL);
  	    using_dummy = TRUE;
  	    redraw_for_dummy = TRUE;
--- 5312,5318 ----
  	buf = buflist_findname_exp(fnames[fi]);
  	if (buf == NULL || buf->b_ml.ml_mfp == NULL)
  	{
! 	    // Remember that a buffer with this name already exists.
  	    duplicate_name = (buf != NULL);
  	    using_dummy = TRUE;
  	    redraw_for_dummy = TRUE;
***************
*** 5391,5401 ****
  	    buf = vgr_load_dummy_buf(fname, dirname_start, dirname_now);
  	}
  	else
! 	    /* Use existing, loaded buffer. */
  	    using_dummy = FALSE;
  
! 	/* Check whether the quickfix list is still valid. When loading a
! 	 * buffer above, autocommands might have changed the quickfix list. */
  	if (!vgr_qflist_valid(wp, qi, save_qfid, qf_cmdtitle(*eap->cmdlinep)))
  	{
  	    FreeWild(fcount, fnames);
--- 5320,5330 ----
  	    buf = vgr_load_dummy_buf(fname, dirname_start, dirname_now);
  	}
  	else
! 	    // Use existing, loaded buffer.
  	    using_dummy = FALSE;
  
! 	// Check whether the quickfix list is still valid. When loading a
! 	// buffer above, autocommands might have changed the quickfix list.
  	if (!vgr_qflist_valid(wp, qi, save_qfid, qf_cmdtitle(*eap->cmdlinep)))
  	{
  	    FreeWild(fcount, fnames);
***************
*** 5410,5417 ****
  	}
  	else
  	{
! 	    /* Try for a match in all lines of the buffer.
! 	     * For ":1vimgrep" look for first match only. */
  	    found_match = vgr_match_buflines(qi, fname, buf, &regmatch,
  		    tomatch, duplicate_name, flags);
  
--- 5339,5346 ----
  	}
  	else
  	{
! 	    // Try for a match in all lines of the buffer.
! 	    // For ":1vimgrep" look for first match only.
  	    found_match = vgr_match_buflines(qi, fname, buf, &regmatch,
  		    tomatch, duplicate_name, flags);
  
***************
*** 5421,5442 ****
  		    first_match_buf = buf;
  		if (duplicate_name)
  		{
! 		    /* Never keep a dummy buffer if there is another buffer
! 		     * with the same name. */
  		    wipe_dummy_buffer(buf, dirname_start);
  		    buf = NULL;
  		}
  		else if (!cmdmod.hide
! 			    || buf->b_p_bh[0] == 'u'	/* "unload" */
! 			    || buf->b_p_bh[0] == 'w'	/* "wipe" */
! 			    || buf->b_p_bh[0] == 'd')	/* "delete" */
  		{
! 		    /* When no match was found we don't need to remember the
! 		     * buffer, wipe it out.  If there was a match and it
! 		     * wasn't the first one or we won't jump there: only
! 		     * unload the buffer.
! 		     * Ignore 'hidden' here, because it may lead to having too
! 		     * many swap files. */
  		    if (!found_match)
  		    {
  			wipe_dummy_buffer(buf, dirname_start);
--- 5350,5371 ----
  		    first_match_buf = buf;
  		if (duplicate_name)
  		{
! 		    // Never keep a dummy buffer if there is another buffer
! 		    // with the same name.
  		    wipe_dummy_buffer(buf, dirname_start);
  		    buf = NULL;
  		}
  		else if (!cmdmod.hide
! 			    || buf->b_p_bh[0] == 'u'	// "unload"
! 			    || buf->b_p_bh[0] == 'w'	// "wipe"
! 			    || buf->b_p_bh[0] == 'd')	// "delete"
  		{
! 		    // When no match was found we don't need to remember the
! 		    // buffer, wipe it out.  If there was a match and it
! 		    // wasn't the first one or we won't jump there: only
! 		    // unload the buffer.
! 		    // Ignore 'hidden' here, because it may lead to having too
! 		    // many swap files.
  		    if (!found_match)
  		    {
  			wipe_dummy_buffer(buf, dirname_start);
***************
*** 5445,5451 ****
  		    else if (buf != first_match_buf || (flags & VGR_NOJUMP))
  		    {
  			unload_dummy_buffer(buf, dirname_start);
! 			/* Keeping the buffer, remove the dummy flag. */
  			buf->b_flags &= ~BF_DUMMY;
  			buf = NULL;
  		    }
--- 5374,5380 ----
  		    else if (buf != first_match_buf || (flags & VGR_NOJUMP))
  		    {
  			unload_dummy_buffer(buf, dirname_start);
! 			// Keeping the buffer, remove the dummy flag.
  			buf->b_flags &= ~BF_DUMMY;
  			buf = NULL;
  		    }
***************
*** 5453,5472 ****
  
  		if (buf != NULL)
  		{
! 		    /* Keeping the buffer, remove the dummy flag. */
  		    buf->b_flags &= ~BF_DUMMY;
  
! 		    /* If the buffer is still loaded we need to use the
! 		     * directory we jumped to below. */
  		    if (buf == first_match_buf
  			    && target_dir == NULL
  			    && STRCMP(dirname_start, dirname_now) != 0)
  			target_dir = vim_strsave(dirname_now);
  
! 		    /* The buffer is still loaded, the Filetype autocommands
! 		     * need to be done now, in that buffer.  And the modelines
! 		     * need to be done (again).  But not the window-local
! 		     * options! */
  		    aucmd_prepbuf(&aco, buf);
  #if defined(FEAT_SYN_HL)
  		    apply_autocmds(EVENT_FILETYPE, buf->b_p_ft,
--- 5382,5401 ----
  
  		if (buf != NULL)
  		{
! 		    // Keeping the buffer, remove the dummy flag.
  		    buf->b_flags &= ~BF_DUMMY;
  
! 		    // If the buffer is still loaded we need to use the
! 		    // directory we jumped to below.
  		    if (buf == first_match_buf
  			    && target_dir == NULL
  			    && STRCMP(dirname_start, dirname_now) != 0)
  			target_dir = vim_strsave(dirname_now);
  
! 		    // The buffer is still loaded, the Filetype autocommands
! 		    // need to be done now, in that buffer.  And the modelines
! 		    // need to be done (again).  But not the window-local
! 		    // options!
  		    aucmd_prepbuf(&aco, buf);
  #if defined(FEAT_SYN_HL)
  		    apply_autocmds(EVENT_FILETYPE, buf->b_p_ft,
***************
*** 5491,5500 ****
      if (au_name != NULL)
  	apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
  					       curbuf->b_fname, TRUE, curbuf);
!     /*
!      * The QuickFixCmdPost autocmd may free the quickfix list. Check the list
!      * is still valid.
!      */
      if (!qflist_valid(wp, save_qfid))
  	goto theend;
  
--- 5420,5427 ----
      if (au_name != NULL)
  	apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
  					       curbuf->b_fname, TRUE, curbuf);
!     // The QuickFixCmdPost autocmd may free the quickfix list. Check the list
!     // is still valid.
      if (!qflist_valid(wp, save_qfid))
  	goto theend;
  
***************
*** 5511,5518 ****
      else
  	EMSG2(_(e_nomatch2), s);
  
!     /* If we loaded a dummy buffer into the current window, the autocommands
!      * may have messed up things, need to redraw and recompute folds. */
      if (redraw_for_dummy)
      {
  #ifdef FEAT_FOLDING
--- 5438,5445 ----
      else
  	EMSG2(_(e_nomatch2), s);
  
!     // If we loaded a dummy buffer into the current window, the autocommands
!     // may have messed up things, need to redraw and recompute folds.
      if (redraw_for_dummy)
      {
  #ifdef FEAT_FOLDING
***************
*** 5544,5551 ****
  	mch_dirname(dirname_now, MAXPATHL);
  	if (STRCMP(dirname_start, dirname_now) != 0)
  	{
! 	    /* If the directory has changed, change it back by building up an
! 	     * appropriate ex command and executing it. */
  	    exarg_T ea;
  
  	    ea.arg = dirname_start;
--- 5471,5478 ----
  	mch_dirname(dirname_now, MAXPATHL);
  	if (STRCMP(dirname_start, dirname_now) != 0)
  	{
! 	    // If the directory has changed, change it back by building up an
! 	    // appropriate ex command and executing it.
  	    exarg_T ea;
  
  	    ea.arg = dirname_start;
***************
*** 5571,5578 ****
      static buf_T *
  load_dummy_buffer(
      char_u	*fname,
!     char_u	*dirname_start,  /* in: old directory */
!     char_u	*resulting_dir)  /* out: new directory */
  {
      buf_T	*newbuf;
      bufref_T	newbufref;
--- 5498,5505 ----
      static buf_T *
  load_dummy_buffer(
      char_u	*fname,
!     char_u	*dirname_start,  // in: old directory
!     char_u	*resulting_dir)  // out: new directory
  {
      buf_T	*newbuf;
      bufref_T	newbufref;
***************
*** 5581,5612 ****
      aco_save_T	aco;
      int		readfile_result;
  
!     /* Allocate a buffer without putting it in the buffer list. */
      newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
      if (newbuf == NULL)
  	return NULL;
      set_bufref(&newbufref, newbuf);
  
!     /* Init the options. */
      buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP);
  
!     /* need to open the memfile before putting the buffer in a window */
      if (ml_open(newbuf) == OK)
      {
! 	/* Make sure this buffer isn't wiped out by autocommands. */
  	++newbuf->b_locked;
  
! 	/* set curwin/curbuf to buf and save a few things */
  	aucmd_prepbuf(&aco, newbuf);
  
! 	/* Need to set the filename for autocommands. */
  	(void)setfname(curbuf, fname, NULL, FALSE);
  
! 	/* Create swap file now to avoid the ATTENTION message. */
  	check_need_swap(TRUE);
  
! 	/* Remove the "dummy" flag, otherwise autocommands may not
! 	 * work. */
  	curbuf->b_flags &= ~BF_DUMMY;
  
  	newbuf_to_wipe.br_buf = NULL;
--- 5508,5539 ----
      aco_save_T	aco;
      int		readfile_result;
  
!     // Allocate a buffer without putting it in the buffer list.
      newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
      if (newbuf == NULL)
  	return NULL;
      set_bufref(&newbufref, newbuf);
  
!     // Init the options.
      buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP);
  
!     // need to open the memfile before putting the buffer in a window
      if (ml_open(newbuf) == OK)
      {
! 	// Make sure this buffer isn't wiped out by autocommands.
  	++newbuf->b_locked;
  
! 	// set curwin/curbuf to buf and save a few things
  	aucmd_prepbuf(&aco, newbuf);
  
! 	// Need to set the filename for autocommands.
  	(void)setfname(curbuf, fname, NULL, FALSE);
  
! 	// Create swap file now to avoid the ATTENTION message.
  	check_need_swap(TRUE);
  
! 	// Remove the "dummy" flag, otherwise autocommands may not
! 	// work.
  	curbuf->b_flags &= ~BF_DUMMY;
  
  	newbuf_to_wipe.br_buf = NULL;
***************
*** 5621,5650 ****
  	    failed = FALSE;
  	    if (curbuf != newbuf)
  	    {
! 		/* Bloody autocommands changed the buffer!  Can happen when
! 		 * using netrw and editing a remote file.  Use the current
! 		 * buffer instead, delete the dummy one after restoring the
! 		 * window stuff. */
  		set_bufref(&newbuf_to_wipe, newbuf);
  		newbuf = curbuf;
  	    }
  	}
  
! 	/* restore curwin/curbuf and a few other things */
  	aucmd_restbuf(&aco);
  	if (newbuf_to_wipe.br_buf != NULL && bufref_valid(&newbuf_to_wipe))
  	    wipe_buffer(newbuf_to_wipe.br_buf, FALSE);
  
! 	/* Add back the "dummy" flag, otherwise buflist_findname_stat() won't
! 	 * skip it. */
  	newbuf->b_flags |= BF_DUMMY;
      }
  
!     /*
!      * When autocommands/'autochdir' option changed directory: go back.
!      * Let the caller know what the resulting dir was first, in case it is
!      * important.
!      */
      mch_dirname(resulting_dir, MAXPATHL);
      restore_start_dir(dirname_start);
  
--- 5548,5575 ----
  	    failed = FALSE;
  	    if (curbuf != newbuf)
  	    {
! 		// Bloody autocommands changed the buffer!  Can happen when
! 		// using netrw and editing a remote file.  Use the current
! 		// buffer instead, delete the dummy one after restoring the
! 		// window stuff.
  		set_bufref(&newbuf_to_wipe, newbuf);
  		newbuf = curbuf;
  	    }
  	}
  
! 	// restore curwin/curbuf and a few other things
  	aucmd_restbuf(&aco);
  	if (newbuf_to_wipe.br_buf != NULL && bufref_valid(&newbuf_to_wipe))
  	    wipe_buffer(newbuf_to_wipe.br_buf, FALSE);
  
! 	// Add back the "dummy" flag, otherwise buflist_findname_stat() won't
! 	// skip it.
  	newbuf->b_flags |= BF_DUMMY;
      }
  
!     // When autocommands/'autochdir' option changed directory: go back.
!     // Let the caller know what the resulting dir was first, in case it is
!     // important.
      mch_dirname(resulting_dir, MAXPATHL);
      restore_start_dir(dirname_start);
  
***************
*** 5666,5690 ****
      static void
  wipe_dummy_buffer(buf_T *buf, char_u *dirname_start)
  {
!     if (curbuf != buf)		/* safety check */
      {
  #if defined(FEAT_EVAL)
  	cleanup_T   cs;
  
! 	/* Reset the error/interrupt/exception state here so that aborting()
! 	 * returns FALSE when wiping out the buffer.  Otherwise it doesn't
! 	 * work when got_int is set. */
  	enter_cleanup(&cs);
  #endif
  
  	wipe_buffer(buf, FALSE);
  
  #if defined(FEAT_EVAL)
! 	/* Restore the error/interrupt/exception state if not discarded by a
! 	 * new aborting error, interrupt, or uncaught exception. */
  	leave_cleanup(&cs);
  #endif
! 	/* When autocommands/'autochdir' option changed directory: go back. */
  	restore_start_dir(dirname_start);
      }
  }
--- 5591,5615 ----
      static void
  wipe_dummy_buffer(buf_T *buf, char_u *dirname_start)
  {
!     if (curbuf != buf)		// safety check
      {
  #if defined(FEAT_EVAL)
  	cleanup_T   cs;
  
! 	// Reset the error/interrupt/exception state here so that aborting()
! 	// returns FALSE when wiping out the buffer.  Otherwise it doesn't
! 	// work when got_int is set.
  	enter_cleanup(&cs);
  #endif
  
  	wipe_buffer(buf, FALSE);
  
  #if defined(FEAT_EVAL)
! 	// Restore the error/interrupt/exception state if not discarded by a
! 	// new aborting error, interrupt, or uncaught exception.
  	leave_cleanup(&cs);
  #endif
! 	// When autocommands/'autochdir' option changed directory: go back.
  	restore_start_dir(dirname_start);
      }
  }
***************
*** 5697,5707 ****
      static void
  unload_dummy_buffer(buf_T *buf, char_u *dirname_start)
  {
!     if (curbuf != buf)		/* safety check */
      {
  	close_buffer(NULL, buf, DOBUF_UNLOAD, FALSE);
  
! 	/* When autocommands/'autochdir' option changed directory: go back. */
  	restore_start_dir(dirname_start);
      }
  }
--- 5622,5632 ----
      static void
  unload_dummy_buffer(buf_T *buf, char_u *dirname_start)
  {
!     if (curbuf != buf)		// safety check
      {
  	close_buffer(NULL, buf, DOBUF_UNLOAD, FALSE);
  
! 	// When autocommands/'autochdir' option changed directory: go back.
  	restore_start_dir(dirname_start);
      }
  }
***************
*** 5741,5747 ****
      qfp = qi->qf_lists[qf_idx].qf_start;
      for (i = 1; !got_int && i <= qi->qf_lists[qf_idx].qf_count; ++i)
      {
! 	/* Handle entries with a non-existing buffer number. */
  	bufnum = qfp->qf_fnum;
  	if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
  	    bufnum = 0;
--- 5666,5672 ----
      qfp = qi->qf_lists[qf_idx].qf_start;
      for (i = 1; !got_int && i <= qi->qf_lists[qf_idx].qf_count; ++i)
      {
! 	// Handle entries with a non-existing buffer number.
  	bufnum = qfp->qf_fnum;
  	if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
  	    bufnum = 0;
***************
*** 5772,5780 ****
      return OK;
  }
  
! /*
!  * Flags used by getqflist()/getloclist() to determine which fields to return.
!  */
  enum {
      QF_GETLIST_NONE	= 0x0,
      QF_GETLIST_TITLE	= 0x1,
--- 5697,5703 ----
      return OK;
  }
  
! // Flags used by getqflist()/getloclist() to determine which fields to return.
  enum {
      QF_GETLIST_NONE	= 0x0,
      QF_GETLIST_TITLE	= 0x1,
***************
*** 5803,5814 ****
      dictitem_T	*efm_di;
      list_T	*l;
  
!     /* Only a List value is supported */
      if (di->di_tv.v_type == VAR_LIST && di->di_tv.vval.v_list != NULL)
      {
! 	/* If errorformat is supplied then use it, otherwise use the 'efm'
! 	 * option setting
! 	 */
  	if ((efm_di = dict_find(what, (char_u *)"efm", -1)) != NULL)
  	{
  	    if (efm_di->di_tv.v_type != VAR_STRING ||
--- 5726,5736 ----
      dictitem_T	*efm_di;
      list_T	*l;
  
!     // Only a List value is supported
      if (di->di_tv.v_type == VAR_LIST && di->di_tv.vval.v_list != NULL)
      {
! 	// If errorformat is supplied then use it, otherwise use the 'efm'
! 	// option setting
  	if ((efm_di = dict_find(what, (char_u *)"efm", -1)) != NULL)
  	{
  	    if (efm_di->di_tv.v_type != VAR_STRING ||
***************
*** 5847,5854 ****
  {
      win_T	*win;
  
!     /* The quickfix window can be opened even if the quickfix list is not set
!      * using ":copen". This is not true for location lists.  */
      if (qi == NULL)
  	return 0;
      win = qf_find_win(qi);
--- 5769,5776 ----
  {
      win_T	*win;
  
!     // The quickfix window can be opened even if the quickfix list is not set
!     // using ":copen". This is not true for location lists.
      if (qi == NULL)
  	return 0;
      win = qf_find_win(qi);
***************
*** 5922,5934 ****
      int		qf_idx;
      dictitem_T	*di;
  
!     qf_idx = qi->qf_curlist;	/* default is the current list */
      if ((di = dict_find(what, (char_u *)"nr", -1)) != NULL)
      {
! 	/* Use the specified quickfix/location list */
  	if (di->di_tv.v_type == VAR_NUMBER)
  	{
! 	    /* for zero use the current list */
  	    if (di->di_tv.vval.v_number != 0)
  	    {
  		qf_idx = di->di_tv.vval.v_number - 1;
--- 5844,5856 ----
      int		qf_idx;
      dictitem_T	*di;
  
!     qf_idx = qi->qf_curlist;	// default is the current list
      if ((di = dict_find(what, (char_u *)"nr", -1)) != NULL)
      {
! 	// Use the specified quickfix/location list
  	if (di->di_tv.v_type == VAR_NUMBER)
  	{
! 	    // for zero use the current list
  	    if (di->di_tv.vval.v_number != 0)
  	    {
  		qf_idx = di->di_tv.vval.v_number - 1;
***************
*** 5939,5945 ****
  	else if (di->di_tv.v_type == VAR_STRING
  		&& di->di_tv.vval.v_string != NULL
  		&& STRCMP(di->di_tv.vval.v_string, "$") == 0)
! 	    /* Get the last quickfix list number */
  	    qf_idx = qi->qf_listcount - 1;
  	else
  	    qf_idx = INVALID_QFIDX;
--- 5861,5867 ----
  	else if (di->di_tv.v_type == VAR_STRING
  		&& di->di_tv.vval.v_string != NULL
  		&& STRCMP(di->di_tv.vval.v_string, "$") == 0)
! 	    // Get the last quickfix list number
  	    qf_idx = qi->qf_listcount - 1;
  	else
  	    qf_idx = INVALID_QFIDX;
***************
*** 5947,5958 ****
  
      if ((di = dict_find(what, (char_u *)"id", -1)) != NULL)
      {
! 	/* Look for a list with the specified id */
  	if (di->di_tv.v_type == VAR_NUMBER)
  	{
! 	    /*
! 	     * For zero, use the current list or the list specified by 'nr'
! 	     */
  	    if (di->di_tv.vval.v_number != 0)
  		qf_idx = qf_id2nr(qi, di->di_tv.vval.v_number);
  	}
--- 5869,5878 ----
  
      if ((di = dict_find(what, (char_u *)"id", -1)) != NULL)
      {
! 	// Look for a list with the specified id
  	if (di->di_tv.v_type == VAR_NUMBER)
  	{
! 	    // For zero, use the current list or the list specified by 'nr'
  	    if (di->di_tv.vval.v_number != 0)
  		qf_idx = qf_id2nr(qi, di->di_tv.vval.v_number);
  	}
***************
*** 6085,6091 ****
  {
      int idx = qi->qf_lists[qf_idx].qf_index;
      if (qf_list_empty(qi, qf_idx))
! 	/* For empty lists, qf_index is set to 1 */
  	idx = 0;
      return dict_add_number(retdict, "idx", idx);
  }
--- 6005,6011 ----
  {
      int idx = qi->qf_lists[qf_idx].qf_index;
      if (qf_list_empty(qi, qf_idx))
! 	// For empty lists, qf_index is set to 1
  	idx = 0;
      return dict_add_number(retdict, "idx", idx);
  }
***************
*** 6116,6122 ****
      if (!qf_stack_empty(qi))
  	qf_idx = qf_getprop_qfidx(qi, what);
  
!     /* List is not present or is empty */
      if (qf_stack_empty(qi) || qf_idx == INVALID_QFIDX)
  	return qf_getprop_defaults(qi, flags, retdict);
  
--- 6036,6042 ----
      if (!qf_stack_empty(qi))
  	qf_idx = qf_getprop_qfidx(qi, what);
  
!     // List is not present or is empty
      if (qf_stack_empty(qi) || qf_idx == INVALID_QFIDX)
  	return qf_getprop_defaults(qi, flags, retdict);
  
***************
*** 6243,6255 ****
  
      if (action == ' ' || qf_idx == qi->qf_listcount)
      {
! 	/* make place for a new list */
  	qf_new_list(qi, title);
  	qf_idx = qi->qf_curlist;
  	qfl = &qi->qf_lists[qf_idx];
      }
      else if (action == 'a' && !qf_list_empty(qi, qf_idx))
! 	/* Adding to existing list, use last entry. */
  	old_last = qfl->qf_last;
      else if (action == 'r')
      {
--- 6163,6175 ----
  
      if (action == ' ' || qf_idx == qi->qf_listcount)
      {
! 	// make place for a new list
  	qf_new_list(qi, title);
  	qf_idx = qi->qf_curlist;
  	qfl = &qi->qf_lists[qf_idx];
      }
      else if (action == 'a' && !qf_list_empty(qi, qf_idx))
! 	// Adding to existing list, use last entry.
  	old_last = qfl->qf_last;
      else if (action == 'r')
      {
***************
*** 6260,6266 ****
      for (li = list->lv_first; li != NULL; li = li->li_next)
      {
  	if (li->li_tv.v_type != VAR_DICT)
! 	    continue; /* Skip non-dict items */
  
  	d = li->li_tv.vval.v_dict;
  	if (d == NULL)
--- 6180,6186 ----
      for (li = list->lv_first; li != NULL; li = li->li_next)
      {
  	if (li->li_tv.v_type != VAR_DICT)
! 	    continue; // Skip non-dict items
  
  	d = li->li_tv.vval.v_dict;
  	if (d == NULL)
***************
*** 6272,6278 ****
      }
  
      if (qfl->qf_index == 0)
! 	/* no valid entry */
  	qfl->qf_nonevalid = TRUE;
      else
  	qfl->qf_nonevalid = FALSE;
--- 6192,6198 ----
      }
  
      if (qfl->qf_index == 0)
! 	// no valid entry
  	qfl->qf_nonevalid = TRUE;
      else
  	qfl->qf_nonevalid = FALSE;
***************
*** 6283,6289 ****
  	    qfl->qf_index = 1;
      }
  
!     /* Don't update the cursor in quickfix window when appending entries */
      qf_update_buffer(qi, old_last);
  
      return retval;
--- 6203,6209 ----
  	    qfl->qf_index = 1;
      }
  
!     // Don't update the cursor in quickfix window when appending entries
      qf_update_buffer(qi, old_last);
  
      return retval;
***************
*** 6300,6330 ****
  	int		*newlist)
  {
      dictitem_T	*di;
!     int		qf_idx = qi->qf_curlist;    /* default is the current list */
  
      if ((di = dict_find(what, (char_u *)"nr", -1)) != NULL)
      {
! 	/* Use the specified quickfix/location list */
  	if (di->di_tv.v_type == VAR_NUMBER)
  	{
! 	    /* for zero use the current list */
  	    if (di->di_tv.vval.v_number != 0)
  		qf_idx = di->di_tv.vval.v_number - 1;
  
  	    if ((action == ' ' || action == 'a') && qf_idx == qi->qf_listcount)
  	    {
! 		/*
! 		 * When creating a new list, accept qf_idx pointing to the next
! 		 * non-available list and add the new list at the end of the
! 		 * stack.
! 		 */
  		*newlist = TRUE;
  		qf_idx = qf_stack_empty(qi) ? 0 : qi->qf_listcount - 1;
  	    }
  	    else if (qf_idx < 0 || qf_idx >= qi->qf_listcount)
  		return INVALID_QFIDX;
  	    else if (action != ' ')
! 		*newlist = FALSE;	/* use the specified list */
  	}
  	else if (di->di_tv.v_type == VAR_STRING
  		&& di->di_tv.vval.v_string != NULL
--- 6220,6248 ----
  	int		*newlist)
  {
      dictitem_T	*di;
!     int		qf_idx = qi->qf_curlist;    // default is the current list
  
      if ((di = dict_find(what, (char_u *)"nr", -1)) != NULL)
      {
! 	// Use the specified quickfix/location list
  	if (di->di_tv.v_type == VAR_NUMBER)
  	{
! 	    // for zero use the current list
  	    if (di->di_tv.vval.v_number != 0)
  		qf_idx = di->di_tv.vval.v_number - 1;
  
  	    if ((action == ' ' || action == 'a') && qf_idx == qi->qf_listcount)
  	    {
! 		// When creating a new list, accept qf_idx pointing to the next
! 		// non-available list and add the new list at the end of the
! 		// stack.
  		*newlist = TRUE;
  		qf_idx = qf_stack_empty(qi) ? 0 : qi->qf_listcount - 1;
  	    }
  	    else if (qf_idx < 0 || qf_idx >= qi->qf_listcount)
  		return INVALID_QFIDX;
  	    else if (action != ' ')
! 		*newlist = FALSE;	// use the specified list
  	}
  	else if (di->di_tv.v_type == VAR_STRING
  		&& di->di_tv.vval.v_string != NULL
***************
*** 6343,6349 ****
  
      if (!*newlist && (di = dict_find(what, (char_u *)"id", -1)) != NULL)
      {
! 	/* Use the quickfix/location list with the specified id */
  	if (di->di_tv.v_type != VAR_NUMBER)
  	    return INVALID_QFIDX;
  
--- 6261,6267 ----
  
      if (!*newlist && (di = dict_find(what, (char_u *)"id", -1)) != NULL)
      {
! 	// Use the quickfix/location list with the specified id
  	if (di->di_tv.v_type != VAR_NUMBER)
  	    return INVALID_QFIDX;
  
***************
*** 6406,6412 ****
      dictitem_T	*efm_di;
      int		retval = FAIL;
  
!     /* Use the user supplied errorformat settings (if present) */
      if ((efm_di = dict_find(what, (char_u *)"efm", -1)) != NULL)
      {
  	if (efm_di->di_tv.v_type != VAR_STRING ||
--- 6324,6330 ----
      dictitem_T	*efm_di;
      int		retval = FAIL;
  
!     // Use the user supplied errorformat settings (if present)
      if ((efm_di = dict_find(what, (char_u *)"efm", -1)) != NULL)
      {
  	if (efm_di->di_tv.v_type != VAR_STRING ||
***************
*** 6415,6421 ****
  	errorformat = efm_di->di_tv.vval.v_string;
      }
  
!     /* Only a List value is supported */
      if (di->di_tv.v_type != VAR_LIST || di->di_tv.vval.v_list == NULL)
  	return FAIL;
  
--- 6333,6339 ----
  	errorformat = efm_di->di_tv.vval.v_string;
      }
  
!     // Only a List value is supported
      if (di->di_tv.v_type != VAR_LIST || di->di_tv.vval.v_list == NULL)
  	return FAIL;
  
***************
*** 6462,6468 ****
  	newlist = TRUE;
  
      qf_idx = qf_setprop_get_qfidx(qi, what, action, &newlist);
!     if (qf_idx == INVALID_QFIDX)	/* List not found */
  	return FAIL;
  
      if (newlist)
--- 6380,6386 ----
  	newlist = TRUE;
  
      qf_idx = qf_setprop_get_qfidx(qi, what, action, &newlist);
!     if (qf_idx == INVALID_QFIDX)	// List not found
  	return FAIL;
  
      if (newlist)
***************
*** 6516,6522 ****
  
      if (qfwin != NULL)
      {
! 	/* If the quickfix/location list window is open, then clear it */
  	if (qi->qf_curlist < qi->qf_listcount)
  	    qf_free(&qi->qf_lists[qi->qf_curlist]);
  	qf_update_buffer(qi, NULL);
--- 6434,6440 ----
  
      if (qfwin != NULL)
      {
! 	// If the quickfix/location list window is open, then clear it
  	if (qi->qf_curlist < qi->qf_listcount)
  	    qf_free(&qi->qf_lists[qi->qf_curlist]);
  	qf_update_buffer(qi, NULL);
***************
*** 6524,6532 ****
  
      if (wp != NULL && IS_LL_WINDOW(wp))
      {
! 	/* If in the location list window, then use the non-location list
! 	 * window with this location list (if present)
! 	 */
  	llwin = find_win_with_ll(qi);
  	if (llwin != NULL)
  	    wp = llwin;
--- 6442,6449 ----
  
      if (wp != NULL && IS_LL_WINDOW(wp))
      {
! 	// If in the location list window, then use the non-location list
! 	// window with this location list (if present)
  	llwin = find_win_with_ll(qi);
  	if (llwin != NULL)
  	    wp = llwin;
***************
*** 6535,6551 ****
      qf_free_all(wp);
      if (wp == NULL)
      {
! 	/* quickfix list */
  	qi->qf_curlist = 0;
  	qi->qf_listcount = 0;
      }
      else if (IS_LL_WINDOW(orig_wp))
      {
! 	/* If the location list window is open, then create a new empty
! 	 * location list */
  	qf_info_T *new_ll = ll_new_list();
  
! 	/* first free the list reference in the location list window */
  	ll_free_all(&orig_wp->w_llist_ref);
  
  	orig_wp->w_llist_ref = new_ll;
--- 6452,6468 ----
      qf_free_all(wp);
      if (wp == NULL)
      {
! 	// quickfix list
  	qi->qf_curlist = 0;
  	qi->qf_listcount = 0;
      }
      else if (IS_LL_WINDOW(orig_wp))
      {
! 	// If the location list window is open, then create a new empty
! 	// location list
  	qf_info_T *new_ll = ll_new_list();
  
! 	// first free the list reference in the location list window
  	ll_free_all(&orig_wp->w_llist_ref);
  
  	orig_wp->w_llist_ref = new_ll;
***************
*** 6582,6588 ****
  
      if (action == 'f')
      {
! 	/* Free the entire quickfix or location list stack */
  	qf_free_stack(wp, qi);
      }
      else if (what != NULL)
--- 6499,6505 ----
  
      if (action == 'f')
      {
! 	// Free the entire quickfix or location list stack
  	qf_free_stack(wp, qi);
      }
      else if (what != NULL)
***************
*** 6643,6652 ****
  	}
  	if (IS_LL_WINDOW(win) && (win->w_llist_ref->qf_refcount == 1))
  	{
! 	    /* In a location list window and none of the other windows is
! 	     * referring to this location list. Mark the location list
! 	     * context as still in use.
! 	     */
  	    abort = mark_quickfix_ctx(win->w_llist_ref, copyID);
  	    if (abort)
  		return abort;
--- 6560,6568 ----
  	}
  	if (IS_LL_WINDOW(win) && (win->w_llist_ref->qf_refcount == 1))
  	{
! 	    // In a location list window and none of the other windows is
! 	    // referring to this location list. Mark the location list
! 	    // context as still in use.
  	    abort = mark_quickfix_ctx(win->w_llist_ref, copyID);
  	    if (abort)
  		return abort;
***************
*** 6694,6700 ****
  #endif
      }
  
!     /* Must come after autocommands. */
      if (is_loclist_cmd(eap->cmdidx))
      {
  	qi = ll_get_or_alloc_list(curwin);
--- 6610,6616 ----
  #endif
      }
  
!     // Must come after autocommands.
      if (is_loclist_cmd(eap->cmdidx))
      {
  	qi = ll_get_or_alloc_list(curwin);
***************
*** 6807,6814 ****
  	wp = curwin;
      }
  
!     /* Evaluate the expression.  When the result is a string or a list we can
!      * use it to fill the errorlist. */
      tv = eval_expr(eap->arg, NULL);
      if (tv != NULL)
      {
--- 6723,6730 ----
  	wp = curwin;
      }
  
!     // Evaluate the expression.  When the result is a string or a list we can
!     // use it to fill the errorlist.
      tv = eval_expr(eap->arg, NULL);
      if (tv != NULL)
      {
***************
*** 6854,6874 ****
      win_T	*wp;
      qf_info_T	*qi;
  
!     /* If the current window is a help window, then use it */
      if (bt_help(curwin->w_buffer))
  	wp = curwin;
      else
! 	/* Find an existing help window */
  	wp = qf_find_help_win();
  
!     if (wp == NULL)	    /* Help window not found */
  	qi = NULL;
      else
  	qi = wp->w_llist;
  
      if (qi == NULL)
      {
! 	/* Allocate a new location list for help text matches */
  	if ((qi = ll_new_list()) == NULL)
  	    return NULL;
  	*new_ll = TRUE;
--- 6770,6790 ----
      win_T	*wp;
      qf_info_T	*qi;
  
!     // If the current window is a help window, then use it
      if (bt_help(curwin->w_buffer))
  	wp = curwin;
      else
! 	// Find an existing help window
  	wp = qf_find_help_win();
  
!     if (wp == NULL)	    // Help window not found
  	qi = NULL;
      else
  	qi = wp->w_llist;
  
      if (qi == NULL)
      {
! 	// Allocate a new location list for help text matches
  	if ((qi = ll_new_list()) == NULL)
  	    return NULL;
  	*new_ll = TRUE;
***************
*** 6901,6908 ****
      {
  	char_u    *line = IObuff;
  #ifdef FEAT_MBYTE
! 	/* Convert a line if 'encoding' is not utf-8 and
! 	 * the line contains a non-ASCII character. */
  	if (p_vc->vc_type != CONV_NONE
  		&& has_non_ascii(IObuff))
  	{
--- 6817,6824 ----
      {
  	char_u    *line = IObuff;
  #ifdef FEAT_MBYTE
! 	// Convert a line if 'encoding' is not utf-8 and
! 	// the line contains a non-ASCII character.
  	if (p_vc->vc_type != CONV_NONE
  		&& has_non_ascii(IObuff))
  	{
***************
*** 6916,6940 ****
  	{
  	    int	l = (int)STRLEN(line);
  
! 	    /* remove trailing CR, LF, spaces, etc. */
  	    while (l > 0 && line[l - 1] <= ' ')
  		line[--l] = NUL;
  
  	    if (qf_add_entry(qi,
  			qi->qf_curlist,
! 			NULL,	/* dir */
  			fname,
  			NULL,
  			0,
  			line,
  			lnum,
  			(int)(p_regmatch->startp[0] - line)
! 			+ 1, /* col */
! 			FALSE,	/* vis_col */
! 			NULL,	/* search pattern */
! 			0,		/* nr */
! 			1,		/* type */
! 			TRUE	/* valid */
  			) == FAIL)
  	    {
  		got_int = TRUE;
--- 6832,6856 ----
  	{
  	    int	l = (int)STRLEN(line);
  
! 	    // remove trailing CR, LF, spaces, etc.
  	    while (l > 0 && line[l - 1] <= ' ')
  		line[--l] = NUL;
  
  	    if (qf_add_entry(qi,
  			qi->qf_curlist,
! 			NULL,	// dir
  			fname,
  			NULL,
  			0,
  			line,
  			lnum,
  			(int)(p_regmatch->startp[0] - line)
! 			+ 1,	// col
! 			FALSE,	// vis_col
! 			NULL,	// search pattern
! 			0,	// nr
! 			1,	// type
! 			TRUE	// valid
  			) == FAIL)
  	    {
  		got_int = TRUE;
***************
*** 6976,6982 ****
      char_u	**fnames;
      int		fi;
  
!     /* Find all "*.txt" and "*.??x" files in the "doc" directory. */
      add_pathsep(dirname);
      STRCAT(dirname, "doc/*.\\(txt\\|??x\\)");
      if (gen_expand_wildcards(1, &dirname, &fcount,
--- 6892,6898 ----
      char_u	**fnames;
      int		fi;
  
!     // Find all "*.txt" and "*.??x" files in the "doc" directory.
      add_pathsep(dirname);
      STRCAT(dirname, "doc/*.\\(txt\\|??x\\)");
      if (gen_expand_wildcards(1, &dirname, &fcount,
***************
*** 6986,6992 ****
  	for (fi = 0; fi < fcount && !got_int; ++fi)
  	{
  #ifdef FEAT_MULTI_LANG
! 	    /* Skip files for a different language. */
  	    if (lang != NULL
  		    && STRNICMP(lang, fnames[fi]
  				    + STRLEN(fnames[fi]) - 3, 2) != 0
--- 6902,6908 ----
  	for (fi = 0; fi < fcount && !got_int; ++fi)
  	{
  #ifdef FEAT_MULTI_LANG
! 	    // Skip files for a different language.
  	    if (lang != NULL
  		    && STRNICMP(lang, fnames[fi]
  				    + STRLEN(fnames[fi]) - 3, 2) != 0
***************
*** 7020,7034 ****
  #ifdef FEAT_MBYTE
      vimconv_T	vc;
  
!     /* Help files are in utf-8 or latin1, convert lines when 'encoding'
!      * differs. */
      vc.vc_type = CONV_NONE;
      if (!enc_utf8)
  	convert_setup(&vc, (char_u *)"utf-8", p_enc);
  #endif
  
  
!     /* Go through all the directories in 'runtimepath' */
      p = p_rtp;
      while (*p != NUL && !got_int)
      {
--- 6936,6950 ----
  #ifdef FEAT_MBYTE
      vimconv_T	vc;
  
!     // Help files are in utf-8 or latin1, convert lines when 'encoding'
!     // differs.
      vc.vc_type = CONV_NONE;
      if (!enc_utf8)
  	convert_setup(&vc, (char_u *)"utf-8", p_enc);
  #endif
  
  
!     // Go through all the directories in 'runtimepath'
      p = p_rtp;
      while (*p != NUL && !got_int)
      {
***************
*** 7124,7134 ****
  	apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
  					       curbuf->b_fname, TRUE, curbuf);
  	if (!new_qi && IS_LL_STACK(qi) && qf_find_buf(qi) == NULL)
! 	    /* autocommands made "qi" invalid */
  	    return;
      }
  
!     /* Jump to first match. */
      if (!qf_list_empty(qi, qi->qf_curlist))
  	qf_jump(qi, 0, 0, FALSE);
      else
--- 7040,7050 ----
  	apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name,
  					       curbuf->b_fname, TRUE, curbuf);
  	if (!new_qi && IS_LL_STACK(qi) && qf_find_buf(qi) == NULL)
! 	    // autocommands made "qi" invalid
  	    return;
      }
  
!     // Jump to first match.
      if (!qf_list_empty(qi, qi->qf_curlist))
  	qf_jump(qi, 0, 0, FALSE);
      else
*** ../vim-8.1.0460/src/version.c	2018-10-07 20:14:53.091279680 +0200
--- src/version.c	2018-10-07 20:25:44.858426041 +0200
***************
*** 794,795 ****
--- 794,797 ----
  {   /* Add new patch number below this line */
+ /**/
+     461,
  /**/

-- 
hundred-and-one symptoms of being an internet addict:
169. You hire a housekeeper for your home page.

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///