summaryrefslogtreecommitdiff
path: root/data/vim/patches/8.1.1318
blob: 6a788947bb6ff4d1a69d1f38a0ebfffca58ad305 (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
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
To: vim_dev@googlegroups.com
Subject: Patch 8.1.1318
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.1318
Problem:    Code for text changes is in a "misc" file.
Solution:   Move the code to change.c.
Files:	    src/misc1.c, src/proto/misc1.pro, src/change.c,
            src/proto/change.pro, src/proto.h, src/memline.c, Filelist,
            src/Make_cyg_ming.mak, src/Make_dice.mak, src/Make_manx.mak,
            src/Make_morph.mak, src/Make_mvc.mak, src/Make_sas.mak,
            src/Make_vms.mms, src/Makefile, src/README.md


*** ../vim-8.1.1317/src/misc1.c	2019-05-09 15:12:45.172723940 +0200
--- src/misc1.c	2019-05-11 16:57:09.876376738 +0200
***************
*** 447,597 ****
  }
  
  /*
-  * Copy the indent from ptr to the current line (and fill to size)
-  * Leaves the cursor on the first non-blank in the line.
-  * Returns TRUE if the line was changed.
-  */
-     static int
- copy_indent(int size, char_u *src)
- {
-     char_u	*p = NULL;
-     char_u	*line = NULL;
-     char_u	*s;
-     int		todo;
-     int		ind_len;
-     int		line_len = 0;
-     int		tab_pad;
-     int		ind_done;
-     int		round;
- #ifdef FEAT_VARTABS
-     int		ind_col;
- #endif
- 
-     /* Round 1: compute the number of characters needed for the indent
-      * Round 2: copy the characters. */
-     for (round = 1; round <= 2; ++round)
-     {
- 	todo = size;
- 	ind_len = 0;
- 	ind_done = 0;
- #ifdef FEAT_VARTABS
- 	ind_col = 0;
- #endif
- 	s = src;
- 
- 	/* Count/copy the usable portion of the source line */
- 	while (todo > 0 && VIM_ISWHITE(*s))
- 	{
- 	    if (*s == TAB)
- 	    {
- #ifdef FEAT_VARTABS
- 		tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
- 							curbuf->b_p_vts_array);
- #else
- 		tab_pad = (int)curbuf->b_p_ts
- 					   - (ind_done % (int)curbuf->b_p_ts);
- #endif
- 		/* Stop if this tab will overshoot the target */
- 		if (todo < tab_pad)
- 		    break;
- 		todo -= tab_pad;
- 		ind_done += tab_pad;
- #ifdef FEAT_VARTABS
- 		ind_col += tab_pad;
- #endif
- 	    }
- 	    else
- 	    {
- 		--todo;
- 		++ind_done;
- #ifdef FEAT_VARTABS
- 		++ind_col;
- #endif
- 	    }
- 	    ++ind_len;
- 	    if (p != NULL)
- 		*p++ = *s;
- 	    ++s;
- 	}
- 
- 	/* Fill to next tabstop with a tab, if possible */
- #ifdef FEAT_VARTABS
- 	tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
- 							curbuf->b_p_vts_array);
- #else
- 	tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
- #endif
- 	if (todo >= tab_pad && !curbuf->b_p_et)
- 	{
- 	    todo -= tab_pad;
- 	    ++ind_len;
- #ifdef FEAT_VARTABS
- 	    ind_col += tab_pad;
- #endif
- 	    if (p != NULL)
- 		*p++ = TAB;
- 	}
- 
- 	/* Add tabs required for indent */
- 	if (!curbuf->b_p_et)
- 	{
- #ifdef FEAT_VARTABS
- 	    for (;;)
- 	    {
- 		tab_pad = tabstop_padding(ind_col, curbuf->b_p_ts,
- 							curbuf->b_p_vts_array);
- 		if (todo < tab_pad)
- 		    break;
- 		todo -= tab_pad;
- 		++ind_len;
- 		ind_col += tab_pad;
- 		if (p != NULL)
- 		    *p++ = TAB;
- 	    }
- #else
- 	    while (todo >= (int)curbuf->b_p_ts)
- 	    {
- 		todo -= (int)curbuf->b_p_ts;
- 		++ind_len;
- 		if (p != NULL)
- 		    *p++ = TAB;
- 	    }
- #endif
- 	}
- 
- 	/* Count/add spaces required for indent */
- 	while (todo > 0)
- 	{
- 	    --todo;
- 	    ++ind_len;
- 	    if (p != NULL)
- 		*p++ = ' ';
- 	}
- 
- 	if (p == NULL)
- 	{
- 	    /* Allocate memory for the result: the copied indent, new indent
- 	     * and the rest of the line. */
- 	    line_len = (int)STRLEN(ml_get_curline()) + 1;
- 	    line = alloc(ind_len + line_len);
- 	    if (line == NULL)
- 		return FALSE;
- 	    p = line;
- 	}
-     }
- 
-     /* Append the original line */
-     mch_memmove(p, ml_get_curline(), (size_t)line_len);
- 
-     /* Replace the line */
-     ml_replace(curwin->w_cursor.lnum, line, FALSE);
- 
-     /* Put the cursor after the indent. */
-     curwin->w_cursor.col = ind_len;
-     return TRUE;
- }
- 
- /*
   * Return the indent of the current line after a number.  Return -1 if no
   * number was found.  Used for 'n' in 'formatoptions': numbered list.
   * Since a pattern is used it can actually handle more than numbers.
--- 447,452 ----
***************
*** 704,1763 ****
  }
  #endif
  
- 
- /*
-  * open_line: Add a new line below or above the current line.
-  *
-  * For VREPLACE mode, we only add a new line when we get to the end of the
-  * file, otherwise we just start replacing the next line.
-  *
-  * Caller must take care of undo.  Since VREPLACE may affect any number of
-  * lines however, it may call u_save_cursor() again when starting to change a
-  * new line.
-  * "flags": OPENLINE_DELSPACES	delete spaces after cursor
-  *	    OPENLINE_DO_COM	format comments
-  *	    OPENLINE_KEEPTRAIL	keep trailing spaces
-  *	    OPENLINE_MARKFIX	adjust mark positions after the line break
-  *	    OPENLINE_COM_LIST	format comments with list or 2nd line indent
-  *
-  * "second_line_indent": indent for after ^^D in Insert mode or if flag
-  *			  OPENLINE_COM_LIST
-  *
-  * Return OK for success, FAIL for failure
-  */
-     int
- open_line(
-     int		dir,		/* FORWARD or BACKWARD */
-     int		flags,
-     int		second_line_indent)
- {
-     char_u	*saved_line;		/* copy of the original line */
-     char_u	*next_line = NULL;	/* copy of the next line */
-     char_u	*p_extra = NULL;	/* what goes to next line */
-     int		less_cols = 0;		/* less columns for mark in new line */
-     int		less_cols_off = 0;	/* columns to skip for mark adjust */
-     pos_T	old_cursor;		/* old cursor position */
-     int		newcol = 0;		/* new cursor column */
-     int		newindent = 0;		/* auto-indent of the new line */
-     int		n;
-     int		trunc_line = FALSE;	/* truncate current line afterwards */
-     int		retval = FAIL;		/* return value */
- #ifdef FEAT_COMMENTS
-     int		extra_len = 0;		/* length of p_extra string */
-     int		lead_len;		/* length of comment leader */
-     char_u	*lead_flags;	/* position in 'comments' for comment leader */
-     char_u	*leader = NULL;		/* copy of comment leader */
- #endif
-     char_u	*allocated = NULL;	/* allocated memory */
-     char_u	*p;
-     int		saved_char = NUL;	/* init for GCC */
- #if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
-     pos_T	*pos;
- #endif
- #ifdef FEAT_SMARTINDENT
-     int		do_si = (!p_paste && curbuf->b_p_si
- # ifdef FEAT_CINDENT
- 					&& !curbuf->b_p_cin
- # endif
- # ifdef FEAT_EVAL
- 					&& *curbuf->b_p_inde == NUL
- # endif
- 			);
-     int		no_si = FALSE;		/* reset did_si afterwards */
-     int		first_char = NUL;	/* init for GCC */
- #endif
- #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
-     int		vreplace_mode;
- #endif
-     int		did_append;		/* appended a new line */
-     int		saved_pi = curbuf->b_p_pi; /* copy of preserveindent setting */
- 
-     /*
-      * make a copy of the current line so we can mess with it
-      */
-     saved_line = vim_strsave(ml_get_curline());
-     if (saved_line == NULL)	    /* out of memory! */
- 	return FALSE;
- 
-     if (State & VREPLACE_FLAG)
-     {
- 	/*
- 	 * With VREPLACE we make a copy of the next line, which we will be
- 	 * starting to replace.  First make the new line empty and let vim play
- 	 * with the indenting and comment leader to its heart's content.  Then
- 	 * we grab what it ended up putting on the new line, put back the
- 	 * original line, and call ins_char() to put each new character onto
- 	 * the line, replacing what was there before and pushing the right
- 	 * stuff onto the replace stack.  -- webb.
- 	 */
- 	if (curwin->w_cursor.lnum < orig_line_count)
- 	    next_line = vim_strsave(ml_get(curwin->w_cursor.lnum + 1));
- 	else
- 	    next_line = vim_strsave((char_u *)"");
- 	if (next_line == NULL)	    /* out of memory! */
- 	    goto theend;
- 
- 	/*
- 	 * In VREPLACE mode, a NL replaces the rest of the line, and starts
- 	 * replacing the next line, so push all of the characters left on the
- 	 * line onto the replace stack.  We'll push any other characters that
- 	 * might be replaced at the start of the next line (due to autoindent
- 	 * etc) a bit later.
- 	 */
- 	replace_push(NUL);  /* Call twice because BS over NL expects it */
- 	replace_push(NUL);
- 	p = saved_line + curwin->w_cursor.col;
- 	while (*p != NUL)
- 	{
- 	    if (has_mbyte)
- 		p += replace_push_mb(p);
- 	    else
- 		replace_push(*p++);
- 	}
- 	saved_line[curwin->w_cursor.col] = NUL;
-     }
- 
-     if ((State & INSERT) && !(State & VREPLACE_FLAG))
-     {
- 	p_extra = saved_line + curwin->w_cursor.col;
- #ifdef FEAT_SMARTINDENT
- 	if (do_si)		/* need first char after new line break */
- 	{
- 	    p = skipwhite(p_extra);
- 	    first_char = *p;
- 	}
- #endif
- #ifdef FEAT_COMMENTS
- 	extra_len = (int)STRLEN(p_extra);
- #endif
- 	saved_char = *p_extra;
- 	*p_extra = NUL;
-     }
- 
-     u_clearline();		/* cannot do "U" command when adding lines */
- #ifdef FEAT_SMARTINDENT
-     did_si = FALSE;
- #endif
-     ai_col = 0;
- 
-     /*
-      * If we just did an auto-indent, then we didn't type anything on
-      * the prior line, and it should be truncated.  Do this even if 'ai' is not
-      * set because automatically inserting a comment leader also sets did_ai.
-      */
-     if (dir == FORWARD && did_ai)
- 	trunc_line = TRUE;
- 
-     /*
-      * If 'autoindent' and/or 'smartindent' is set, try to figure out what
-      * indent to use for the new line.
-      */
-     if (curbuf->b_p_ai
- #ifdef FEAT_SMARTINDENT
- 			|| do_si
- #endif
- 					    )
-     {
- 	/*
- 	 * count white space on current line
- 	 */
- #ifdef FEAT_VARTABS
- 	newindent = get_indent_str_vtab(saved_line, curbuf->b_p_ts,
- 						 curbuf->b_p_vts_array, FALSE);
- #else
- 	newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts, FALSE);
- #endif
- 	if (newindent == 0 && !(flags & OPENLINE_COM_LIST))
- 	    newindent = second_line_indent; /* for ^^D command in insert mode */
- 
- #ifdef FEAT_SMARTINDENT
- 	/*
- 	 * Do smart indenting.
- 	 * In insert/replace mode (only when dir == FORWARD)
- 	 * we may move some text to the next line. If it starts with '{'
- 	 * don't add an indent. Fixes inserting a NL before '{' in line
- 	 *	"if (condition) {"
- 	 */
- 	if (!trunc_line && do_si && *saved_line != NUL
- 				    && (p_extra == NULL || first_char != '{'))
- 	{
- 	    char_u  *ptr;
- 	    char_u  last_char;
- 
- 	    old_cursor = curwin->w_cursor;
- 	    ptr = saved_line;
- # ifdef FEAT_COMMENTS
- 	    if (flags & OPENLINE_DO_COM)
- 		lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
- 	    else
- 		lead_len = 0;
- # endif
- 	    if (dir == FORWARD)
- 	    {
- 		/*
- 		 * Skip preprocessor directives, unless they are
- 		 * recognised as comments.
- 		 */
- 		if (
- # ifdef FEAT_COMMENTS
- 			lead_len == 0 &&
- # endif
- 			ptr[0] == '#')
- 		{
- 		    while (ptr[0] == '#' && curwin->w_cursor.lnum > 1)
- 			ptr = ml_get(--curwin->w_cursor.lnum);
- 		    newindent = get_indent();
- 		}
- # ifdef FEAT_COMMENTS
- 		if (flags & OPENLINE_DO_COM)
- 		    lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
- 		else
- 		    lead_len = 0;
- 		if (lead_len > 0)
- 		{
- 		    /*
- 		     * This case gets the following right:
- 		     *	    \*
- 		     *	     * A comment (read '\' as '/').
- 		     *	     *\
- 		     * #define IN_THE_WAY
- 		     *	    This should line up here;
- 		     */
- 		    p = skipwhite(ptr);
- 		    if (p[0] == '/' && p[1] == '*')
- 			p++;
- 		    if (p[0] == '*')
- 		    {
- 			for (p++; *p; p++)
- 			{
- 			    if (p[0] == '/' && p[-1] == '*')
- 			    {
- 				/*
- 				 * End of C comment, indent should line up
- 				 * with the line containing the start of
- 				 * the comment
- 				 */
- 				curwin->w_cursor.col = (colnr_T)(p - ptr);
- 				if ((pos = findmatch(NULL, NUL)) != NULL)
- 				{
- 				    curwin->w_cursor.lnum = pos->lnum;
- 				    newindent = get_indent();
- 				}
- 			    }
- 			}
- 		    }
- 		}
- 		else	/* Not a comment line */
- # endif
- 		{
- 		    /* Find last non-blank in line */
- 		    p = ptr + STRLEN(ptr) - 1;
- 		    while (p > ptr && VIM_ISWHITE(*p))
- 			--p;
- 		    last_char = *p;
- 
- 		    /*
- 		     * find the character just before the '{' or ';'
- 		     */
- 		    if (last_char == '{' || last_char == ';')
- 		    {
- 			if (p > ptr)
- 			    --p;
- 			while (p > ptr && VIM_ISWHITE(*p))
- 			    --p;
- 		    }
- 		    /*
- 		     * Try to catch lines that are split over multiple
- 		     * lines.  eg:
- 		     *	    if (condition &&
- 		     *			condition) {
- 		     *		Should line up here!
- 		     *	    }
- 		     */
- 		    if (*p == ')')
- 		    {
- 			curwin->w_cursor.col = (colnr_T)(p - ptr);
- 			if ((pos = findmatch(NULL, '(')) != NULL)
- 			{
- 			    curwin->w_cursor.lnum = pos->lnum;
- 			    newindent = get_indent();
- 			    ptr = ml_get_curline();
- 			}
- 		    }
- 		    /*
- 		     * If last character is '{' do indent, without
- 		     * checking for "if" and the like.
- 		     */
- 		    if (last_char == '{')
- 		    {
- 			did_si = TRUE;	/* do indent */
- 			no_si = TRUE;	/* don't delete it when '{' typed */
- 		    }
- 		    /*
- 		     * Look for "if" and the like, use 'cinwords'.
- 		     * Don't do this if the previous line ended in ';' or
- 		     * '}'.
- 		     */
- 		    else if (last_char != ';' && last_char != '}'
- 						       && cin_is_cinword(ptr))
- 			did_si = TRUE;
- 		}
- 	    }
- 	    else /* dir == BACKWARD */
- 	    {
- 		/*
- 		 * Skip preprocessor directives, unless they are
- 		 * recognised as comments.
- 		 */
- 		if (
- # ifdef FEAT_COMMENTS
- 			lead_len == 0 &&
- # endif
- 			ptr[0] == '#')
- 		{
- 		    int was_backslashed = FALSE;
- 
- 		    while ((ptr[0] == '#' || was_backslashed) &&
- 			 curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
- 		    {
- 			if (*ptr && ptr[STRLEN(ptr) - 1] == '\\')
- 			    was_backslashed = TRUE;
- 			else
- 			    was_backslashed = FALSE;
- 			ptr = ml_get(++curwin->w_cursor.lnum);
- 		    }
- 		    if (was_backslashed)
- 			newindent = 0;	    /* Got to end of file */
- 		    else
- 			newindent = get_indent();
- 		}
- 		p = skipwhite(ptr);
- 		if (*p == '}')	    /* if line starts with '}': do indent */
- 		    did_si = TRUE;
- 		else		    /* can delete indent when '{' typed */
- 		    can_si_back = TRUE;
- 	    }
- 	    curwin->w_cursor = old_cursor;
- 	}
- 	if (do_si)
- 	    can_si = TRUE;
- #endif /* FEAT_SMARTINDENT */
- 
- 	did_ai = TRUE;
-     }
- 
- #ifdef FEAT_COMMENTS
-     /*
-      * Find out if the current line starts with a comment leader.
-      * This may then be inserted in front of the new line.
-      */
-     end_comment_pending = NUL;
-     if (flags & OPENLINE_DO_COM)
- 	lead_len = get_leader_len(saved_line, &lead_flags, dir == BACKWARD, TRUE);
-     else
- 	lead_len = 0;
-     if (lead_len > 0)
-     {
- 	char_u	*lead_repl = NULL;	    /* replaces comment leader */
- 	int	lead_repl_len = 0;	    /* length of *lead_repl */
- 	char_u	lead_middle[COM_MAX_LEN];   /* middle-comment string */
- 	char_u	lead_end[COM_MAX_LEN];	    /* end-comment string */
- 	char_u	*comment_end = NULL;	    /* where lead_end has been found */
- 	int	extra_space = FALSE;	    /* append extra space */
- 	int	current_flag;
- 	int	require_blank = FALSE;	    /* requires blank after middle */
- 	char_u	*p2;
- 
- 	/*
- 	 * If the comment leader has the start, middle or end flag, it may not
- 	 * be used or may be replaced with the middle leader.
- 	 */
- 	for (p = lead_flags; *p && *p != ':'; ++p)
- 	{
- 	    if (*p == COM_BLANK)
- 	    {
- 		require_blank = TRUE;
- 		continue;
- 	    }
- 	    if (*p == COM_START || *p == COM_MIDDLE)
- 	    {
- 		current_flag = *p;
- 		if (*p == COM_START)
- 		{
- 		    /*
- 		     * Doing "O" on a start of comment does not insert leader.
- 		     */
- 		    if (dir == BACKWARD)
- 		    {
- 			lead_len = 0;
- 			break;
- 		    }
- 
- 		    /* find start of middle part */
- 		    (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
- 		    require_blank = FALSE;
- 		}
- 
- 		/*
- 		 * Isolate the strings of the middle and end leader.
- 		 */
- 		while (*p && p[-1] != ':')	/* find end of middle flags */
- 		{
- 		    if (*p == COM_BLANK)
- 			require_blank = TRUE;
- 		    ++p;
- 		}
- 		(void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
- 
- 		while (*p && p[-1] != ':')	/* find end of end flags */
- 		{
- 		    /* Check whether we allow automatic ending of comments */
- 		    if (*p == COM_AUTO_END)
- 			end_comment_pending = -1; /* means we want to set it */
- 		    ++p;
- 		}
- 		n = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
- 
- 		if (end_comment_pending == -1)	/* we can set it now */
- 		    end_comment_pending = lead_end[n - 1];
- 
- 		/*
- 		 * If the end of the comment is in the same line, don't use
- 		 * the comment leader.
- 		 */
- 		if (dir == FORWARD)
- 		{
- 		    for (p = saved_line + lead_len; *p; ++p)
- 			if (STRNCMP(p, lead_end, n) == 0)
- 			{
- 			    comment_end = p;
- 			    lead_len = 0;
- 			    break;
- 			}
- 		}
- 
- 		/*
- 		 * Doing "o" on a start of comment inserts the middle leader.
- 		 */
- 		if (lead_len > 0)
- 		{
- 		    if (current_flag == COM_START)
- 		    {
- 			lead_repl = lead_middle;
- 			lead_repl_len = (int)STRLEN(lead_middle);
- 		    }
- 
- 		    /*
- 		     * If we have hit RETURN immediately after the start
- 		     * comment leader, then put a space after the middle
- 		     * comment leader on the next line.
- 		     */
- 		    if (!VIM_ISWHITE(saved_line[lead_len - 1])
- 			    && ((p_extra != NULL
- 				    && (int)curwin->w_cursor.col == lead_len)
- 				|| (p_extra == NULL
- 				    && saved_line[lead_len] == NUL)
- 				|| require_blank))
- 			extra_space = TRUE;
- 		}
- 		break;
- 	    }
- 	    if (*p == COM_END)
- 	    {
- 		/*
- 		 * Doing "o" on the end of a comment does not insert leader.
- 		 * Remember where the end is, might want to use it to find the
- 		 * start (for C-comments).
- 		 */
- 		if (dir == FORWARD)
- 		{
- 		    comment_end = skipwhite(saved_line);
- 		    lead_len = 0;
- 		    break;
- 		}
- 
- 		/*
- 		 * Doing "O" on the end of a comment inserts the middle leader.
- 		 * Find the string for the middle leader, searching backwards.
- 		 */
- 		while (p > curbuf->b_p_com && *p != ',')
- 		    --p;
- 		for (lead_repl = p; lead_repl > curbuf->b_p_com
- 					 && lead_repl[-1] != ':'; --lead_repl)
- 		    ;
- 		lead_repl_len = (int)(p - lead_repl);
- 
- 		/* We can probably always add an extra space when doing "O" on
- 		 * the comment-end */
- 		extra_space = TRUE;
- 
- 		/* Check whether we allow automatic ending of comments */
- 		for (p2 = p; *p2 && *p2 != ':'; p2++)
- 		{
- 		    if (*p2 == COM_AUTO_END)
- 			end_comment_pending = -1; /* means we want to set it */
- 		}
- 		if (end_comment_pending == -1)
- 		{
- 		    /* Find last character in end-comment string */
- 		    while (*p2 && *p2 != ',')
- 			p2++;
- 		    end_comment_pending = p2[-1];
- 		}
- 		break;
- 	    }
- 	    if (*p == COM_FIRST)
- 	    {
- 		/*
- 		 * Comment leader for first line only:	Don't repeat leader
- 		 * when using "O", blank out leader when using "o".
- 		 */
- 		if (dir == BACKWARD)
- 		    lead_len = 0;
- 		else
- 		{
- 		    lead_repl = (char_u *)"";
- 		    lead_repl_len = 0;
- 		}
- 		break;
- 	    }
- 	}
- 	if (lead_len)
- 	{
- 	    /* allocate buffer (may concatenate p_extra later) */
- 	    leader = alloc(lead_len + lead_repl_len + extra_space + extra_len
- 		     + (second_line_indent > 0 ? second_line_indent : 0) + 1);
- 	    allocated = leader;		    /* remember to free it later */
- 
- 	    if (leader == NULL)
- 		lead_len = 0;
- 	    else
- 	    {
- 		vim_strncpy(leader, saved_line, lead_len);
- 
- 		/*
- 		 * Replace leader with lead_repl, right or left adjusted
- 		 */
- 		if (lead_repl != NULL)
- 		{
- 		    int		c = 0;
- 		    int		off = 0;
- 
- 		    for (p = lead_flags; *p != NUL && *p != ':'; )
- 		    {
- 			if (*p == COM_RIGHT || *p == COM_LEFT)
- 			    c = *p++;
- 			else if (VIM_ISDIGIT(*p) || *p == '-')
- 			    off = getdigits(&p);
- 			else
- 			    ++p;
- 		    }
- 		    if (c == COM_RIGHT)    /* right adjusted leader */
- 		    {
- 			/* find last non-white in the leader to line up with */
- 			for (p = leader + lead_len - 1; p > leader
- 						      && VIM_ISWHITE(*p); --p)
- 			    ;
- 			++p;
- 
- 			/* Compute the length of the replaced characters in
- 			 * screen characters, not bytes. */
- 			{
- 			    int	    repl_size = vim_strnsize(lead_repl,
- 							       lead_repl_len);
- 			    int	    old_size = 0;
- 			    char_u  *endp = p;
- 			    int	    l;
- 
- 			    while (old_size < repl_size && p > leader)
- 			    {
- 				MB_PTR_BACK(leader, p);
- 				old_size += ptr2cells(p);
- 			    }
- 			    l = lead_repl_len - (int)(endp - p);
- 			    if (l != 0)
- 				mch_memmove(endp + l, endp,
- 					(size_t)((leader + lead_len) - endp));
- 			    lead_len += l;
- 			}
- 			mch_memmove(p, lead_repl, (size_t)lead_repl_len);
- 			if (p + lead_repl_len > leader + lead_len)
- 			    p[lead_repl_len] = NUL;
- 
- 			/* blank-out any other chars from the old leader. */
- 			while (--p >= leader)
- 			{
- 			    int l = mb_head_off(leader, p);
- 
- 			    if (l > 1)
- 			    {
- 				p -= l;
- 				if (ptr2cells(p) > 1)
- 				{
- 				    p[1] = ' ';
- 				    --l;
- 				}
- 				mch_memmove(p + 1, p + l + 1,
- 				   (size_t)((leader + lead_len) - (p + l + 1)));
- 				lead_len -= l;
- 				*p = ' ';
- 			    }
- 			    else if (!VIM_ISWHITE(*p))
- 				*p = ' ';
- 			}
- 		    }
- 		    else		    /* left adjusted leader */
- 		    {
- 			p = skipwhite(leader);
- 
- 			/* Compute the length of the replaced characters in
- 			 * screen characters, not bytes. Move the part that is
- 			 * not to be overwritten. */
- 			{
- 			    int	    repl_size = vim_strnsize(lead_repl,
- 							       lead_repl_len);
- 			    int	    i;
- 			    int	    l;
- 
- 			    for (i = 0; i < lead_len && p[i] != NUL; i += l)
- 			    {
- 				l = (*mb_ptr2len)(p + i);
- 				if (vim_strnsize(p, i + l) > repl_size)
- 				    break;
- 			    }
- 			    if (i != lead_repl_len)
- 			    {
- 				mch_memmove(p + lead_repl_len, p + i,
- 				       (size_t)(lead_len - i - (p - leader)));
- 				lead_len += lead_repl_len - i;
- 			    }
- 			}
- 			mch_memmove(p, lead_repl, (size_t)lead_repl_len);
- 
- 			/* Replace any remaining non-white chars in the old
- 			 * leader by spaces.  Keep Tabs, the indent must
- 			 * remain the same. */
- 			for (p += lead_repl_len; p < leader + lead_len; ++p)
- 			    if (!VIM_ISWHITE(*p))
- 			    {
- 				/* Don't put a space before a TAB. */
- 				if (p + 1 < leader + lead_len && p[1] == TAB)
- 				{
- 				    --lead_len;
- 				    mch_memmove(p, p + 1,
- 						     (leader + lead_len) - p);
- 				}
- 				else
- 				{
- 				    int	    l = (*mb_ptr2len)(p);
- 
- 				    if (l > 1)
- 				    {
- 					if (ptr2cells(p) > 1)
- 					{
- 					    /* Replace a double-wide char with
- 					     * two spaces */
- 					    --l;
- 					    *p++ = ' ';
- 					}
- 					mch_memmove(p + 1, p + l,
- 						     (leader + lead_len) - p);
- 					lead_len -= l - 1;
- 				    }
- 				    *p = ' ';
- 				}
- 			    }
- 			*p = NUL;
- 		    }
- 
- 		    /* Recompute the indent, it may have changed. */
- 		    if (curbuf->b_p_ai
- #ifdef FEAT_SMARTINDENT
- 					|| do_si
- #endif
- 							   )
- #ifdef FEAT_VARTABS
- 			newindent = get_indent_str_vtab(leader, curbuf->b_p_ts,
- 						 curbuf->b_p_vts_array, FALSE);
- #else
- 			newindent = get_indent_str(leader,
- 						   (int)curbuf->b_p_ts, FALSE);
- #endif
- 
- 		    /* Add the indent offset */
- 		    if (newindent + off < 0)
- 		    {
- 			off = -newindent;
- 			newindent = 0;
- 		    }
- 		    else
- 			newindent += off;
- 
- 		    /* Correct trailing spaces for the shift, so that
- 		     * alignment remains equal. */
- 		    while (off > 0 && lead_len > 0
- 					       && leader[lead_len - 1] == ' ')
- 		    {
- 			/* Don't do it when there is a tab before the space */
- 			if (vim_strchr(skipwhite(leader), '\t') != NULL)
- 			    break;
- 			--lead_len;
- 			--off;
- 		    }
- 
- 		    /* If the leader ends in white space, don't add an
- 		     * extra space */
- 		    if (lead_len > 0 && VIM_ISWHITE(leader[lead_len - 1]))
- 			extra_space = FALSE;
- 		    leader[lead_len] = NUL;
- 		}
- 
- 		if (extra_space)
- 		{
- 		    leader[lead_len++] = ' ';
- 		    leader[lead_len] = NUL;
- 		}
- 
- 		newcol = lead_len;
- 
- 		/*
- 		 * if a new indent will be set below, remove the indent that
- 		 * is in the comment leader
- 		 */
- 		if (newindent
- #ifdef FEAT_SMARTINDENT
- 				|| did_si
- #endif
- 					   )
- 		{
- 		    while (lead_len && VIM_ISWHITE(*leader))
- 		    {
- 			--lead_len;
- 			--newcol;
- 			++leader;
- 		    }
- 		}
- 
- 	    }
- #ifdef FEAT_SMARTINDENT
- 	    did_si = can_si = FALSE;
- #endif
- 	}
- 	else if (comment_end != NULL)
- 	{
- 	    /*
- 	     * We have finished a comment, so we don't use the leader.
- 	     * If this was a C-comment and 'ai' or 'si' is set do a normal
- 	     * indent to align with the line containing the start of the
- 	     * comment.
- 	     */
- 	    if (comment_end[0] == '*' && comment_end[1] == '/' &&
- 			(curbuf->b_p_ai
- #ifdef FEAT_SMARTINDENT
- 					|| do_si
- #endif
- 							   ))
- 	    {
- 		old_cursor = curwin->w_cursor;
- 		curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
- 		if ((pos = findmatch(NULL, NUL)) != NULL)
- 		{
- 		    curwin->w_cursor.lnum = pos->lnum;
- 		    newindent = get_indent();
- 		}
- 		curwin->w_cursor = old_cursor;
- 	    }
- 	}
-     }
- #endif
- 
-     /* (State == INSERT || State == REPLACE), only when dir == FORWARD */
-     if (p_extra != NULL)
-     {
- 	*p_extra = saved_char;		/* restore char that NUL replaced */
- 
- 	/*
- 	 * When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
- 	 * non-blank.
- 	 *
- 	 * When in REPLACE mode, put the deleted blanks on the replace stack,
- 	 * preceded by a NUL, so they can be put back when a BS is entered.
- 	 */
- 	if (REPLACE_NORMAL(State))
- 	    replace_push(NUL);	    /* end of extra blanks */
- 	if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
- 	{
- 	    while ((*p_extra == ' ' || *p_extra == '\t')
- 		    && (!enc_utf8
- 			       || !utf_iscomposing(utf_ptr2char(p_extra + 1))))
- 	    {
- 		if (REPLACE_NORMAL(State))
- 		    replace_push(*p_extra);
- 		++p_extra;
- 		++less_cols_off;
- 	    }
- 	}
- 
- 	/* columns for marks adjusted for removed columns */
- 	less_cols = (int)(p_extra - saved_line);
-     }
- 
-     if (p_extra == NULL)
- 	p_extra = (char_u *)"";		    /* append empty line */
- 
- #ifdef FEAT_COMMENTS
-     /* concatenate leader and p_extra, if there is a leader */
-     if (lead_len)
-     {
- 	if (flags & OPENLINE_COM_LIST && second_line_indent > 0)
- 	{
- 	    int i;
- 	    int padding = second_line_indent
- 					  - (newindent + (int)STRLEN(leader));
- 
- 	    /* Here whitespace is inserted after the comment char.
- 	     * Below, set_indent(newindent, SIN_INSERT) will insert the
- 	     * whitespace needed before the comment char. */
- 	    for (i = 0; i < padding; i++)
- 	    {
- 		STRCAT(leader, " ");
- 		less_cols--;
- 		newcol++;
- 	    }
- 	}
- 	STRCAT(leader, p_extra);
- 	p_extra = leader;
- 	did_ai = TRUE;	    /* So truncating blanks works with comments */
- 	less_cols -= lead_len;
-     }
-     else
- 	end_comment_pending = NUL;  /* turns out there was no leader */
- #endif
- 
-     old_cursor = curwin->w_cursor;
-     if (dir == BACKWARD)
- 	--curwin->w_cursor.lnum;
-     if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
-     {
- 	if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
- 								      == FAIL)
- 	    goto theend;
- 	/* Postpone calling changed_lines(), because it would mess up folding
- 	 * with markers.
- 	 * Skip mark_adjust when adding a line after the last one, there can't
- 	 * be marks there. But still needed in diff mode. */
- 	if (curwin->w_cursor.lnum + 1 < curbuf->b_ml.ml_line_count
- #ifdef FEAT_DIFF
- 		|| curwin->w_p_diff
- #endif
- 	    )
- 	    mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
- 	did_append = TRUE;
-     }
-     else
-     {
- 	/*
- 	 * In VREPLACE mode we are starting to replace the next line.
- 	 */
- 	curwin->w_cursor.lnum++;
- 	if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
- 	{
- 	    /* In case we NL to a new line, BS to the previous one, and NL
- 	     * again, we don't want to save the new line for undo twice.
- 	     */
- 	    (void)u_save_cursor();		    /* errors are ignored! */
- 	    vr_lines_changed++;
- 	}
- 	ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
- 	changed_bytes(curwin->w_cursor.lnum, 0);
- 	curwin->w_cursor.lnum--;
- 	did_append = FALSE;
-     }
- 
-     if (newindent
- #ifdef FEAT_SMARTINDENT
- 		    || did_si
- #endif
- 				)
-     {
- 	++curwin->w_cursor.lnum;
- #ifdef FEAT_SMARTINDENT
- 	if (did_si)
- 	{
- 	    int sw = (int)get_sw_value(curbuf);
- 
- 	    if (p_sr)
- 		newindent -= newindent % sw;
- 	    newindent += sw;
- 	}
- #endif
- 	/* Copy the indent */
- 	if (curbuf->b_p_ci)
- 	{
- 	    (void)copy_indent(newindent, saved_line);
- 
- 	    /*
- 	     * Set the 'preserveindent' option so that any further screwing
- 	     * with the line doesn't entirely destroy our efforts to preserve
- 	     * it.  It gets restored at the function end.
- 	     */
- 	    curbuf->b_p_pi = TRUE;
- 	}
- 	else
- 	    (void)set_indent(newindent, SIN_INSERT);
- 	less_cols -= curwin->w_cursor.col;
- 
- 	ai_col = curwin->w_cursor.col;
- 
- 	/*
- 	 * In REPLACE mode, for each character in the new indent, there must
- 	 * be a NUL on the replace stack, for when it is deleted with BS
- 	 */
- 	if (REPLACE_NORMAL(State))
- 	    for (n = 0; n < (int)curwin->w_cursor.col; ++n)
- 		replace_push(NUL);
- 	newcol += curwin->w_cursor.col;
- #ifdef FEAT_SMARTINDENT
- 	if (no_si)
- 	    did_si = FALSE;
- #endif
-     }
- 
- #ifdef FEAT_COMMENTS
-     /*
-      * In REPLACE mode, for each character in the extra leader, there must be
-      * a NUL on the replace stack, for when it is deleted with BS.
-      */
-     if (REPLACE_NORMAL(State))
- 	while (lead_len-- > 0)
- 	    replace_push(NUL);
- #endif
- 
-     curwin->w_cursor = old_cursor;
- 
-     if (dir == FORWARD)
-     {
- 	if (trunc_line || (State & INSERT))
- 	{
- 	    /* truncate current line at cursor */
- 	    saved_line[curwin->w_cursor.col] = NUL;
- 	    /* Remove trailing white space, unless OPENLINE_KEEPTRAIL used. */
- 	    if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
- 		truncate_spaces(saved_line);
- 	    ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
- 	    saved_line = NULL;
- 	    if (did_append)
- 	    {
- 		changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
- 					       curwin->w_cursor.lnum + 1, 1L);
- 		did_append = FALSE;
- 
- 		/* Move marks after the line break to the new line. */
- 		if (flags & OPENLINE_MARKFIX)
- 		    mark_col_adjust(curwin->w_cursor.lnum,
- 					 curwin->w_cursor.col + less_cols_off,
- 						      1L, (long)-less_cols, 0);
- 	    }
- 	    else
- 		changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
- 	}
- 
- 	/*
- 	 * Put the cursor on the new line.  Careful: the scrollup() above may
- 	 * have moved w_cursor, we must use old_cursor.
- 	 */
- 	curwin->w_cursor.lnum = old_cursor.lnum + 1;
-     }
-     if (did_append)
- 	changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
- 
-     curwin->w_cursor.col = newcol;
-     curwin->w_cursor.coladd = 0;
- 
- #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
-     /*
-      * In VREPLACE mode, we are handling the replace stack ourselves, so stop
-      * fixthisline() from doing it (via change_indent()) by telling it we're in
-      * normal INSERT mode.
-      */
-     if (State & VREPLACE_FLAG)
-     {
- 	vreplace_mode = State;	/* So we know to put things right later */
- 	State = INSERT;
-     }
-     else
- 	vreplace_mode = 0;
- #endif
- #ifdef FEAT_LISP
-     /*
-      * May do lisp indenting.
-      */
-     if (!p_paste
- # ifdef FEAT_COMMENTS
- 	    && leader == NULL
- # endif
- 	    && curbuf->b_p_lisp
- 	    && curbuf->b_p_ai)
-     {
- 	fixthisline(get_lisp_indent);
- 	ai_col = (colnr_T)getwhitecols_curline();
-     }
- #endif
- #ifdef FEAT_CINDENT
-     /*
-      * May do indenting after opening a new line.
-      */
-     if (!p_paste
- 	    && (curbuf->b_p_cin
- #  ifdef FEAT_EVAL
- 		    || *curbuf->b_p_inde != NUL
- #  endif
- 		)
- 	    && in_cinkeys(dir == FORWARD
- 		? KEY_OPEN_FORW
- 		: KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
-     {
- 	do_c_expr_indent();
- 	ai_col = (colnr_T)getwhitecols_curline();
-     }
- #endif
- #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
-     if (vreplace_mode != 0)
- 	State = vreplace_mode;
- #endif
- 
-     /*
-      * Finally, VREPLACE gets the stuff on the new line, then puts back the
-      * original line, and inserts the new stuff char by char, pushing old stuff
-      * onto the replace stack (via ins_char()).
-      */
-     if (State & VREPLACE_FLAG)
-     {
- 	/* Put new line in p_extra */
- 	p_extra = vim_strsave(ml_get_curline());
- 	if (p_extra == NULL)
- 	    goto theend;
- 
- 	/* Put back original line */
- 	ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
- 
- 	/* Insert new stuff into line again */
- 	curwin->w_cursor.col = 0;
- 	curwin->w_cursor.coladd = 0;
- 	ins_bytes(p_extra);	/* will call changed_bytes() */
- 	vim_free(p_extra);
- 	next_line = NULL;
-     }
- 
-     retval = OK;		/* success! */
- theend:
-     curbuf->b_p_pi = saved_pi;
-     vim_free(saved_line);
-     vim_free(next_line);
-     vim_free(allocated);
-     return retval;
- }
- 
  #if defined(FEAT_COMMENTS) || defined(PROTO)
  /*
   * get_leader_len() returns the length in bytes of the prefix of the given
--- 559,564 ----
***************
*** 2242,2728 ****
      return (count);
  }
  
- /*
-  * Insert string "p" at the cursor position.  Stops at a NUL byte.
-  * Handles Replace mode and multi-byte characters.
-  */
-     void
- ins_bytes(char_u *p)
- {
-     ins_bytes_len(p, (int)STRLEN(p));
- }
- 
- /*
-  * Insert string "p" with length "len" at the cursor position.
-  * Handles Replace mode and multi-byte characters.
-  */
-     void
- ins_bytes_len(char_u *p, int len)
- {
-     int		i;
-     int		n;
- 
-     if (has_mbyte)
- 	for (i = 0; i < len; i += n)
- 	{
- 	    if (enc_utf8)
- 		// avoid reading past p[len]
- 		n = utfc_ptr2len_len(p + i, len - i);
- 	    else
- 		n = (*mb_ptr2len)(p + i);
- 	    ins_char_bytes(p + i, n);
- 	}
-     else
- 	for (i = 0; i < len; ++i)
- 	    ins_char(p[i]);
- }
- 
- /*
-  * Insert or replace a single character at the cursor position.
-  * When in REPLACE or VREPLACE mode, replace any existing character.
-  * Caller must have prepared for undo.
-  * For multi-byte characters we get the whole character, the caller must
-  * convert bytes to a character.
-  */
-     void
- ins_char(int c)
- {
-     char_u	buf[MB_MAXBYTES + 1];
-     int		n = (*mb_char2bytes)(c, buf);
- 
-     /* When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
-      * Happens for CTRL-Vu9900. */
-     if (buf[0] == 0)
- 	buf[0] = '\n';
- 
-     ins_char_bytes(buf, n);
- }
- 
-     void
- ins_char_bytes(char_u *buf, int charlen)
- {
-     int		c = buf[0];
-     int		newlen;		// nr of bytes inserted
-     int		oldlen;		// nr of bytes deleted (0 when not replacing)
-     char_u	*p;
-     char_u	*newp;
-     char_u	*oldp;
-     int		linelen;	// length of old line including NUL
-     colnr_T	col;
-     linenr_T	lnum = curwin->w_cursor.lnum;
-     int		i;
- 
-     /* Break tabs if needed. */
-     if (virtual_active() && curwin->w_cursor.coladd > 0)
- 	coladvance_force(getviscol());
- 
-     col = curwin->w_cursor.col;
-     oldp = ml_get(lnum);
-     linelen = (int)STRLEN(oldp) + 1;
- 
-     /* The lengths default to the values for when not replacing. */
-     oldlen = 0;
-     newlen = charlen;
- 
-     if (State & REPLACE_FLAG)
-     {
- 	if (State & VREPLACE_FLAG)
- 	{
- 	    colnr_T	new_vcol = 0;   /* init for GCC */
- 	    colnr_T	vcol;
- 	    int		old_list;
- 
- 	    /*
- 	     * Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
- 	     * Returns the old value of list, so when finished,
- 	     * curwin->w_p_list should be set back to this.
- 	     */
- 	    old_list = curwin->w_p_list;
- 	    if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
- 		curwin->w_p_list = FALSE;
- 
- 	    /*
- 	     * In virtual replace mode each character may replace one or more
- 	     * characters (zero if it's a TAB).  Count the number of bytes to
- 	     * be deleted to make room for the new character, counting screen
- 	     * cells.  May result in adding spaces to fill a gap.
- 	     */
- 	    getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
- 	    new_vcol = vcol + chartabsize(buf, vcol);
- 	    while (oldp[col + oldlen] != NUL && vcol < new_vcol)
- 	    {
- 		vcol += chartabsize(oldp + col + oldlen, vcol);
- 		/* Don't need to remove a TAB that takes us to the right
- 		 * position. */
- 		if (vcol > new_vcol && oldp[col + oldlen] == TAB)
- 		    break;
- 		oldlen += (*mb_ptr2len)(oldp + col + oldlen);
- 		/* Deleted a bit too much, insert spaces. */
- 		if (vcol > new_vcol)
- 		    newlen += vcol - new_vcol;
- 	    }
- 	    curwin->w_p_list = old_list;
- 	}
- 	else if (oldp[col] != NUL)
- 	{
- 	    /* normal replace */
- 	    oldlen = (*mb_ptr2len)(oldp + col);
- 	}
- 
- 
- 	/* Push the replaced bytes onto the replace stack, so that they can be
- 	 * put back when BS is used.  The bytes of a multi-byte character are
- 	 * done the other way around, so that the first byte is popped off
- 	 * first (it tells the byte length of the character). */
- 	replace_push(NUL);
- 	for (i = 0; i < oldlen; ++i)
- 	{
- 	    if (has_mbyte)
- 		i += replace_push_mb(oldp + col + i) - 1;
- 	    else
- 		replace_push(oldp[col + i]);
- 	}
-     }
- 
-     newp = alloc_check((unsigned)(linelen + newlen - oldlen));
-     if (newp == NULL)
- 	return;
- 
-     /* Copy bytes before the cursor. */
-     if (col > 0)
- 	mch_memmove(newp, oldp, (size_t)col);
- 
-     /* Copy bytes after the changed character(s). */
-     p = newp + col;
-     if (linelen > col + oldlen)
- 	mch_memmove(p + newlen, oldp + col + oldlen,
- 					    (size_t)(linelen - col - oldlen));
- 
-     /* Insert or overwrite the new character. */
-     mch_memmove(p, buf, charlen);
-     i = charlen;
- 
-     /* Fill with spaces when necessary. */
-     while (i < newlen)
- 	p[i++] = ' ';
- 
-     // Replace the line in the buffer.
-     ml_replace(lnum, newp, FALSE);
- 
-     // mark the buffer as changed and prepare for displaying
-     inserted_bytes(lnum, col, newlen - oldlen);
- 
-     /*
-      * If we're in Insert or Replace mode and 'showmatch' is set, then briefly
-      * show the match for right parens and braces.
-      */
-     if (p_sm && (State & INSERT)
- 	    && msg_silent == 0
- #ifdef FEAT_INS_EXPAND
- 	    && !ins_compl_active()
- #endif
-        )
-     {
- 	if (has_mbyte)
- 	    showmatch(mb_ptr2char(buf));
- 	else
- 	    showmatch(c);
-     }
- 
- #ifdef FEAT_RIGHTLEFT
-     if (!p_ri || (State & REPLACE_FLAG))
- #endif
-     {
- 	/* Normal insert: move cursor right */
- 	curwin->w_cursor.col += charlen;
-     }
-     /*
-      * TODO: should try to update w_row here, to avoid recomputing it later.
-      */
- }
- 
- /*
-  * Insert a string at the cursor position.
-  * Note: Does NOT handle Replace mode.
-  * Caller must have prepared for undo.
-  */
-     void
- ins_str(char_u *s)
- {
-     char_u	*oldp, *newp;
-     int		newlen = (int)STRLEN(s);
-     int		oldlen;
-     colnr_T	col;
-     linenr_T	lnum = curwin->w_cursor.lnum;
- 
-     if (virtual_active() && curwin->w_cursor.coladd > 0)
- 	coladvance_force(getviscol());
- 
-     col = curwin->w_cursor.col;
-     oldp = ml_get(lnum);
-     oldlen = (int)STRLEN(oldp);
- 
-     newp = alloc_check((unsigned)(oldlen + newlen + 1));
-     if (newp == NULL)
- 	return;
-     if (col > 0)
- 	mch_memmove(newp, oldp, (size_t)col);
-     mch_memmove(newp + col, s, (size_t)newlen);
-     mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
-     ml_replace(lnum, newp, FALSE);
-     inserted_bytes(lnum, col, newlen);
-     curwin->w_cursor.col += newlen;
- }
- 
- /*
-  * Delete one character under the cursor.
-  * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
-  * Caller must have prepared for undo.
-  *
-  * return FAIL for failure, OK otherwise
-  */
-     int
- del_char(int fixpos)
- {
-     if (has_mbyte)
-     {
- 	/* Make sure the cursor is at the start of a character. */
- 	mb_adjust_cursor();
- 	if (*ml_get_cursor() == NUL)
- 	    return FAIL;
- 	return del_chars(1L, fixpos);
-     }
-     return del_bytes(1L, fixpos, TRUE);
- }
- 
- /*
-  * Like del_bytes(), but delete characters instead of bytes.
-  */
-     int
- del_chars(long count, int fixpos)
- {
-     long	bytes = 0;
-     long	i;
-     char_u	*p;
-     int		l;
- 
-     p = ml_get_cursor();
-     for (i = 0; i < count && *p != NUL; ++i)
-     {
- 	l = (*mb_ptr2len)(p);
- 	bytes += l;
- 	p += l;
-     }
-     return del_bytes(bytes, fixpos, TRUE);
- }
- 
- /*
-  * Delete "count" bytes under the cursor.
-  * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
-  * Caller must have prepared for undo.
-  *
-  * Return FAIL for failure, OK otherwise.
-  */
-     int
- del_bytes(
-     long	count,
-     int		fixpos_arg,
-     int		use_delcombine UNUSED)	    /* 'delcombine' option applies */
- {
-     char_u	*oldp, *newp;
-     colnr_T	oldlen;
-     colnr_T	newlen;
-     linenr_T	lnum = curwin->w_cursor.lnum;
-     colnr_T	col = curwin->w_cursor.col;
-     int		alloc_newp;
-     long	movelen;
-     int		fixpos = fixpos_arg;
- 
-     oldp = ml_get(lnum);
-     oldlen = (int)STRLEN(oldp);
- 
-     /* Can't do anything when the cursor is on the NUL after the line. */
-     if (col >= oldlen)
- 	return FAIL;
- 
-     /* If "count" is zero there is nothing to do. */
-     if (count == 0)
- 	return OK;
- 
-     /* If "count" is negative the caller must be doing something wrong. */
-     if (count < 1)
-     {
- 	siemsg("E950: Invalid count for del_bytes(): %ld", count);
- 	return FAIL;
-     }
- 
-     /* If 'delcombine' is set and deleting (less than) one character, only
-      * delete the last combining character. */
-     if (p_deco && use_delcombine && enc_utf8
- 					 && utfc_ptr2len(oldp + col) >= count)
-     {
- 	int	cc[MAX_MCO];
- 	int	n;
- 
- 	(void)utfc_ptr2char(oldp + col, cc);
- 	if (cc[0] != NUL)
- 	{
- 	    /* Find the last composing char, there can be several. */
- 	    n = col;
- 	    do
- 	    {
- 		col = n;
- 		count = utf_ptr2len(oldp + n);
- 		n += count;
- 	    } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
- 	    fixpos = 0;
- 	}
-     }
- 
-     /*
-      * When count is too big, reduce it.
-      */
-     movelen = (long)oldlen - (long)col - count + 1; /* includes trailing NUL */
-     if (movelen <= 1)
-     {
- 	/*
- 	 * If we just took off the last character of a non-blank line, and
- 	 * fixpos is TRUE, we don't want to end up positioned at the NUL,
- 	 * unless "restart_edit" is set or 'virtualedit' contains "onemore".
- 	 */
- 	if (col > 0 && fixpos && restart_edit == 0
- 					      && (ve_flags & VE_ONEMORE) == 0)
- 	{
- 	    --curwin->w_cursor.col;
- 	    curwin->w_cursor.coladd = 0;
- 	    if (has_mbyte)
- 		curwin->w_cursor.col -=
- 			    (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
- 	}
- 	count = oldlen - col;
- 	movelen = 1;
-     }
-     newlen = oldlen - count;
- 
-     /*
-      * If the old line has been allocated the deletion can be done in the
-      * existing line. Otherwise a new line has to be allocated
-      * Can't do this when using Netbeans, because we would need to invoke
-      * netbeans_removed(), which deallocates the line.  Let ml_replace() take
-      * care of notifying Netbeans.
-      */
- #ifdef FEAT_NETBEANS_INTG
-     if (netbeans_active())
- 	alloc_newp = TRUE;
-     else
- #endif
- 	alloc_newp = !ml_line_alloced();    // check if oldp was allocated
-     if (!alloc_newp)
- 	newp = oldp;			    // use same allocated memory
-     else
-     {					    // need to allocate a new line
- 	newp = alloc((unsigned)(newlen + 1));
- 	if (newp == NULL)
- 	    return FAIL;
- 	mch_memmove(newp, oldp, (size_t)col);
-     }
-     mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
-     if (alloc_newp)
- 	ml_replace(lnum, newp, FALSE);
- #ifdef FEAT_TEXT_PROP
-     else
-     {
- 	// Also move any following text properties.
- 	if (oldlen + 1 < curbuf->b_ml.ml_line_len)
- 	    mch_memmove(newp + newlen + 1, oldp + oldlen + 1,
- 			       (size_t)curbuf->b_ml.ml_line_len - oldlen - 1);
- 	curbuf->b_ml.ml_line_len -= count;
-     }
- #endif
- 
-     // mark the buffer as changed and prepare for displaying
-     inserted_bytes(lnum, curwin->w_cursor.col, -count);
- 
-     return OK;
- }
- 
- /*
-  * Delete from cursor to end of line.
-  * Caller must have prepared for undo.
-  *
-  * return FAIL for failure, OK otherwise
-  */
-     int
- truncate_line(
-     int		fixpos)	    /* if TRUE fix the cursor position when done */
- {
-     char_u	*newp;
-     linenr_T	lnum = curwin->w_cursor.lnum;
-     colnr_T	col = curwin->w_cursor.col;
- 
-     if (col == 0)
- 	newp = vim_strsave((char_u *)"");
-     else
- 	newp = vim_strnsave(ml_get(lnum), col);
- 
-     if (newp == NULL)
- 	return FAIL;
- 
-     ml_replace(lnum, newp, FALSE);
- 
-     /* mark the buffer as changed and prepare for displaying */
-     changed_bytes(lnum, curwin->w_cursor.col);
- 
-     /*
-      * If "fixpos" is TRUE we don't want to end up positioned at the NUL.
-      */
-     if (fixpos && curwin->w_cursor.col > 0)
- 	--curwin->w_cursor.col;
- 
-     return OK;
- }
- 
- /*
-  * Delete "nlines" lines at the cursor.
-  * Saves the lines for undo first if "undo" is TRUE.
-  */
-     void
- del_lines(
-     long	nlines,		/* number of lines to delete */
-     int		undo)		/* if TRUE, prepare for undo */
- {
-     long	n;
-     linenr_T	first = curwin->w_cursor.lnum;
- 
-     if (nlines <= 0)
- 	return;
- 
-     /* save the deleted lines for undo */
-     if (undo && u_savedel(first, nlines) == FAIL)
- 	return;
- 
-     for (n = 0; n < nlines; )
-     {
- 	if (curbuf->b_ml.ml_flags & ML_EMPTY)	    /* nothing to delete */
- 	    break;
- 
- 	ml_delete(first, TRUE);
- 	++n;
- 
- 	/* If we delete the last line in the file, stop */
- 	if (first > curbuf->b_ml.ml_line_count)
- 	    break;
-     }
- 
-     /* Correct the cursor position before calling deleted_lines_mark(), it may
-      * trigger a callback to display the cursor. */
-     curwin->w_cursor.col = 0;
-     check_cursor_lnum();
- 
-     /* adjust marks, mark the buffer as changed and prepare for displaying */
-     deleted_lines_mark(first, n);
- }
- 
      int
  gchar_pos(pos_T *pos)
  {
--- 1043,1048 ----
***************
*** 2790,3309 ****
  }
  
  /*
-  * Call this function when something in the current buffer is changed.
-  *
-  * Most often called through changed_bytes() and changed_lines(), which also
-  * mark the area of the display to be redrawn.
-  *
-  * Careful: may trigger autocommands that reload the buffer.
-  */
-     void
- changed(void)
- {
- #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
-     if (p_imst == IM_ON_THE_SPOT)
-     {
- 	/* The text of the preediting area is inserted, but this doesn't
- 	 * mean a change of the buffer yet.  That is delayed until the
- 	 * text is committed. (this means preedit becomes empty) */
- 	if (im_is_preediting() && !xim_changed_while_preediting)
- 	    return;
- 	xim_changed_while_preediting = FALSE;
-     }
- #endif
- 
-     if (!curbuf->b_changed)
-     {
- 	int	save_msg_scroll = msg_scroll;
- 
- 	/* Give a warning about changing a read-only file.  This may also
- 	 * check-out the file, thus change "curbuf"! */
- 	change_warning(0);
- 
- 	/* Create a swap file if that is wanted.
- 	 * Don't do this for "nofile" and "nowrite" buffer types. */
- 	if (curbuf->b_may_swap
- #ifdef FEAT_QUICKFIX
- 		&& !bt_dontwrite(curbuf)
- #endif
- 		)
- 	{
- 	    int save_need_wait_return = need_wait_return;
- 
- 	    need_wait_return = FALSE;
- 	    ml_open_file(curbuf);
- 
- 	    /* The ml_open_file() can cause an ATTENTION message.
- 	     * Wait two seconds, to make sure the user reads this unexpected
- 	     * message.  Since we could be anywhere, call wait_return() now,
- 	     * and don't let the emsg() set msg_scroll. */
- 	    if (need_wait_return && emsg_silent == 0)
- 	    {
- 		out_flush();
- 		ui_delay(2000L, TRUE);
- 		wait_return(TRUE);
- 		msg_scroll = save_msg_scroll;
- 	    }
- 	    else
- 		need_wait_return = save_need_wait_return;
- 	}
- 	changed_int();
-     }
-     ++CHANGEDTICK(curbuf);
- 
- #ifdef FEAT_SEARCH_EXTRA
-     // If a pattern is highlighted, the position may now be invalid.
-     highlight_match = FALSE;
- #endif
- }
- 
- /*
-  * Internal part of changed(), no user interaction.
-  */
-     void
- changed_int(void)
- {
-     curbuf->b_changed = TRUE;
-     ml_setflags(curbuf);
-     check_status(curbuf);
-     redraw_tabline = TRUE;
- #ifdef FEAT_TITLE
-     need_maketitle = TRUE;	    /* set window title later */
- #endif
- }
- 
- static void changedOneline(buf_T *buf, linenr_T lnum);
- static void changed_lines_buf(buf_T *buf, linenr_T lnum, linenr_T lnume, long xtra);
- static void changed_common(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra);
- 
- /*
-  * Changed bytes within a single line for the current buffer.
-  * - marks the windows on this buffer to be redisplayed
-  * - marks the buffer changed by calling changed()
-  * - invalidates cached values
-  * Careful: may trigger autocommands that reload the buffer.
-  */
-     void
- changed_bytes(linenr_T lnum, colnr_T col)
- {
-     changedOneline(curbuf, lnum);
-     changed_common(lnum, col, lnum + 1, 0L);
- 
- #ifdef FEAT_DIFF
-     /* Diff highlighting in other diff windows may need to be updated too. */
-     if (curwin->w_p_diff)
-     {
- 	win_T	    *wp;
- 	linenr_T    wlnum;
- 
- 	FOR_ALL_WINDOWS(wp)
- 	    if (wp->w_p_diff && wp != curwin)
- 	    {
- 		redraw_win_later(wp, VALID);
- 		wlnum = diff_lnum_win(lnum, wp);
- 		if (wlnum > 0)
- 		    changedOneline(wp->w_buffer, wlnum);
- 	    }
-     }
- #endif
- }
- 
- /*
-  * Like changed_bytes() but also adjust text properties for "added" bytes.
-  * When "added" is negative text was deleted.
-  */
-     void
- inserted_bytes(linenr_T lnum, colnr_T col, int added UNUSED)
- {
-     changed_bytes(lnum, col);
- 
- #ifdef FEAT_TEXT_PROP
-     if (curbuf->b_has_textprop && added != 0)
- 	adjust_prop_columns(lnum, col, added);
- #endif
- }
- 
-     static void
- changedOneline(buf_T *buf, linenr_T lnum)
- {
-     if (buf->b_mod_set)
-     {
- 	/* find the maximum area that must be redisplayed */
- 	if (lnum < buf->b_mod_top)
- 	    buf->b_mod_top = lnum;
- 	else if (lnum >= buf->b_mod_bot)
- 	    buf->b_mod_bot = lnum + 1;
-     }
-     else
-     {
- 	/* set the area that must be redisplayed to one line */
- 	buf->b_mod_set = TRUE;
- 	buf->b_mod_top = lnum;
- 	buf->b_mod_bot = lnum + 1;
- 	buf->b_mod_xlines = 0;
-     }
- }
- 
- /*
-  * Appended "count" lines below line "lnum" in the current buffer.
-  * Must be called AFTER the change and after mark_adjust().
-  * Takes care of marking the buffer to be redrawn and sets the changed flag.
-  */
-     void
- appended_lines(linenr_T lnum, long count)
- {
-     changed_lines(lnum + 1, 0, lnum + 1, count);
- }
- 
- /*
-  * Like appended_lines(), but adjust marks first.
-  */
-     void
- appended_lines_mark(linenr_T lnum, long count)
- {
-     /* Skip mark_adjust when adding a line after the last one, there can't
-      * be marks there. But it's still needed in diff mode. */
-     if (lnum + count < curbuf->b_ml.ml_line_count
- #ifdef FEAT_DIFF
- 	    || curwin->w_p_diff
- #endif
- 	)
- 	mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
-     changed_lines(lnum + 1, 0, lnum + 1, count);
- }
- 
- /*
-  * Deleted "count" lines at line "lnum" in the current buffer.
-  * Must be called AFTER the change and after mark_adjust().
-  * Takes care of marking the buffer to be redrawn and sets the changed flag.
-  */
-     void
- deleted_lines(linenr_T lnum, long count)
- {
-     changed_lines(lnum, 0, lnum + count, -count);
- }
- 
- /*
-  * Like deleted_lines(), but adjust marks first.
-  * Make sure the cursor is on a valid line before calling, a GUI callback may
-  * be triggered to display the cursor.
-  */
-     void
- deleted_lines_mark(linenr_T lnum, long count)
- {
-     mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
-     changed_lines(lnum, 0, lnum + count, -count);
- }
- 
- /*
-  * Changed lines for the current buffer.
-  * Must be called AFTER the change and after mark_adjust().
-  * - mark the buffer changed by calling changed()
-  * - mark the windows on this buffer to be redisplayed
-  * - invalidate cached values
-  * "lnum" is the first line that needs displaying, "lnume" the first line
-  * below the changed lines (BEFORE the change).
-  * When only inserting lines, "lnum" and "lnume" are equal.
-  * Takes care of calling changed() and updating b_mod_*.
-  * Careful: may trigger autocommands that reload the buffer.
-  */
-     void
- changed_lines(
-     linenr_T	lnum,	    /* first line with change */
-     colnr_T	col,	    /* column in first line with change */
-     linenr_T	lnume,	    /* line below last changed line */
-     long	xtra)	    /* number of extra lines (negative when deleting) */
- {
-     changed_lines_buf(curbuf, lnum, lnume, xtra);
- 
- #ifdef FEAT_DIFF
-     if (xtra == 0 && curwin->w_p_diff && !diff_internal())
-     {
- 	/* When the number of lines doesn't change then mark_adjust() isn't
- 	 * called and other diff buffers still need to be marked for
- 	 * displaying. */
- 	win_T	    *wp;
- 	linenr_T    wlnum;
- 
- 	FOR_ALL_WINDOWS(wp)
- 	    if (wp->w_p_diff && wp != curwin)
- 	    {
- 		redraw_win_later(wp, VALID);
- 		wlnum = diff_lnum_win(lnum, wp);
- 		if (wlnum > 0)
- 		    changed_lines_buf(wp->w_buffer, wlnum,
- 						    lnume - lnum + wlnum, 0L);
- 	    }
-     }
- #endif
- 
-     changed_common(lnum, col, lnume, xtra);
- }
- 
-     static void
- changed_lines_buf(
-     buf_T	*buf,
-     linenr_T	lnum,	    /* first line with change */
-     linenr_T	lnume,	    /* line below last changed line */
-     long	xtra)	    /* number of extra lines (negative when deleting) */
- {
-     if (buf->b_mod_set)
-     {
- 	/* find the maximum area that must be redisplayed */
- 	if (lnum < buf->b_mod_top)
- 	    buf->b_mod_top = lnum;
- 	if (lnum < buf->b_mod_bot)
- 	{
- 	    /* adjust old bot position for xtra lines */
- 	    buf->b_mod_bot += xtra;
- 	    if (buf->b_mod_bot < lnum)
- 		buf->b_mod_bot = lnum;
- 	}
- 	if (lnume + xtra > buf->b_mod_bot)
- 	    buf->b_mod_bot = lnume + xtra;
- 	buf->b_mod_xlines += xtra;
-     }
-     else
-     {
- 	/* set the area that must be redisplayed */
- 	buf->b_mod_set = TRUE;
- 	buf->b_mod_top = lnum;
- 	buf->b_mod_bot = lnume + xtra;
- 	buf->b_mod_xlines = xtra;
-     }
- }
- 
- /*
-  * Common code for when a change is was made.
-  * See changed_lines() for the arguments.
-  * Careful: may trigger autocommands that reload the buffer.
-  */
-     static void
- changed_common(
-     linenr_T	lnum,
-     colnr_T	col,
-     linenr_T	lnume,
-     long	xtra)
- {
-     win_T	*wp;
-     tabpage_T	*tp;
-     int		i;
- #ifdef FEAT_JUMPLIST
-     int		cols;
-     pos_T	*p;
-     int		add;
- #endif
- 
-     /* mark the buffer as modified */
-     changed();
- 
- #ifdef FEAT_DIFF
-     if (curwin->w_p_diff && diff_internal())
- 	curtab->tp_diff_update = TRUE;
- #endif
- 
-     /* set the '. mark */
-     if (!cmdmod.keepjumps)
-     {
- 	curbuf->b_last_change.lnum = lnum;
- 	curbuf->b_last_change.col = col;
- 
- #ifdef FEAT_JUMPLIST
- 	/* Create a new entry if a new undo-able change was started or we
- 	 * don't have an entry yet. */
- 	if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
- 	{
- 	    if (curbuf->b_changelistlen == 0)
- 		add = TRUE;
- 	    else
- 	    {
- 		/* Don't create a new entry when the line number is the same
- 		 * as the last one and the column is not too far away.  Avoids
- 		 * creating many entries for typing "xxxxx". */
- 		p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
- 		if (p->lnum != lnum)
- 		    add = TRUE;
- 		else
- 		{
- 		    cols = comp_textwidth(FALSE);
- 		    if (cols == 0)
- 			cols = 79;
- 		    add = (p->col + cols < col || col + cols < p->col);
- 		}
- 	    }
- 	    if (add)
- 	    {
- 		/* This is the first of a new sequence of undo-able changes
- 		 * and it's at some distance of the last change.  Use a new
- 		 * position in the changelist. */
- 		curbuf->b_new_change = FALSE;
- 
- 		if (curbuf->b_changelistlen == JUMPLISTSIZE)
- 		{
- 		    /* changelist is full: remove oldest entry */
- 		    curbuf->b_changelistlen = JUMPLISTSIZE - 1;
- 		    mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
- 					  sizeof(pos_T) * (JUMPLISTSIZE - 1));
- 		    FOR_ALL_TAB_WINDOWS(tp, wp)
- 		    {
- 			/* Correct position in changelist for other windows on
- 			 * this buffer. */
- 			if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
- 			    --wp->w_changelistidx;
- 		    }
- 		}
- 		FOR_ALL_TAB_WINDOWS(tp, wp)
- 		{
- 		    /* For other windows, if the position in the changelist is
- 		     * at the end it stays at the end. */
- 		    if (wp->w_buffer == curbuf
- 			    && wp->w_changelistidx == curbuf->b_changelistlen)
- 			++wp->w_changelistidx;
- 		}
- 		++curbuf->b_changelistlen;
- 	    }
- 	}
- 	curbuf->b_changelist[curbuf->b_changelistlen - 1] =
- 							curbuf->b_last_change;
- 	/* The current window is always after the last change, so that "g,"
- 	 * takes you back to it. */
- 	curwin->w_changelistidx = curbuf->b_changelistlen;
- #endif
-     }
- 
-     FOR_ALL_TAB_WINDOWS(tp, wp)
-     {
- 	if (wp->w_buffer == curbuf)
- 	{
- 	    /* Mark this window to be redrawn later. */
- 	    if (wp->w_redr_type < VALID)
- 		wp->w_redr_type = VALID;
- 
- 	    /* Check if a change in the buffer has invalidated the cached
- 	     * values for the cursor. */
- #ifdef FEAT_FOLDING
- 	    /*
- 	     * Update the folds for this window.  Can't postpone this, because
- 	     * a following operator might work on the whole fold: ">>dd".
- 	     */
- 	    foldUpdate(wp, lnum, lnume + xtra - 1);
- 
- 	    /* The change may cause lines above or below the change to become
- 	     * included in a fold.  Set lnum/lnume to the first/last line that
- 	     * might be displayed differently.
- 	     * Set w_cline_folded here as an efficient way to update it when
- 	     * inserting lines just above a closed fold. */
- 	    i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
- 	    if (wp->w_cursor.lnum == lnum)
- 		wp->w_cline_folded = i;
- 	    i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
- 	    if (wp->w_cursor.lnum == lnume)
- 		wp->w_cline_folded = i;
- 
- 	    /* If the changed line is in a range of previously folded lines,
- 	     * compare with the first line in that range. */
- 	    if (wp->w_cursor.lnum <= lnum)
- 	    {
- 		i = find_wl_entry(wp, lnum);
- 		if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
- 		    changed_line_abv_curs_win(wp);
- 	    }
- #endif
- 
- 	    if (wp->w_cursor.lnum > lnum)
- 		changed_line_abv_curs_win(wp);
- 	    else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
- 		changed_cline_bef_curs_win(wp);
- 	    if (wp->w_botline >= lnum)
- 	    {
- 		/* Assume that botline doesn't change (inserted lines make
- 		 * other lines scroll down below botline). */
- 		approximate_botline_win(wp);
- 	    }
- 
- 	    /* Check if any w_lines[] entries have become invalid.
- 	     * For entries below the change: Correct the lnums for
- 	     * inserted/deleted lines.  Makes it possible to stop displaying
- 	     * after the change. */
- 	    for (i = 0; i < wp->w_lines_valid; ++i)
- 		if (wp->w_lines[i].wl_valid)
- 		{
- 		    if (wp->w_lines[i].wl_lnum >= lnum)
- 		    {
- 			if (wp->w_lines[i].wl_lnum < lnume)
- 			{
- 			    /* line included in change */
- 			    wp->w_lines[i].wl_valid = FALSE;
- 			}
- 			else if (xtra != 0)
- 			{
- 			    /* line below change */
- 			    wp->w_lines[i].wl_lnum += xtra;
- #ifdef FEAT_FOLDING
- 			    wp->w_lines[i].wl_lastlnum += xtra;
- #endif
- 			}
- 		    }
- #ifdef FEAT_FOLDING
- 		    else if (wp->w_lines[i].wl_lastlnum >= lnum)
- 		    {
- 			/* change somewhere inside this range of folded lines,
- 			 * may need to be redrawn */
- 			wp->w_lines[i].wl_valid = FALSE;
- 		    }
- #endif
- 		}
- 
- #ifdef FEAT_FOLDING
- 	    /* Take care of side effects for setting w_topline when folds have
- 	     * changed.  Esp. when the buffer was changed in another window. */
- 	    if (hasAnyFolding(wp))
- 		set_topline(wp, wp->w_topline);
- #endif
- 	    /* relative numbering may require updating more */
- 	    if (wp->w_p_rnu)
- 		redraw_win_later(wp, SOME_VALID);
- 	}
-     }
- 
-     /* Call update_screen() later, which checks out what needs to be redrawn,
-      * since it notices b_mod_set and then uses b_mod_*. */
-     if (must_redraw < VALID)
- 	must_redraw = VALID;
- 
-     /* when the cursor line is changed always trigger CursorMoved */
-     if (lnum <= curwin->w_cursor.lnum
- 		 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
- 	last_cursormoved.lnum = 0;
- }
- 
- /*
-  * unchanged() is called when the changed flag must be reset for buffer 'buf'
-  */
-     void
- unchanged(
-     buf_T	*buf,
-     int		ff)	/* also reset 'fileformat' */
- {
-     if (buf->b_changed || (ff && file_ff_differs(buf, FALSE)))
-     {
- 	buf->b_changed = 0;
- 	ml_setflags(buf);
- 	if (ff)
- 	    save_file_ff(buf);
- 	check_status(buf);
- 	redraw_tabline = TRUE;
- #ifdef FEAT_TITLE
- 	need_maketitle = TRUE;	    /* set window title later */
- #endif
-     }
-     ++CHANGEDTICK(buf);
- #ifdef FEAT_NETBEANS_INTG
-     netbeans_unmodified(buf);
- #endif
- }
- 
- /*
   * check_status: called when the status bars for the buffer 'buf'
   *		 need to be updated
   */
--- 1110,1115 ----
***************
*** 3322,3382 ****
  }
  
  /*
-  * If the file is readonly, give a warning message with the first change.
-  * Don't do this for autocommands.
-  * Don't use emsg(), because it flushes the macro buffer.
-  * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
-  * will be TRUE.
-  * Careful: may trigger autocommands that reload the buffer.
-  */
-     void
- change_warning(
-     int	    col)		/* column for message; non-zero when in insert
- 				   mode and 'showmode' is on */
- {
-     static char *w_readonly = N_("W10: Warning: Changing a readonly file");
- 
-     if (curbuf->b_did_warn == FALSE
- 	    && curbufIsChanged() == 0
- 	    && !autocmd_busy
- 	    && curbuf->b_p_ro)
-     {
- 	++curbuf_lock;
- 	apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
- 	--curbuf_lock;
- 	if (!curbuf->b_p_ro)
- 	    return;
- 	/*
- 	 * Do what msg() does, but with a column offset if the warning should
- 	 * be after the mode message.
- 	 */
- 	msg_start();
- 	if (msg_row == Rows - 1)
- 	    msg_col = col;
- 	msg_source(HL_ATTR(HLF_W));
- 	msg_puts_attr(_(w_readonly), HL_ATTR(HLF_W) | MSG_HIST);
- #ifdef FEAT_EVAL
- 	set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
- #endif
- 	msg_clr_eos();
- 	(void)msg_end();
- 	if (msg_silent == 0 && !silent_mode
- #ifdef FEAT_EVAL
- 		&& time_for_testing != 1
- #endif
- 		)
- 	{
- 	    out_flush();
- 	    ui_delay(1000L, TRUE); /* give the user time to think about it */
- 	}
- 	curbuf->b_did_warn = TRUE;
- 	redraw_cmdline = FALSE;	/* don't redraw and erase the message */
- 	if (msg_row < Rows - 1)
- 	    showmode();
-     }
- }
- 
- /*
   * Ask for a reply from the user, a 'y' or a 'n'.
   * No other characters are accepted, the message is repeated until a valid
   * reply is entered or CTRL-C is hit.
--- 1128,1133 ----
*** ../vim-8.1.1317/src/proto/misc1.pro	2019-02-13 22:45:21.512636158 +0100
--- src/proto/misc1.pro	2019-05-11 16:56:15.916698940 +0200
***************
*** 7,13 ****
  int set_indent(int size, int flags);
  int get_number_indent(linenr_T lnum);
  int get_breakindent_win(win_T *wp, char_u *line);
- int open_line(int dir, int flags, int second_line_indent);
  int get_leader_len(char_u *line, char_u **flags, int backward, int include_space);
  int get_last_leader_offset(char_u *line, char_u **flags);
  int plines(linenr_T lnum);
--- 7,12 ----
***************
*** 17,49 ****
  int plines_win_nofold(win_T *wp, linenr_T lnum);
  int plines_win_col(win_T *wp, linenr_T lnum, long column);
  int plines_m_win(win_T *wp, linenr_T first, linenr_T last);
- void ins_bytes(char_u *p);
- void ins_bytes_len(char_u *p, int len);
- void ins_char(int c);
- void ins_char_bytes(char_u *buf, int charlen);
- void ins_str(char_u *s);
- int del_char(int fixpos);
- int del_chars(long count, int fixpos);
- int del_bytes(long count, int fixpos_arg, int use_delcombine);
- int truncate_line(int fixpos);
- void del_lines(long nlines, int undo);
  int gchar_pos(pos_T *pos);
  int gchar_cursor(void);
  void pchar_cursor(int c);
  int inindent(int extra);
  char_u *skip_to_option_part(char_u *p);
- void changed(void);
- void changed_int(void);
- void changed_bytes(linenr_T lnum, colnr_T col);
- void inserted_bytes(linenr_T lnum, colnr_T col, int added);
- void appended_lines(linenr_T lnum, long count);
- void appended_lines_mark(linenr_T lnum, long count);
- void deleted_lines(linenr_T lnum, long count);
- void deleted_lines_mark(linenr_T lnum, long count);
- void changed_lines(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra);
- void unchanged(buf_T *buf, int ff);
  void check_status(buf_T *buf);
- void change_warning(int col);
  int ask_yesno(char_u *str, int direct);
  int is_mouse_key(int c);
  int get_keystroke(void);
--- 16,27 ----
*** ../vim-8.1.1317/src/change.c	2019-05-11 17:02:59.034341075 +0200
--- src/change.c	2019-05-11 16:57:38.064209409 +0200
***************
*** 0 ****
--- 1,2165 ----
+ /* vi:set ts=8 sts=4 sw=4 noet:
+  *
+  * VIM - Vi IMproved	by Bram Moolenaar
+  *
+  * Do ":help uganda"  in Vim to read copying and usage conditions.
+  * Do ":help credits" in Vim to see a list of people who contributed.
+  * See README.txt for an overview of the Vim source code.
+  */
+ 
+ /*
+  * change.c: functions related to changing text
+  */
+ 
+ #include "vim.h"
+ 
+ /*
+  * If the file is readonly, give a warning message with the first change.
+  * Don't do this for autocommands.
+  * Doesn't use emsg(), because it flushes the macro buffer.
+  * If we have undone all changes b_changed will be FALSE, but "b_did_warn"
+  * will be TRUE.
+  * "col" is the column for the message; non-zero when in insert mode and
+  * 'showmode' is on.
+  * Careful: may trigger autocommands that reload the buffer.
+  */
+     void
+ change_warning(int col)
+ {
+     static char *w_readonly = N_("W10: Warning: Changing a readonly file");
+ 
+     if (curbuf->b_did_warn == FALSE
+ 	    && curbufIsChanged() == 0
+ 	    && !autocmd_busy
+ 	    && curbuf->b_p_ro)
+     {
+ 	++curbuf_lock;
+ 	apply_autocmds(EVENT_FILECHANGEDRO, NULL, NULL, FALSE, curbuf);
+ 	--curbuf_lock;
+ 	if (!curbuf->b_p_ro)
+ 	    return;
+ 
+ 	// Do what msg() does, but with a column offset if the warning should
+ 	// be after the mode message.
+ 	msg_start();
+ 	if (msg_row == Rows - 1)
+ 	    msg_col = col;
+ 	msg_source(HL_ATTR(HLF_W));
+ 	msg_puts_attr(_(w_readonly), HL_ATTR(HLF_W) | MSG_HIST);
+ #ifdef FEAT_EVAL
+ 	set_vim_var_string(VV_WARNINGMSG, (char_u *)_(w_readonly), -1);
+ #endif
+ 	msg_clr_eos();
+ 	(void)msg_end();
+ 	if (msg_silent == 0 && !silent_mode
+ #ifdef FEAT_EVAL
+ 		&& time_for_testing != 1
+ #endif
+ 		)
+ 	{
+ 	    out_flush();
+ 	    ui_delay(1000L, TRUE); // give the user time to think about it
+ 	}
+ 	curbuf->b_did_warn = TRUE;
+ 	redraw_cmdline = FALSE;	// don't redraw and erase the message
+ 	if (msg_row < Rows - 1)
+ 	    showmode();
+     }
+ }
+ 
+ /*
+  * Call this function when something in the current buffer is changed.
+  *
+  * Most often called through changed_bytes() and changed_lines(), which also
+  * mark the area of the display to be redrawn.
+  *
+  * Careful: may trigger autocommands that reload the buffer.
+  */
+     void
+ changed(void)
+ {
+ #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
+     if (p_imst == IM_ON_THE_SPOT)
+     {
+ 	// The text of the preediting area is inserted, but this doesn't
+ 	// mean a change of the buffer yet.  That is delayed until the
+ 	// text is committed. (this means preedit becomes empty)
+ 	if (im_is_preediting() && !xim_changed_while_preediting)
+ 	    return;
+ 	xim_changed_while_preediting = FALSE;
+     }
+ #endif
+ 
+     if (!curbuf->b_changed)
+     {
+ 	int	save_msg_scroll = msg_scroll;
+ 
+ 	// Give a warning about changing a read-only file.  This may also
+ 	// check-out the file, thus change "curbuf"!
+ 	change_warning(0);
+ 
+ 	// Create a swap file if that is wanted.
+ 	// Don't do this for "nofile" and "nowrite" buffer types.
+ 	if (curbuf->b_may_swap
+ #ifdef FEAT_QUICKFIX
+ 		&& !bt_dontwrite(curbuf)
+ #endif
+ 		)
+ 	{
+ 	    int save_need_wait_return = need_wait_return;
+ 
+ 	    need_wait_return = FALSE;
+ 	    ml_open_file(curbuf);
+ 
+ 	    // The ml_open_file() can cause an ATTENTION message.
+ 	    // Wait two seconds, to make sure the user reads this unexpected
+ 	    // message.  Since we could be anywhere, call wait_return() now,
+ 	    // and don't let the emsg() set msg_scroll.
+ 	    if (need_wait_return && emsg_silent == 0)
+ 	    {
+ 		out_flush();
+ 		ui_delay(2000L, TRUE);
+ 		wait_return(TRUE);
+ 		msg_scroll = save_msg_scroll;
+ 	    }
+ 	    else
+ 		need_wait_return = save_need_wait_return;
+ 	}
+ 	changed_internal();
+     }
+     ++CHANGEDTICK(curbuf);
+ 
+ #ifdef FEAT_SEARCH_EXTRA
+     // If a pattern is highlighted, the position may now be invalid.
+     highlight_match = FALSE;
+ #endif
+ }
+ 
+ /*
+  * Internal part of changed(), no user interaction.
+  * Also used for recovery.
+  */
+     void
+ changed_internal(void)
+ {
+     curbuf->b_changed = TRUE;
+     ml_setflags(curbuf);
+     check_status(curbuf);
+     redraw_tabline = TRUE;
+ #ifdef FEAT_TITLE
+     need_maketitle = TRUE;	    // set window title later
+ #endif
+ }
+ 
+ /*
+  * Common code for when a change was made.
+  * See changed_lines() for the arguments.
+  * Careful: may trigger autocommands that reload the buffer.
+  */
+     static void
+ changed_common(
+     linenr_T	lnum,
+     colnr_T	col,
+     linenr_T	lnume,
+     long	xtra)
+ {
+     win_T	*wp;
+     tabpage_T	*tp;
+     int		i;
+ #ifdef FEAT_JUMPLIST
+     int		cols;
+     pos_T	*p;
+     int		add;
+ #endif
+ 
+     // mark the buffer as modified
+     changed();
+ 
+ #ifdef FEAT_DIFF
+     if (curwin->w_p_diff && diff_internal())
+ 	curtab->tp_diff_update = TRUE;
+ #endif
+ 
+     // set the '. mark
+     if (!cmdmod.keepjumps)
+     {
+ 	curbuf->b_last_change.lnum = lnum;
+ 	curbuf->b_last_change.col = col;
+ 
+ #ifdef FEAT_JUMPLIST
+ 	// Create a new entry if a new undo-able change was started or we
+ 	// don't have an entry yet.
+ 	if (curbuf->b_new_change || curbuf->b_changelistlen == 0)
+ 	{
+ 	    if (curbuf->b_changelistlen == 0)
+ 		add = TRUE;
+ 	    else
+ 	    {
+ 		// Don't create a new entry when the line number is the same
+ 		// as the last one and the column is not too far away.  Avoids
+ 		// creating many entries for typing "xxxxx".
+ 		p = &curbuf->b_changelist[curbuf->b_changelistlen - 1];
+ 		if (p->lnum != lnum)
+ 		    add = TRUE;
+ 		else
+ 		{
+ 		    cols = comp_textwidth(FALSE);
+ 		    if (cols == 0)
+ 			cols = 79;
+ 		    add = (p->col + cols < col || col + cols < p->col);
+ 		}
+ 	    }
+ 	    if (add)
+ 	    {
+ 		// This is the first of a new sequence of undo-able changes
+ 		// and it's at some distance of the last change.  Use a new
+ 		// position in the changelist.
+ 		curbuf->b_new_change = FALSE;
+ 
+ 		if (curbuf->b_changelistlen == JUMPLISTSIZE)
+ 		{
+ 		    // changelist is full: remove oldest entry
+ 		    curbuf->b_changelistlen = JUMPLISTSIZE - 1;
+ 		    mch_memmove(curbuf->b_changelist, curbuf->b_changelist + 1,
+ 					  sizeof(pos_T) * (JUMPLISTSIZE - 1));
+ 		    FOR_ALL_TAB_WINDOWS(tp, wp)
+ 		    {
+ 			// Correct position in changelist for other windows on
+ 			// this buffer.
+ 			if (wp->w_buffer == curbuf && wp->w_changelistidx > 0)
+ 			    --wp->w_changelistidx;
+ 		    }
+ 		}
+ 		FOR_ALL_TAB_WINDOWS(tp, wp)
+ 		{
+ 		    // For other windows, if the position in the changelist is
+ 		    // at the end it stays at the end.
+ 		    if (wp->w_buffer == curbuf
+ 			    && wp->w_changelistidx == curbuf->b_changelistlen)
+ 			++wp->w_changelistidx;
+ 		}
+ 		++curbuf->b_changelistlen;
+ 	    }
+ 	}
+ 	curbuf->b_changelist[curbuf->b_changelistlen - 1] =
+ 							curbuf->b_last_change;
+ 	// The current window is always after the last change, so that "g,"
+ 	// takes you back to it.
+ 	curwin->w_changelistidx = curbuf->b_changelistlen;
+ #endif
+     }
+ 
+     FOR_ALL_TAB_WINDOWS(tp, wp)
+     {
+ 	if (wp->w_buffer == curbuf)
+ 	{
+ 	    // Mark this window to be redrawn later.
+ 	    if (wp->w_redr_type < VALID)
+ 		wp->w_redr_type = VALID;
+ 
+ 	    // Check if a change in the buffer has invalidated the cached
+ 	    // values for the cursor.
+ #ifdef FEAT_FOLDING
+ 	    // Update the folds for this window.  Can't postpone this, because
+ 	    // a following operator might work on the whole fold: ">>dd".
+ 	    foldUpdate(wp, lnum, lnume + xtra - 1);
+ 
+ 	    // The change may cause lines above or below the change to become
+ 	    // included in a fold.  Set lnum/lnume to the first/last line that
+ 	    // might be displayed differently.
+ 	    // Set w_cline_folded here as an efficient way to update it when
+ 	    // inserting lines just above a closed fold.
+ 	    i = hasFoldingWin(wp, lnum, &lnum, NULL, FALSE, NULL);
+ 	    if (wp->w_cursor.lnum == lnum)
+ 		wp->w_cline_folded = i;
+ 	    i = hasFoldingWin(wp, lnume, NULL, &lnume, FALSE, NULL);
+ 	    if (wp->w_cursor.lnum == lnume)
+ 		wp->w_cline_folded = i;
+ 
+ 	    // If the changed line is in a range of previously folded lines,
+ 	    // compare with the first line in that range.
+ 	    if (wp->w_cursor.lnum <= lnum)
+ 	    {
+ 		i = find_wl_entry(wp, lnum);
+ 		if (i >= 0 && wp->w_cursor.lnum > wp->w_lines[i].wl_lnum)
+ 		    changed_line_abv_curs_win(wp);
+ 	    }
+ #endif
+ 
+ 	    if (wp->w_cursor.lnum > lnum)
+ 		changed_line_abv_curs_win(wp);
+ 	    else if (wp->w_cursor.lnum == lnum && wp->w_cursor.col >= col)
+ 		changed_cline_bef_curs_win(wp);
+ 	    if (wp->w_botline >= lnum)
+ 	    {
+ 		// Assume that botline doesn't change (inserted lines make
+ 		// other lines scroll down below botline).
+ 		approximate_botline_win(wp);
+ 	    }
+ 
+ 	    // Check if any w_lines[] entries have become invalid.
+ 	    // For entries below the change: Correct the lnums for
+ 	    // inserted/deleted lines.  Makes it possible to stop displaying
+ 	    // after the change.
+ 	    for (i = 0; i < wp->w_lines_valid; ++i)
+ 		if (wp->w_lines[i].wl_valid)
+ 		{
+ 		    if (wp->w_lines[i].wl_lnum >= lnum)
+ 		    {
+ 			if (wp->w_lines[i].wl_lnum < lnume)
+ 			{
+ 			    // line included in change
+ 			    wp->w_lines[i].wl_valid = FALSE;
+ 			}
+ 			else if (xtra != 0)
+ 			{
+ 			    // line below change
+ 			    wp->w_lines[i].wl_lnum += xtra;
+ #ifdef FEAT_FOLDING
+ 			    wp->w_lines[i].wl_lastlnum += xtra;
+ #endif
+ 			}
+ 		    }
+ #ifdef FEAT_FOLDING
+ 		    else if (wp->w_lines[i].wl_lastlnum >= lnum)
+ 		    {
+ 			// change somewhere inside this range of folded lines,
+ 			// may need to be redrawn
+ 			wp->w_lines[i].wl_valid = FALSE;
+ 		    }
+ #endif
+ 		}
+ 
+ #ifdef FEAT_FOLDING
+ 	    // Take care of side effects for setting w_topline when folds have
+ 	    // changed.  Esp. when the buffer was changed in another window.
+ 	    if (hasAnyFolding(wp))
+ 		set_topline(wp, wp->w_topline);
+ #endif
+ 	    // relative numbering may require updating more
+ 	    if (wp->w_p_rnu)
+ 		redraw_win_later(wp, SOME_VALID);
+ 	}
+     }
+ 
+     // Call update_screen() later, which checks out what needs to be redrawn,
+     // since it notices b_mod_set and then uses b_mod_*.
+     if (must_redraw < VALID)
+ 	must_redraw = VALID;
+ 
+     // when the cursor line is changed always trigger CursorMoved
+     if (lnum <= curwin->w_cursor.lnum
+ 		 && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
+ 	last_cursormoved.lnum = 0;
+ }
+ 
+     static void
+ changedOneline(buf_T *buf, linenr_T lnum)
+ {
+     if (buf->b_mod_set)
+     {
+ 	// find the maximum area that must be redisplayed
+ 	if (lnum < buf->b_mod_top)
+ 	    buf->b_mod_top = lnum;
+ 	else if (lnum >= buf->b_mod_bot)
+ 	    buf->b_mod_bot = lnum + 1;
+     }
+     else
+     {
+ 	// set the area that must be redisplayed to one line
+ 	buf->b_mod_set = TRUE;
+ 	buf->b_mod_top = lnum;
+ 	buf->b_mod_bot = lnum + 1;
+ 	buf->b_mod_xlines = 0;
+     }
+ }
+ 
+ /*
+  * Changed bytes within a single line for the current buffer.
+  * - marks the windows on this buffer to be redisplayed
+  * - marks the buffer changed by calling changed()
+  * - invalidates cached values
+  * Careful: may trigger autocommands that reload the buffer.
+  */
+     void
+ changed_bytes(linenr_T lnum, colnr_T col)
+ {
+     changedOneline(curbuf, lnum);
+     changed_common(lnum, col, lnum + 1, 0L);
+ 
+ #ifdef FEAT_DIFF
+     // Diff highlighting in other diff windows may need to be updated too.
+     if (curwin->w_p_diff)
+     {
+ 	win_T	    *wp;
+ 	linenr_T    wlnum;
+ 
+ 	FOR_ALL_WINDOWS(wp)
+ 	    if (wp->w_p_diff && wp != curwin)
+ 	    {
+ 		redraw_win_later(wp, VALID);
+ 		wlnum = diff_lnum_win(lnum, wp);
+ 		if (wlnum > 0)
+ 		    changedOneline(wp->w_buffer, wlnum);
+ 	    }
+     }
+ #endif
+ }
+ 
+ /*
+  * Like changed_bytes() but also adjust text properties for "added" bytes.
+  * When "added" is negative text was deleted.
+  */
+     void
+ inserted_bytes(linenr_T lnum, colnr_T col, int added UNUSED)
+ {
+     changed_bytes(lnum, col);
+ 
+ #ifdef FEAT_TEXT_PROP
+     if (curbuf->b_has_textprop && added != 0)
+ 	adjust_prop_columns(lnum, col, added);
+ #endif
+ }
+ 
+ /*
+  * Appended "count" lines below line "lnum" in the current buffer.
+  * Must be called AFTER the change and after mark_adjust().
+  * Takes care of marking the buffer to be redrawn and sets the changed flag.
+  */
+     void
+ appended_lines(linenr_T lnum, long count)
+ {
+     changed_lines(lnum + 1, 0, lnum + 1, count);
+ }
+ 
+ /*
+  * Like appended_lines(), but adjust marks first.
+  */
+     void
+ appended_lines_mark(linenr_T lnum, long count)
+ {
+     // Skip mark_adjust when adding a line after the last one, there can't
+     // be marks there. But it's still needed in diff mode.
+     if (lnum + count < curbuf->b_ml.ml_line_count
+ #ifdef FEAT_DIFF
+ 	    || curwin->w_p_diff
+ #endif
+ 	)
+ 	mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
+     changed_lines(lnum + 1, 0, lnum + 1, count);
+ }
+ 
+ /*
+  * Deleted "count" lines at line "lnum" in the current buffer.
+  * Must be called AFTER the change and after mark_adjust().
+  * Takes care of marking the buffer to be redrawn and sets the changed flag.
+  */
+     void
+ deleted_lines(linenr_T lnum, long count)
+ {
+     changed_lines(lnum, 0, lnum + count, -count);
+ }
+ 
+ /*
+  * Like deleted_lines(), but adjust marks first.
+  * Make sure the cursor is on a valid line before calling, a GUI callback may
+  * be triggered to display the cursor.
+  */
+     void
+ deleted_lines_mark(linenr_T lnum, long count)
+ {
+     mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count);
+     changed_lines(lnum, 0, lnum + count, -count);
+ }
+ 
+ /*
+  * Marks the area to be redrawn after a change.
+  */
+     static void
+ changed_lines_buf(
+     buf_T	*buf,
+     linenr_T	lnum,	    // first line with change
+     linenr_T	lnume,	    // line below last changed line
+     long	xtra)	    // number of extra lines (negative when deleting)
+ {
+     if (buf->b_mod_set)
+     {
+ 	// find the maximum area that must be redisplayed
+ 	if (lnum < buf->b_mod_top)
+ 	    buf->b_mod_top = lnum;
+ 	if (lnum < buf->b_mod_bot)
+ 	{
+ 	    // adjust old bot position for xtra lines
+ 	    buf->b_mod_bot += xtra;
+ 	    if (buf->b_mod_bot < lnum)
+ 		buf->b_mod_bot = lnum;
+ 	}
+ 	if (lnume + xtra > buf->b_mod_bot)
+ 	    buf->b_mod_bot = lnume + xtra;
+ 	buf->b_mod_xlines += xtra;
+     }
+     else
+     {
+ 	// set the area that must be redisplayed
+ 	buf->b_mod_set = TRUE;
+ 	buf->b_mod_top = lnum;
+ 	buf->b_mod_bot = lnume + xtra;
+ 	buf->b_mod_xlines = xtra;
+     }
+ }
+ 
+ /*
+  * Changed lines for the current buffer.
+  * Must be called AFTER the change and after mark_adjust().
+  * - mark the buffer changed by calling changed()
+  * - mark the windows on this buffer to be redisplayed
+  * - invalidate cached values
+  * "lnum" is the first line that needs displaying, "lnume" the first line
+  * below the changed lines (BEFORE the change).
+  * When only inserting lines, "lnum" and "lnume" are equal.
+  * Takes care of calling changed() and updating b_mod_*.
+  * Careful: may trigger autocommands that reload the buffer.
+  */
+     void
+ changed_lines(
+     linenr_T	lnum,	    // first line with change
+     colnr_T	col,	    // column in first line with change
+     linenr_T	lnume,	    // line below last changed line
+     long	xtra)	    // number of extra lines (negative when deleting)
+ {
+     changed_lines_buf(curbuf, lnum, lnume, xtra);
+ 
+ #ifdef FEAT_DIFF
+     if (xtra == 0 && curwin->w_p_diff && !diff_internal())
+     {
+ 	// When the number of lines doesn't change then mark_adjust() isn't
+ 	// called and other diff buffers still need to be marked for
+ 	// displaying.
+ 	win_T	    *wp;
+ 	linenr_T    wlnum;
+ 
+ 	FOR_ALL_WINDOWS(wp)
+ 	    if (wp->w_p_diff && wp != curwin)
+ 	    {
+ 		redraw_win_later(wp, VALID);
+ 		wlnum = diff_lnum_win(lnum, wp);
+ 		if (wlnum > 0)
+ 		    changed_lines_buf(wp->w_buffer, wlnum,
+ 						    lnume - lnum + wlnum, 0L);
+ 	    }
+     }
+ #endif
+ 
+     changed_common(lnum, col, lnume, xtra);
+ }
+ 
+ /*
+  * Called when the changed flag must be reset for buffer "buf".
+  * When "ff" is TRUE also reset 'fileformat'.
+  */
+     void
+ unchanged(buf_T *buf, int ff)
+ {
+     if (buf->b_changed || (ff && file_ff_differs(buf, FALSE)))
+     {
+ 	buf->b_changed = 0;
+ 	ml_setflags(buf);
+ 	if (ff)
+ 	    save_file_ff(buf);
+ 	check_status(buf);
+ 	redraw_tabline = TRUE;
+ #ifdef FEAT_TITLE
+ 	need_maketitle = TRUE;	    // set window title later
+ #endif
+     }
+     ++CHANGEDTICK(buf);
+ #ifdef FEAT_NETBEANS_INTG
+     netbeans_unmodified(buf);
+ #endif
+ }
+ 
+ /*
+  * Insert string "p" at the cursor position.  Stops at a NUL byte.
+  * Handles Replace mode and multi-byte characters.
+  */
+     void
+ ins_bytes(char_u *p)
+ {
+     ins_bytes_len(p, (int)STRLEN(p));
+ }
+ 
+ /*
+  * Insert string "p" with length "len" at the cursor position.
+  * Handles Replace mode and multi-byte characters.
+  */
+     void
+ ins_bytes_len(char_u *p, int len)
+ {
+     int		i;
+     int		n;
+ 
+     if (has_mbyte)
+ 	for (i = 0; i < len; i += n)
+ 	{
+ 	    if (enc_utf8)
+ 		// avoid reading past p[len]
+ 		n = utfc_ptr2len_len(p + i, len - i);
+ 	    else
+ 		n = (*mb_ptr2len)(p + i);
+ 	    ins_char_bytes(p + i, n);
+ 	}
+     else
+ 	for (i = 0; i < len; ++i)
+ 	    ins_char(p[i]);
+ }
+ 
+ /*
+  * Insert or replace a single character at the cursor position.
+  * When in REPLACE or VREPLACE mode, replace any existing character.
+  * Caller must have prepared for undo.
+  * For multi-byte characters we get the whole character, the caller must
+  * convert bytes to a character.
+  */
+     void
+ ins_char(int c)
+ {
+     char_u	buf[MB_MAXBYTES + 1];
+     int		n = (*mb_char2bytes)(c, buf);
+ 
+     // When "c" is 0x100, 0x200, etc. we don't want to insert a NUL byte.
+     // Happens for CTRL-Vu9900.
+     if (buf[0] == 0)
+ 	buf[0] = '\n';
+ 
+     ins_char_bytes(buf, n);
+ }
+ 
+     void
+ ins_char_bytes(char_u *buf, int charlen)
+ {
+     int		c = buf[0];
+     int		newlen;		// nr of bytes inserted
+     int		oldlen;		// nr of bytes deleted (0 when not replacing)
+     char_u	*p;
+     char_u	*newp;
+     char_u	*oldp;
+     int		linelen;	// length of old line including NUL
+     colnr_T	col;
+     linenr_T	lnum = curwin->w_cursor.lnum;
+     int		i;
+ 
+     // Break tabs if needed.
+     if (virtual_active() && curwin->w_cursor.coladd > 0)
+ 	coladvance_force(getviscol());
+ 
+     col = curwin->w_cursor.col;
+     oldp = ml_get(lnum);
+     linelen = (int)STRLEN(oldp) + 1;
+ 
+     // The lengths default to the values for when not replacing.
+     oldlen = 0;
+     newlen = charlen;
+ 
+     if (State & REPLACE_FLAG)
+     {
+ 	if (State & VREPLACE_FLAG)
+ 	{
+ 	    colnr_T	new_vcol = 0;   // init for GCC
+ 	    colnr_T	vcol;
+ 	    int		old_list;
+ 
+ 	    // Disable 'list' temporarily, unless 'cpo' contains the 'L' flag.
+ 	    // Returns the old value of list, so when finished,
+ 	    // curwin->w_p_list should be set back to this.
+ 	    old_list = curwin->w_p_list;
+ 	    if (old_list && vim_strchr(p_cpo, CPO_LISTWM) == NULL)
+ 		curwin->w_p_list = FALSE;
+ 
+ 	    // In virtual replace mode each character may replace one or more
+ 	    // characters (zero if it's a TAB).  Count the number of bytes to
+ 	    // be deleted to make room for the new character, counting screen
+ 	    // cells.  May result in adding spaces to fill a gap.
+ 	    getvcol(curwin, &curwin->w_cursor, NULL, &vcol, NULL);
+ 	    new_vcol = vcol + chartabsize(buf, vcol);
+ 	    while (oldp[col + oldlen] != NUL && vcol < new_vcol)
+ 	    {
+ 		vcol += chartabsize(oldp + col + oldlen, vcol);
+ 		// Don't need to remove a TAB that takes us to the right
+ 		// position.
+ 		if (vcol > new_vcol && oldp[col + oldlen] == TAB)
+ 		    break;
+ 		oldlen += (*mb_ptr2len)(oldp + col + oldlen);
+ 		// Deleted a bit too much, insert spaces.
+ 		if (vcol > new_vcol)
+ 		    newlen += vcol - new_vcol;
+ 	    }
+ 	    curwin->w_p_list = old_list;
+ 	}
+ 	else if (oldp[col] != NUL)
+ 	{
+ 	    // normal replace
+ 	    oldlen = (*mb_ptr2len)(oldp + col);
+ 	}
+ 
+ 
+ 	// Push the replaced bytes onto the replace stack, so that they can be
+ 	// put back when BS is used.  The bytes of a multi-byte character are
+ 	// done the other way around, so that the first byte is popped off
+ 	// first (it tells the byte length of the character).
+ 	replace_push(NUL);
+ 	for (i = 0; i < oldlen; ++i)
+ 	{
+ 	    if (has_mbyte)
+ 		i += replace_push_mb(oldp + col + i) - 1;
+ 	    else
+ 		replace_push(oldp[col + i]);
+ 	}
+     }
+ 
+     newp = alloc_check((unsigned)(linelen + newlen - oldlen));
+     if (newp == NULL)
+ 	return;
+ 
+     // Copy bytes before the cursor.
+     if (col > 0)
+ 	mch_memmove(newp, oldp, (size_t)col);
+ 
+     // Copy bytes after the changed character(s).
+     p = newp + col;
+     if (linelen > col + oldlen)
+ 	mch_memmove(p + newlen, oldp + col + oldlen,
+ 					    (size_t)(linelen - col - oldlen));
+ 
+     // Insert or overwrite the new character.
+     mch_memmove(p, buf, charlen);
+     i = charlen;
+ 
+     // Fill with spaces when necessary.
+     while (i < newlen)
+ 	p[i++] = ' ';
+ 
+     // Replace the line in the buffer.
+     ml_replace(lnum, newp, FALSE);
+ 
+     // mark the buffer as changed and prepare for displaying
+     inserted_bytes(lnum, col, newlen - oldlen);
+ 
+     // If we're in Insert or Replace mode and 'showmatch' is set, then briefly
+     // show the match for right parens and braces.
+     if (p_sm && (State & INSERT)
+ 	    && msg_silent == 0
+ #ifdef FEAT_INS_EXPAND
+ 	    && !ins_compl_active()
+ #endif
+        )
+     {
+ 	if (has_mbyte)
+ 	    showmatch(mb_ptr2char(buf));
+ 	else
+ 	    showmatch(c);
+     }
+ 
+ #ifdef FEAT_RIGHTLEFT
+     if (!p_ri || (State & REPLACE_FLAG))
+ #endif
+     {
+ 	// Normal insert: move cursor right
+ 	curwin->w_cursor.col += charlen;
+     }
+ 
+     // TODO: should try to update w_row here, to avoid recomputing it later.
+ }
+ 
+ /*
+  * Insert a string at the cursor position.
+  * Note: Does NOT handle Replace mode.
+  * Caller must have prepared for undo.
+  */
+     void
+ ins_str(char_u *s)
+ {
+     char_u	*oldp, *newp;
+     int		newlen = (int)STRLEN(s);
+     int		oldlen;
+     colnr_T	col;
+     linenr_T	lnum = curwin->w_cursor.lnum;
+ 
+     if (virtual_active() && curwin->w_cursor.coladd > 0)
+ 	coladvance_force(getviscol());
+ 
+     col = curwin->w_cursor.col;
+     oldp = ml_get(lnum);
+     oldlen = (int)STRLEN(oldp);
+ 
+     newp = alloc_check((unsigned)(oldlen + newlen + 1));
+     if (newp == NULL)
+ 	return;
+     if (col > 0)
+ 	mch_memmove(newp, oldp, (size_t)col);
+     mch_memmove(newp + col, s, (size_t)newlen);
+     mch_memmove(newp + col + newlen, oldp + col, (size_t)(oldlen - col + 1));
+     ml_replace(lnum, newp, FALSE);
+     inserted_bytes(lnum, col, newlen);
+     curwin->w_cursor.col += newlen;
+ }
+ 
+ /*
+  * Delete one character under the cursor.
+  * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
+  * Caller must have prepared for undo.
+  *
+  * return FAIL for failure, OK otherwise
+  */
+     int
+ del_char(int fixpos)
+ {
+     if (has_mbyte)
+     {
+ 	// Make sure the cursor is at the start of a character.
+ 	mb_adjust_cursor();
+ 	if (*ml_get_cursor() == NUL)
+ 	    return FAIL;
+ 	return del_chars(1L, fixpos);
+     }
+     return del_bytes(1L, fixpos, TRUE);
+ }
+ 
+ /*
+  * Like del_bytes(), but delete characters instead of bytes.
+  */
+     int
+ del_chars(long count, int fixpos)
+ {
+     long	bytes = 0;
+     long	i;
+     char_u	*p;
+     int		l;
+ 
+     p = ml_get_cursor();
+     for (i = 0; i < count && *p != NUL; ++i)
+     {
+ 	l = (*mb_ptr2len)(p);
+ 	bytes += l;
+ 	p += l;
+     }
+     return del_bytes(bytes, fixpos, TRUE);
+ }
+ 
+ /*
+  * Delete "count" bytes under the cursor.
+  * If "fixpos" is TRUE, don't leave the cursor on the NUL after the line.
+  * Caller must have prepared for undo.
+  *
+  * Return FAIL for failure, OK otherwise.
+  */
+     int
+ del_bytes(
+     long	count,
+     int		fixpos_arg,
+     int		use_delcombine UNUSED)	    // 'delcombine' option applies
+ {
+     char_u	*oldp, *newp;
+     colnr_T	oldlen;
+     colnr_T	newlen;
+     linenr_T	lnum = curwin->w_cursor.lnum;
+     colnr_T	col = curwin->w_cursor.col;
+     int		alloc_newp;
+     long	movelen;
+     int		fixpos = fixpos_arg;
+ 
+     oldp = ml_get(lnum);
+     oldlen = (int)STRLEN(oldp);
+ 
+     // Can't do anything when the cursor is on the NUL after the line.
+     if (col >= oldlen)
+ 	return FAIL;
+ 
+     // If "count" is zero there is nothing to do.
+     if (count == 0)
+ 	return OK;
+ 
+     // If "count" is negative the caller must be doing something wrong.
+     if (count < 1)
+     {
+ 	siemsg("E950: Invalid count for del_bytes(): %ld", count);
+ 	return FAIL;
+     }
+ 
+     // If 'delcombine' is set and deleting (less than) one character, only
+     // delete the last combining character.
+     if (p_deco && use_delcombine && enc_utf8
+ 					 && utfc_ptr2len(oldp + col) >= count)
+     {
+ 	int	cc[MAX_MCO];
+ 	int	n;
+ 
+ 	(void)utfc_ptr2char(oldp + col, cc);
+ 	if (cc[0] != NUL)
+ 	{
+ 	    // Find the last composing char, there can be several.
+ 	    n = col;
+ 	    do
+ 	    {
+ 		col = n;
+ 		count = utf_ptr2len(oldp + n);
+ 		n += count;
+ 	    } while (UTF_COMPOSINGLIKE(oldp + col, oldp + n));
+ 	    fixpos = 0;
+ 	}
+     }
+ 
+     // When count is too big, reduce it.
+     movelen = (long)oldlen - (long)col - count + 1; // includes trailing NUL
+     if (movelen <= 1)
+     {
+ 	// If we just took off the last character of a non-blank line, and
+ 	// fixpos is TRUE, we don't want to end up positioned at the NUL,
+ 	// unless "restart_edit" is set or 'virtualedit' contains "onemore".
+ 	if (col > 0 && fixpos && restart_edit == 0
+ 					      && (ve_flags & VE_ONEMORE) == 0)
+ 	{
+ 	    --curwin->w_cursor.col;
+ 	    curwin->w_cursor.coladd = 0;
+ 	    if (has_mbyte)
+ 		curwin->w_cursor.col -=
+ 			    (*mb_head_off)(oldp, oldp + curwin->w_cursor.col);
+ 	}
+ 	count = oldlen - col;
+ 	movelen = 1;
+     }
+     newlen = oldlen - count;
+ 
+     // If the old line has been allocated the deletion can be done in the
+     // existing line. Otherwise a new line has to be allocated
+     // Can't do this when using Netbeans, because we would need to invoke
+     // netbeans_removed(), which deallocates the line.  Let ml_replace() take
+     // care of notifying Netbeans.
+ #ifdef FEAT_NETBEANS_INTG
+     if (netbeans_active())
+ 	alloc_newp = TRUE;
+     else
+ #endif
+ 	alloc_newp = !ml_line_alloced();    // check if oldp was allocated
+     if (!alloc_newp)
+ 	newp = oldp;			    // use same allocated memory
+     else
+     {					    // need to allocate a new line
+ 	newp = alloc((unsigned)(newlen + 1));
+ 	if (newp == NULL)
+ 	    return FAIL;
+ 	mch_memmove(newp, oldp, (size_t)col);
+     }
+     mch_memmove(newp + col, oldp + col + count, (size_t)movelen);
+     if (alloc_newp)
+ 	ml_replace(lnum, newp, FALSE);
+ #ifdef FEAT_TEXT_PROP
+     else
+     {
+ 	// Also move any following text properties.
+ 	if (oldlen + 1 < curbuf->b_ml.ml_line_len)
+ 	    mch_memmove(newp + newlen + 1, oldp + oldlen + 1,
+ 			       (size_t)curbuf->b_ml.ml_line_len - oldlen - 1);
+ 	curbuf->b_ml.ml_line_len -= count;
+     }
+ #endif
+ 
+     // mark the buffer as changed and prepare for displaying
+     inserted_bytes(lnum, curwin->w_cursor.col, -count);
+ 
+     return OK;
+ }
+ 
+ /*
+  * Copy the indent from ptr to the current line (and fill to size)
+  * Leaves the cursor on the first non-blank in the line.
+  * Returns TRUE if the line was changed.
+  */
+     static int
+ copy_indent(int size, char_u *src)
+ {
+     char_u	*p = NULL;
+     char_u	*line = NULL;
+     char_u	*s;
+     int		todo;
+     int		ind_len;
+     int		line_len = 0;
+     int		tab_pad;
+     int		ind_done;
+     int		round;
+ #ifdef FEAT_VARTABS
+     int		ind_col;
+ #endif
+ 
+     // Round 1: compute the number of characters needed for the indent
+     // Round 2: copy the characters.
+     for (round = 1; round <= 2; ++round)
+     {
+ 	todo = size;
+ 	ind_len = 0;
+ 	ind_done = 0;
+ #ifdef FEAT_VARTABS
+ 	ind_col = 0;
+ #endif
+ 	s = src;
+ 
+ 	// Count/copy the usable portion of the source line
+ 	while (todo > 0 && VIM_ISWHITE(*s))
+ 	{
+ 	    if (*s == TAB)
+ 	    {
+ #ifdef FEAT_VARTABS
+ 		tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ #else
+ 		tab_pad = (int)curbuf->b_p_ts
+ 					   - (ind_done % (int)curbuf->b_p_ts);
+ #endif
+ 		// Stop if this tab will overshoot the target
+ 		if (todo < tab_pad)
+ 		    break;
+ 		todo -= tab_pad;
+ 		ind_done += tab_pad;
+ #ifdef FEAT_VARTABS
+ 		ind_col += tab_pad;
+ #endif
+ 	    }
+ 	    else
+ 	    {
+ 		--todo;
+ 		++ind_done;
+ #ifdef FEAT_VARTABS
+ 		++ind_col;
+ #endif
+ 	    }
+ 	    ++ind_len;
+ 	    if (p != NULL)
+ 		*p++ = *s;
+ 	    ++s;
+ 	}
+ 
+ 	// Fill to next tabstop with a tab, if possible
+ #ifdef FEAT_VARTABS
+ 	tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ #else
+ 	tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts);
+ #endif
+ 	if (todo >= tab_pad && !curbuf->b_p_et)
+ 	{
+ 	    todo -= tab_pad;
+ 	    ++ind_len;
+ #ifdef FEAT_VARTABS
+ 	    ind_col += tab_pad;
+ #endif
+ 	    if (p != NULL)
+ 		*p++ = TAB;
+ 	}
+ 
+ 	// Add tabs required for indent
+ 	if (!curbuf->b_p_et)
+ 	{
+ #ifdef FEAT_VARTABS
+ 	    for (;;)
+ 	    {
+ 		tab_pad = tabstop_padding(ind_col, curbuf->b_p_ts,
+ 							curbuf->b_p_vts_array);
+ 		if (todo < tab_pad)
+ 		    break;
+ 		todo -= tab_pad;
+ 		++ind_len;
+ 		ind_col += tab_pad;
+ 		if (p != NULL)
+ 		    *p++ = TAB;
+ 	    }
+ #else
+ 	    while (todo >= (int)curbuf->b_p_ts)
+ 	    {
+ 		todo -= (int)curbuf->b_p_ts;
+ 		++ind_len;
+ 		if (p != NULL)
+ 		    *p++ = TAB;
+ 	    }
+ #endif
+ 	}
+ 
+ 	// Count/add spaces required for indent
+ 	while (todo > 0)
+ 	{
+ 	    --todo;
+ 	    ++ind_len;
+ 	    if (p != NULL)
+ 		*p++ = ' ';
+ 	}
+ 
+ 	if (p == NULL)
+ 	{
+ 	    // Allocate memory for the result: the copied indent, new indent
+ 	    // and the rest of the line.
+ 	    line_len = (int)STRLEN(ml_get_curline()) + 1;
+ 	    line = alloc(ind_len + line_len);
+ 	    if (line == NULL)
+ 		return FALSE;
+ 	    p = line;
+ 	}
+     }
+ 
+     // Append the original line
+     mch_memmove(p, ml_get_curline(), (size_t)line_len);
+ 
+     // Replace the line
+     ml_replace(curwin->w_cursor.lnum, line, FALSE);
+ 
+     // Put the cursor after the indent.
+     curwin->w_cursor.col = ind_len;
+     return TRUE;
+ }
+ 
+ /*
+  * open_line: Add a new line below or above the current line.
+  *
+  * For VREPLACE mode, we only add a new line when we get to the end of the
+  * file, otherwise we just start replacing the next line.
+  *
+  * Caller must take care of undo.  Since VREPLACE may affect any number of
+  * lines however, it may call u_save_cursor() again when starting to change a
+  * new line.
+  * "flags": OPENLINE_DELSPACES	delete spaces after cursor
+  *	    OPENLINE_DO_COM	format comments
+  *	    OPENLINE_KEEPTRAIL	keep trailing spaces
+  *	    OPENLINE_MARKFIX	adjust mark positions after the line break
+  *	    OPENLINE_COM_LIST	format comments with list or 2nd line indent
+  *
+  * "second_line_indent": indent for after ^^D in Insert mode or if flag
+  *			  OPENLINE_COM_LIST
+  *
+  * Return OK for success, FAIL for failure
+  */
+     int
+ open_line(
+     int		dir,		// FORWARD or BACKWARD
+     int		flags,
+     int		second_line_indent)
+ {
+     char_u	*saved_line;		// copy of the original line
+     char_u	*next_line = NULL;	// copy of the next line
+     char_u	*p_extra = NULL;	// what goes to next line
+     int		less_cols = 0;		// less columns for mark in new line
+     int		less_cols_off = 0;	// columns to skip for mark adjust
+     pos_T	old_cursor;		// old cursor position
+     int		newcol = 0;		// new cursor column
+     int		newindent = 0;		// auto-indent of the new line
+     int		n;
+     int		trunc_line = FALSE;	// truncate current line afterwards
+     int		retval = FAIL;		// return value
+ #ifdef FEAT_COMMENTS
+     int		extra_len = 0;		// length of p_extra string
+     int		lead_len;		// length of comment leader
+     char_u	*lead_flags;	// position in 'comments' for comment leader
+     char_u	*leader = NULL;		// copy of comment leader
+ #endif
+     char_u	*allocated = NULL;	// allocated memory
+     char_u	*p;
+     int		saved_char = NUL;	// init for GCC
+ #if defined(FEAT_SMARTINDENT) || defined(FEAT_COMMENTS)
+     pos_T	*pos;
+ #endif
+ #ifdef FEAT_SMARTINDENT
+     int		do_si = (!p_paste && curbuf->b_p_si
+ # ifdef FEAT_CINDENT
+ 					&& !curbuf->b_p_cin
+ # endif
+ # ifdef FEAT_EVAL
+ 					&& *curbuf->b_p_inde == NUL
+ # endif
+ 			);
+     int		no_si = FALSE;		// reset did_si afterwards
+     int		first_char = NUL;	// init for GCC
+ #endif
+ #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
+     int		vreplace_mode;
+ #endif
+     int		did_append;		// appended a new line
+     int		saved_pi = curbuf->b_p_pi; // copy of preserveindent setting
+ 
+     // make a copy of the current line so we can mess with it
+     saved_line = vim_strsave(ml_get_curline());
+     if (saved_line == NULL)	    /* out of memory! */
+ 	return FALSE;
+ 
+     if (State & VREPLACE_FLAG)
+     {
+ 	// With VREPLACE we make a copy of the next line, which we will be
+ 	// starting to replace.  First make the new line empty and let vim play
+ 	// with the indenting and comment leader to its heart's content.  Then
+ 	// we grab what it ended up putting on the new line, put back the
+ 	// original line, and call ins_char() to put each new character onto
+ 	// the line, replacing what was there before and pushing the right
+ 	// stuff onto the replace stack.  -- webb.
+ 	if (curwin->w_cursor.lnum < orig_line_count)
+ 	    next_line = vim_strsave(ml_get(curwin->w_cursor.lnum + 1));
+ 	else
+ 	    next_line = vim_strsave((char_u *)"");
+ 	if (next_line == NULL)	    // out of memory!
+ 	    goto theend;
+ 
+ 	// In VREPLACE mode, a NL replaces the rest of the line, and starts
+ 	// replacing the next line, so push all of the characters left on the
+ 	// line onto the replace stack.  We'll push any other characters that
+ 	// might be replaced at the start of the next line (due to autoindent
+ 	// etc) a bit later.
+ 	replace_push(NUL);  // Call twice because BS over NL expects it
+ 	replace_push(NUL);
+ 	p = saved_line + curwin->w_cursor.col;
+ 	while (*p != NUL)
+ 	{
+ 	    if (has_mbyte)
+ 		p += replace_push_mb(p);
+ 	    else
+ 		replace_push(*p++);
+ 	}
+ 	saved_line[curwin->w_cursor.col] = NUL;
+     }
+ 
+     if ((State & INSERT) && !(State & VREPLACE_FLAG))
+     {
+ 	p_extra = saved_line + curwin->w_cursor.col;
+ #ifdef FEAT_SMARTINDENT
+ 	if (do_si)		// need first char after new line break
+ 	{
+ 	    p = skipwhite(p_extra);
+ 	    first_char = *p;
+ 	}
+ #endif
+ #ifdef FEAT_COMMENTS
+ 	extra_len = (int)STRLEN(p_extra);
+ #endif
+ 	saved_char = *p_extra;
+ 	*p_extra = NUL;
+     }
+ 
+     u_clearline();		// cannot do "U" command when adding lines
+ #ifdef FEAT_SMARTINDENT
+     did_si = FALSE;
+ #endif
+     ai_col = 0;
+ 
+     // If we just did an auto-indent, then we didn't type anything on
+     // the prior line, and it should be truncated.  Do this even if 'ai' is not
+     // set because automatically inserting a comment leader also sets did_ai.
+     if (dir == FORWARD && did_ai)
+ 	trunc_line = TRUE;
+ 
+     // If 'autoindent' and/or 'smartindent' is set, try to figure out what
+     // indent to use for the new line.
+     if (curbuf->b_p_ai
+ #ifdef FEAT_SMARTINDENT
+ 			|| do_si
+ #endif
+ 					    )
+     {
+ 	// count white space on current line
+ #ifdef FEAT_VARTABS
+ 	newindent = get_indent_str_vtab(saved_line, curbuf->b_p_ts,
+ 						 curbuf->b_p_vts_array, FALSE);
+ #else
+ 	newindent = get_indent_str(saved_line, (int)curbuf->b_p_ts, FALSE);
+ #endif
+ 	if (newindent == 0 && !(flags & OPENLINE_COM_LIST))
+ 	    newindent = second_line_indent; // for ^^D command in insert mode
+ 
+ #ifdef FEAT_SMARTINDENT
+ 	// Do smart indenting.
+ 	// In insert/replace mode (only when dir == FORWARD)
+ 	// we may move some text to the next line. If it starts with '{'
+ 	// don't add an indent. Fixes inserting a NL before '{' in line
+ 	//	"if (condition) {"
+ 	if (!trunc_line && do_si && *saved_line != NUL
+ 				    && (p_extra == NULL || first_char != '{'))
+ 	{
+ 	    char_u  *ptr;
+ 	    char_u  last_char;
+ 
+ 	    old_cursor = curwin->w_cursor;
+ 	    ptr = saved_line;
+ # ifdef FEAT_COMMENTS
+ 	    if (flags & OPENLINE_DO_COM)
+ 		lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
+ 	    else
+ 		lead_len = 0;
+ # endif
+ 	    if (dir == FORWARD)
+ 	    {
+ 		// Skip preprocessor directives, unless they are
+ 		// recognised as comments.
+ 		if (
+ # ifdef FEAT_COMMENTS
+ 			lead_len == 0 &&
+ # endif
+ 			ptr[0] == '#')
+ 		{
+ 		    while (ptr[0] == '#' && curwin->w_cursor.lnum > 1)
+ 			ptr = ml_get(--curwin->w_cursor.lnum);
+ 		    newindent = get_indent();
+ 		}
+ # ifdef FEAT_COMMENTS
+ 		if (flags & OPENLINE_DO_COM)
+ 		    lead_len = get_leader_len(ptr, NULL, FALSE, TRUE);
+ 		else
+ 		    lead_len = 0;
+ 		if (lead_len > 0)
+ 		{
+ 		    // This case gets the following right:
+ 		    //	    /*
+ 		    //	     * A comment (read '\' as '/').
+ 		    //	     */
+ 		    // #define IN_THE_WAY
+ 		    //	    This should line up here;
+ 		    p = skipwhite(ptr);
+ 		    if (p[0] == '/' && p[1] == '*')
+ 			p++;
+ 		    if (p[0] == '*')
+ 		    {
+ 			for (p++; *p; p++)
+ 			{
+ 			    if (p[0] == '/' && p[-1] == '*')
+ 			    {
+ 				// End of C comment, indent should line up
+ 				// with the line containing the start of
+ 				// the comment
+ 				curwin->w_cursor.col = (colnr_T)(p - ptr);
+ 				if ((pos = findmatch(NULL, NUL)) != NULL)
+ 				{
+ 				    curwin->w_cursor.lnum = pos->lnum;
+ 				    newindent = get_indent();
+ 				}
+ 			    }
+ 			}
+ 		    }
+ 		}
+ 		else	// Not a comment line
+ # endif
+ 		{
+ 		    // Find last non-blank in line
+ 		    p = ptr + STRLEN(ptr) - 1;
+ 		    while (p > ptr && VIM_ISWHITE(*p))
+ 			--p;
+ 		    last_char = *p;
+ 
+ 		    // find the character just before the '{' or ';'
+ 		    if (last_char == '{' || last_char == ';')
+ 		    {
+ 			if (p > ptr)
+ 			    --p;
+ 			while (p > ptr && VIM_ISWHITE(*p))
+ 			    --p;
+ 		    }
+ 		    // Try to catch lines that are split over multiple
+ 		    // lines.  eg:
+ 		    //	    if (condition &&
+ 		    //			condition) {
+ 		    //		Should line up here!
+ 		    //	    }
+ 		    if (*p == ')')
+ 		    {
+ 			curwin->w_cursor.col = (colnr_T)(p - ptr);
+ 			if ((pos = findmatch(NULL, '(')) != NULL)
+ 			{
+ 			    curwin->w_cursor.lnum = pos->lnum;
+ 			    newindent = get_indent();
+ 			    ptr = ml_get_curline();
+ 			}
+ 		    }
+ 		    // If last character is '{' do indent, without
+ 		    // checking for "if" and the like.
+ 		    if (last_char == '{')
+ 		    {
+ 			did_si = TRUE;	// do indent
+ 			no_si = TRUE;	// don't delete it when '{' typed
+ 		    }
+ 		    // Look for "if" and the like, use 'cinwords'.
+ 		    // Don't do this if the previous line ended in ';' or
+ 		    // '}'.
+ 		    else if (last_char != ';' && last_char != '}'
+ 						       && cin_is_cinword(ptr))
+ 			did_si = TRUE;
+ 		}
+ 	    }
+ 	    else // dir == BACKWARD
+ 	    {
+ 		// Skip preprocessor directives, unless they are
+ 		// recognised as comments.
+ 		if (
+ # ifdef FEAT_COMMENTS
+ 			lead_len == 0 &&
+ # endif
+ 			ptr[0] == '#')
+ 		{
+ 		    int was_backslashed = FALSE;
+ 
+ 		    while ((ptr[0] == '#' || was_backslashed) &&
+ 			 curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
+ 		    {
+ 			if (*ptr && ptr[STRLEN(ptr) - 1] == '\\')
+ 			    was_backslashed = TRUE;
+ 			else
+ 			    was_backslashed = FALSE;
+ 			ptr = ml_get(++curwin->w_cursor.lnum);
+ 		    }
+ 		    if (was_backslashed)
+ 			newindent = 0;	    // Got to end of file
+ 		    else
+ 			newindent = get_indent();
+ 		}
+ 		p = skipwhite(ptr);
+ 		if (*p == '}')	    // if line starts with '}': do indent
+ 		    did_si = TRUE;
+ 		else		    // can delete indent when '{' typed
+ 		    can_si_back = TRUE;
+ 	    }
+ 	    curwin->w_cursor = old_cursor;
+ 	}
+ 	if (do_si)
+ 	    can_si = TRUE;
+ #endif // FEAT_SMARTINDENT
+ 
+ 	did_ai = TRUE;
+     }
+ 
+ #ifdef FEAT_COMMENTS
+     // Find out if the current line starts with a comment leader.
+     // This may then be inserted in front of the new line.
+     end_comment_pending = NUL;
+     if (flags & OPENLINE_DO_COM)
+ 	lead_len = get_leader_len(saved_line, &lead_flags,
+ 							dir == BACKWARD, TRUE);
+     else
+ 	lead_len = 0;
+     if (lead_len > 0)
+     {
+ 	char_u	*lead_repl = NULL;	    // replaces comment leader
+ 	int	lead_repl_len = 0;	    // length of *lead_repl
+ 	char_u	lead_middle[COM_MAX_LEN];   // middle-comment string
+ 	char_u	lead_end[COM_MAX_LEN];	    // end-comment string
+ 	char_u	*comment_end = NULL;	    // where lead_end has been found
+ 	int	extra_space = FALSE;	    // append extra space
+ 	int	current_flag;
+ 	int	require_blank = FALSE;	    // requires blank after middle
+ 	char_u	*p2;
+ 
+ 	// If the comment leader has the start, middle or end flag, it may not
+ 	// be used or may be replaced with the middle leader.
+ 	for (p = lead_flags; *p && *p != ':'; ++p)
+ 	{
+ 	    if (*p == COM_BLANK)
+ 	    {
+ 		require_blank = TRUE;
+ 		continue;
+ 	    }
+ 	    if (*p == COM_START || *p == COM_MIDDLE)
+ 	    {
+ 		current_flag = *p;
+ 		if (*p == COM_START)
+ 		{
+ 		    // Doing "O" on a start of comment does not insert leader.
+ 		    if (dir == BACKWARD)
+ 		    {
+ 			lead_len = 0;
+ 			break;
+ 		    }
+ 
+ 		    // find start of middle part
+ 		    (void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
+ 		    require_blank = FALSE;
+ 		}
+ 
+ 		// Isolate the strings of the middle and end leader.
+ 		while (*p && p[-1] != ':')	/* find end of middle flags */
+ 		{
+ 		    if (*p == COM_BLANK)
+ 			require_blank = TRUE;
+ 		    ++p;
+ 		}
+ 		(void)copy_option_part(&p, lead_middle, COM_MAX_LEN, ",");
+ 
+ 		while (*p && p[-1] != ':')	// find end of end flags
+ 		{
+ 		    // Check whether we allow automatic ending of comments
+ 		    if (*p == COM_AUTO_END)
+ 			end_comment_pending = -1; // means we want to set it
+ 		    ++p;
+ 		}
+ 		n = copy_option_part(&p, lead_end, COM_MAX_LEN, ",");
+ 
+ 		if (end_comment_pending == -1)	// we can set it now
+ 		    end_comment_pending = lead_end[n - 1];
+ 
+ 		// If the end of the comment is in the same line, don't use
+ 		// the comment leader.
+ 		if (dir == FORWARD)
+ 		{
+ 		    for (p = saved_line + lead_len; *p; ++p)
+ 			if (STRNCMP(p, lead_end, n) == 0)
+ 			{
+ 			    comment_end = p;
+ 			    lead_len = 0;
+ 			    break;
+ 			}
+ 		}
+ 
+ 		// Doing "o" on a start of comment inserts the middle leader.
+ 		if (lead_len > 0)
+ 		{
+ 		    if (current_flag == COM_START)
+ 		    {
+ 			lead_repl = lead_middle;
+ 			lead_repl_len = (int)STRLEN(lead_middle);
+ 		    }
+ 
+ 		    // If we have hit RETURN immediately after the start
+ 		    // comment leader, then put a space after the middle
+ 		    // comment leader on the next line.
+ 		    if (!VIM_ISWHITE(saved_line[lead_len - 1])
+ 			    && ((p_extra != NULL
+ 				    && (int)curwin->w_cursor.col == lead_len)
+ 				|| (p_extra == NULL
+ 				    && saved_line[lead_len] == NUL)
+ 				|| require_blank))
+ 			extra_space = TRUE;
+ 		}
+ 		break;
+ 	    }
+ 	    if (*p == COM_END)
+ 	    {
+ 		// Doing "o" on the end of a comment does not insert leader.
+ 		// Remember where the end is, might want to use it to find the
+ 		// start (for C-comments).
+ 		if (dir == FORWARD)
+ 		{
+ 		    comment_end = skipwhite(saved_line);
+ 		    lead_len = 0;
+ 		    break;
+ 		}
+ 
+ 		// Doing "O" on the end of a comment inserts the middle leader.
+ 		// Find the string for the middle leader, searching backwards.
+ 		while (p > curbuf->b_p_com && *p != ',')
+ 		    --p;
+ 		for (lead_repl = p; lead_repl > curbuf->b_p_com
+ 					 && lead_repl[-1] != ':'; --lead_repl)
+ 		    ;
+ 		lead_repl_len = (int)(p - lead_repl);
+ 
+ 		// We can probably always add an extra space when doing "O" on
+ 		// the comment-end
+ 		extra_space = TRUE;
+ 
+ 		// Check whether we allow automatic ending of comments
+ 		for (p2 = p; *p2 && *p2 != ':'; p2++)
+ 		{
+ 		    if (*p2 == COM_AUTO_END)
+ 			end_comment_pending = -1; // means we want to set it
+ 		}
+ 		if (end_comment_pending == -1)
+ 		{
+ 		    // Find last character in end-comment string
+ 		    while (*p2 && *p2 != ',')
+ 			p2++;
+ 		    end_comment_pending = p2[-1];
+ 		}
+ 		break;
+ 	    }
+ 	    if (*p == COM_FIRST)
+ 	    {
+ 		// Comment leader for first line only:	Don't repeat leader
+ 		// when using "O", blank out leader when using "o".
+ 		if (dir == BACKWARD)
+ 		    lead_len = 0;
+ 		else
+ 		{
+ 		    lead_repl = (char_u *)"";
+ 		    lead_repl_len = 0;
+ 		}
+ 		break;
+ 	    }
+ 	}
+ 	if (lead_len)
+ 	{
+ 	    // allocate buffer (may concatenate p_extra later)
+ 	    leader = alloc(lead_len + lead_repl_len + extra_space + extra_len
+ 		     + (second_line_indent > 0 ? second_line_indent : 0) + 1);
+ 	    allocated = leader;		    // remember to free it later
+ 
+ 	    if (leader == NULL)
+ 		lead_len = 0;
+ 	    else
+ 	    {
+ 		vim_strncpy(leader, saved_line, lead_len);
+ 
+ 		// Replace leader with lead_repl, right or left adjusted
+ 		if (lead_repl != NULL)
+ 		{
+ 		    int		c = 0;
+ 		    int		off = 0;
+ 
+ 		    for (p = lead_flags; *p != NUL && *p != ':'; )
+ 		    {
+ 			if (*p == COM_RIGHT || *p == COM_LEFT)
+ 			    c = *p++;
+ 			else if (VIM_ISDIGIT(*p) || *p == '-')
+ 			    off = getdigits(&p);
+ 			else
+ 			    ++p;
+ 		    }
+ 		    if (c == COM_RIGHT)    // right adjusted leader
+ 		    {
+ 			// find last non-white in the leader to line up with
+ 			for (p = leader + lead_len - 1; p > leader
+ 						      && VIM_ISWHITE(*p); --p)
+ 			    ;
+ 			++p;
+ 
+ 			// Compute the length of the replaced characters in
+ 			// screen characters, not bytes.
+ 			{
+ 			    int	    repl_size = vim_strnsize(lead_repl,
+ 							       lead_repl_len);
+ 			    int	    old_size = 0;
+ 			    char_u  *endp = p;
+ 			    int	    l;
+ 
+ 			    while (old_size < repl_size && p > leader)
+ 			    {
+ 				MB_PTR_BACK(leader, p);
+ 				old_size += ptr2cells(p);
+ 			    }
+ 			    l = lead_repl_len - (int)(endp - p);
+ 			    if (l != 0)
+ 				mch_memmove(endp + l, endp,
+ 					(size_t)((leader + lead_len) - endp));
+ 			    lead_len += l;
+ 			}
+ 			mch_memmove(p, lead_repl, (size_t)lead_repl_len);
+ 			if (p + lead_repl_len > leader + lead_len)
+ 			    p[lead_repl_len] = NUL;
+ 
+ 			// blank-out any other chars from the old leader.
+ 			while (--p >= leader)
+ 			{
+ 			    int l = mb_head_off(leader, p);
+ 
+ 			    if (l > 1)
+ 			    {
+ 				p -= l;
+ 				if (ptr2cells(p) > 1)
+ 				{
+ 				    p[1] = ' ';
+ 				    --l;
+ 				}
+ 				mch_memmove(p + 1, p + l + 1,
+ 				   (size_t)((leader + lead_len) - (p + l + 1)));
+ 				lead_len -= l;
+ 				*p = ' ';
+ 			    }
+ 			    else if (!VIM_ISWHITE(*p))
+ 				*p = ' ';
+ 			}
+ 		    }
+ 		    else	// left adjusted leader
+ 		    {
+ 			p = skipwhite(leader);
+ 
+ 			// Compute the length of the replaced characters in
+ 			// screen characters, not bytes. Move the part that is
+ 			// not to be overwritten.
+ 			{
+ 			    int	    repl_size = vim_strnsize(lead_repl,
+ 							       lead_repl_len);
+ 			    int	    i;
+ 			    int	    l;
+ 
+ 			    for (i = 0; i < lead_len && p[i] != NUL; i += l)
+ 			    {
+ 				l = (*mb_ptr2len)(p + i);
+ 				if (vim_strnsize(p, i + l) > repl_size)
+ 				    break;
+ 			    }
+ 			    if (i != lead_repl_len)
+ 			    {
+ 				mch_memmove(p + lead_repl_len, p + i,
+ 				       (size_t)(lead_len - i - (p - leader)));
+ 				lead_len += lead_repl_len - i;
+ 			    }
+ 			}
+ 			mch_memmove(p, lead_repl, (size_t)lead_repl_len);
+ 
+ 			// Replace any remaining non-white chars in the old
+ 			// leader by spaces.  Keep Tabs, the indent must
+ 			// remain the same.
+ 			for (p += lead_repl_len; p < leader + lead_len; ++p)
+ 			    if (!VIM_ISWHITE(*p))
+ 			    {
+ 				// Don't put a space before a TAB.
+ 				if (p + 1 < leader + lead_len && p[1] == TAB)
+ 				{
+ 				    --lead_len;
+ 				    mch_memmove(p, p + 1,
+ 						     (leader + lead_len) - p);
+ 				}
+ 				else
+ 				{
+ 				    int	    l = (*mb_ptr2len)(p);
+ 
+ 				    if (l > 1)
+ 				    {
+ 					if (ptr2cells(p) > 1)
+ 					{
+ 					    // Replace a double-wide char with
+ 					    // two spaces
+ 					    --l;
+ 					    *p++ = ' ';
+ 					}
+ 					mch_memmove(p + 1, p + l,
+ 						     (leader + lead_len) - p);
+ 					lead_len -= l - 1;
+ 				    }
+ 				    *p = ' ';
+ 				}
+ 			    }
+ 			*p = NUL;
+ 		    }
+ 
+ 		    // Recompute the indent, it may have changed.
+ 		    if (curbuf->b_p_ai
+ #ifdef FEAT_SMARTINDENT
+ 					|| do_si
+ #endif
+ 							   )
+ #ifdef FEAT_VARTABS
+ 			newindent = get_indent_str_vtab(leader, curbuf->b_p_ts,
+ 						 curbuf->b_p_vts_array, FALSE);
+ #else
+ 			newindent = get_indent_str(leader,
+ 						   (int)curbuf->b_p_ts, FALSE);
+ #endif
+ 
+ 		    // Add the indent offset
+ 		    if (newindent + off < 0)
+ 		    {
+ 			off = -newindent;
+ 			newindent = 0;
+ 		    }
+ 		    else
+ 			newindent += off;
+ 
+ 		    // Correct trailing spaces for the shift, so that
+ 		    // alignment remains equal.
+ 		    while (off > 0 && lead_len > 0
+ 					       && leader[lead_len - 1] == ' ')
+ 		    {
+ 			// Don't do it when there is a tab before the space
+ 			if (vim_strchr(skipwhite(leader), '\t') != NULL)
+ 			    break;
+ 			--lead_len;
+ 			--off;
+ 		    }
+ 
+ 		    // If the leader ends in white space, don't add an
+ 		    // extra space
+ 		    if (lead_len > 0 && VIM_ISWHITE(leader[lead_len - 1]))
+ 			extra_space = FALSE;
+ 		    leader[lead_len] = NUL;
+ 		}
+ 
+ 		if (extra_space)
+ 		{
+ 		    leader[lead_len++] = ' ';
+ 		    leader[lead_len] = NUL;
+ 		}
+ 
+ 		newcol = lead_len;
+ 
+ 		// if a new indent will be set below, remove the indent that
+ 		// is in the comment leader
+ 		if (newindent
+ #ifdef FEAT_SMARTINDENT
+ 				|| did_si
+ #endif
+ 					   )
+ 		{
+ 		    while (lead_len && VIM_ISWHITE(*leader))
+ 		    {
+ 			--lead_len;
+ 			--newcol;
+ 			++leader;
+ 		    }
+ 		}
+ 
+ 	    }
+ #ifdef FEAT_SMARTINDENT
+ 	    did_si = can_si = FALSE;
+ #endif
+ 	}
+ 	else if (comment_end != NULL)
+ 	{
+ 	    // We have finished a comment, so we don't use the leader.
+ 	    // If this was a C-comment and 'ai' or 'si' is set do a normal
+ 	    // indent to align with the line containing the start of the
+ 	    // comment.
+ 	    if (comment_end[0] == '*' && comment_end[1] == '/' &&
+ 			(curbuf->b_p_ai
+ #ifdef FEAT_SMARTINDENT
+ 					|| do_si
+ #endif
+ 							   ))
+ 	    {
+ 		old_cursor = curwin->w_cursor;
+ 		curwin->w_cursor.col = (colnr_T)(comment_end - saved_line);
+ 		if ((pos = findmatch(NULL, NUL)) != NULL)
+ 		{
+ 		    curwin->w_cursor.lnum = pos->lnum;
+ 		    newindent = get_indent();
+ 		}
+ 		curwin->w_cursor = old_cursor;
+ 	    }
+ 	}
+     }
+ #endif
+ 
+     // (State == INSERT || State == REPLACE), only when dir == FORWARD
+     if (p_extra != NULL)
+     {
+ 	*p_extra = saved_char;		// restore char that NUL replaced
+ 
+ 	// When 'ai' set or "flags" has OPENLINE_DELSPACES, skip to the first
+ 	// non-blank.
+ 	//
+ 	// When in REPLACE mode, put the deleted blanks on the replace stack,
+ 	// preceded by a NUL, so they can be put back when a BS is entered.
+ 	if (REPLACE_NORMAL(State))
+ 	    replace_push(NUL);	    /* end of extra blanks */
+ 	if (curbuf->b_p_ai || (flags & OPENLINE_DELSPACES))
+ 	{
+ 	    while ((*p_extra == ' ' || *p_extra == '\t')
+ 		    && (!enc_utf8
+ 			       || !utf_iscomposing(utf_ptr2char(p_extra + 1))))
+ 	    {
+ 		if (REPLACE_NORMAL(State))
+ 		    replace_push(*p_extra);
+ 		++p_extra;
+ 		++less_cols_off;
+ 	    }
+ 	}
+ 
+ 	// columns for marks adjusted for removed columns
+ 	less_cols = (int)(p_extra - saved_line);
+     }
+ 
+     if (p_extra == NULL)
+ 	p_extra = (char_u *)"";		    // append empty line
+ 
+ #ifdef FEAT_COMMENTS
+     // concatenate leader and p_extra, if there is a leader
+     if (lead_len)
+     {
+ 	if (flags & OPENLINE_COM_LIST && second_line_indent > 0)
+ 	{
+ 	    int i;
+ 	    int padding = second_line_indent
+ 					  - (newindent + (int)STRLEN(leader));
+ 
+ 	    // Here whitespace is inserted after the comment char.
+ 	    // Below, set_indent(newindent, SIN_INSERT) will insert the
+ 	    // whitespace needed before the comment char.
+ 	    for (i = 0; i < padding; i++)
+ 	    {
+ 		STRCAT(leader, " ");
+ 		less_cols--;
+ 		newcol++;
+ 	    }
+ 	}
+ 	STRCAT(leader, p_extra);
+ 	p_extra = leader;
+ 	did_ai = TRUE;	    // So truncating blanks works with comments
+ 	less_cols -= lead_len;
+     }
+     else
+ 	end_comment_pending = NUL;  // turns out there was no leader
+ #endif
+ 
+     old_cursor = curwin->w_cursor;
+     if (dir == BACKWARD)
+ 	--curwin->w_cursor.lnum;
+     if (!(State & VREPLACE_FLAG) || old_cursor.lnum >= orig_line_count)
+     {
+ 	if (ml_append(curwin->w_cursor.lnum, p_extra, (colnr_T)0, FALSE)
+ 								      == FAIL)
+ 	    goto theend;
+ 	// Postpone calling changed_lines(), because it would mess up folding
+ 	// with markers.
+ 	// Skip mark_adjust when adding a line after the last one, there can't
+ 	// be marks there. But still needed in diff mode.
+ 	if (curwin->w_cursor.lnum + 1 < curbuf->b_ml.ml_line_count
+ #ifdef FEAT_DIFF
+ 		|| curwin->w_p_diff
+ #endif
+ 	    )
+ 	    mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
+ 	did_append = TRUE;
+     }
+     else
+     {
+ 	// In VREPLACE mode we are starting to replace the next line.
+ 	curwin->w_cursor.lnum++;
+ 	if (curwin->w_cursor.lnum >= Insstart.lnum + vr_lines_changed)
+ 	{
+ 	    // In case we NL to a new line, BS to the previous one, and NL
+ 	    // again, we don't want to save the new line for undo twice.
+ 	    (void)u_save_cursor();		    /* errors are ignored! */
+ 	    vr_lines_changed++;
+ 	}
+ 	ml_replace(curwin->w_cursor.lnum, p_extra, TRUE);
+ 	changed_bytes(curwin->w_cursor.lnum, 0);
+ 	curwin->w_cursor.lnum--;
+ 	did_append = FALSE;
+     }
+ 
+     if (newindent
+ #ifdef FEAT_SMARTINDENT
+ 		    || did_si
+ #endif
+ 				)
+     {
+ 	++curwin->w_cursor.lnum;
+ #ifdef FEAT_SMARTINDENT
+ 	if (did_si)
+ 	{
+ 	    int sw = (int)get_sw_value(curbuf);
+ 
+ 	    if (p_sr)
+ 		newindent -= newindent % sw;
+ 	    newindent += sw;
+ 	}
+ #endif
+ 	// Copy the indent
+ 	if (curbuf->b_p_ci)
+ 	{
+ 	    (void)copy_indent(newindent, saved_line);
+ 
+ 	    // Set the 'preserveindent' option so that any further screwing
+ 	    // with the line doesn't entirely destroy our efforts to preserve
+ 	    // it.  It gets restored at the function end.
+ 	    curbuf->b_p_pi = TRUE;
+ 	}
+ 	else
+ 	    (void)set_indent(newindent, SIN_INSERT);
+ 	less_cols -= curwin->w_cursor.col;
+ 
+ 	ai_col = curwin->w_cursor.col;
+ 
+ 	// In REPLACE mode, for each character in the new indent, there must
+ 	// be a NUL on the replace stack, for when it is deleted with BS
+ 	if (REPLACE_NORMAL(State))
+ 	    for (n = 0; n < (int)curwin->w_cursor.col; ++n)
+ 		replace_push(NUL);
+ 	newcol += curwin->w_cursor.col;
+ #ifdef FEAT_SMARTINDENT
+ 	if (no_si)
+ 	    did_si = FALSE;
+ #endif
+     }
+ 
+ #ifdef FEAT_COMMENTS
+     // In REPLACE mode, for each character in the extra leader, there must be
+     // a NUL on the replace stack, for when it is deleted with BS.
+     if (REPLACE_NORMAL(State))
+ 	while (lead_len-- > 0)
+ 	    replace_push(NUL);
+ #endif
+ 
+     curwin->w_cursor = old_cursor;
+ 
+     if (dir == FORWARD)
+     {
+ 	if (trunc_line || (State & INSERT))
+ 	{
+ 	    // truncate current line at cursor
+ 	    saved_line[curwin->w_cursor.col] = NUL;
+ 	    // Remove trailing white space, unless OPENLINE_KEEPTRAIL used.
+ 	    if (trunc_line && !(flags & OPENLINE_KEEPTRAIL))
+ 		truncate_spaces(saved_line);
+ 	    ml_replace(curwin->w_cursor.lnum, saved_line, FALSE);
+ 	    saved_line = NULL;
+ 	    if (did_append)
+ 	    {
+ 		changed_lines(curwin->w_cursor.lnum, curwin->w_cursor.col,
+ 					       curwin->w_cursor.lnum + 1, 1L);
+ 		did_append = FALSE;
+ 
+ 		// Move marks after the line break to the new line.
+ 		if (flags & OPENLINE_MARKFIX)
+ 		    mark_col_adjust(curwin->w_cursor.lnum,
+ 					 curwin->w_cursor.col + less_cols_off,
+ 						      1L, (long)-less_cols, 0);
+ 	    }
+ 	    else
+ 		changed_bytes(curwin->w_cursor.lnum, curwin->w_cursor.col);
+ 	}
+ 
+ 	// Put the cursor on the new line.  Careful: the scrollup() above may
+ 	// have moved w_cursor, we must use old_cursor.
+ 	curwin->w_cursor.lnum = old_cursor.lnum + 1;
+     }
+     if (did_append)
+ 	changed_lines(curwin->w_cursor.lnum, 0, curwin->w_cursor.lnum, 1L);
+ 
+     curwin->w_cursor.col = newcol;
+     curwin->w_cursor.coladd = 0;
+ 
+ #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
+     // In VREPLACE mode, we are handling the replace stack ourselves, so stop
+     // fixthisline() from doing it (via change_indent()) by telling it we're in
+     // normal INSERT mode.
+     if (State & VREPLACE_FLAG)
+     {
+ 	vreplace_mode = State;	// So we know to put things right later
+ 	State = INSERT;
+     }
+     else
+ 	vreplace_mode = 0;
+ #endif
+ #ifdef FEAT_LISP
+     // May do lisp indenting.
+     if (!p_paste
+ # ifdef FEAT_COMMENTS
+ 	    && leader == NULL
+ # endif
+ 	    && curbuf->b_p_lisp
+ 	    && curbuf->b_p_ai)
+     {
+ 	fixthisline(get_lisp_indent);
+ 	ai_col = (colnr_T)getwhitecols_curline();
+     }
+ #endif
+ #ifdef FEAT_CINDENT
+     // May do indenting after opening a new line.
+     if (!p_paste
+ 	    && (curbuf->b_p_cin
+ #  ifdef FEAT_EVAL
+ 		    || *curbuf->b_p_inde != NUL
+ #  endif
+ 		)
+ 	    && in_cinkeys(dir == FORWARD
+ 		? KEY_OPEN_FORW
+ 		: KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum)))
+     {
+ 	do_c_expr_indent();
+ 	ai_col = (colnr_T)getwhitecols_curline();
+     }
+ #endif
+ #if defined(FEAT_LISP) || defined(FEAT_CINDENT)
+     if (vreplace_mode != 0)
+ 	State = vreplace_mode;
+ #endif
+ 
+     // Finally, VREPLACE gets the stuff on the new line, then puts back the
+     // original line, and inserts the new stuff char by char, pushing old stuff
+     // onto the replace stack (via ins_char()).
+     if (State & VREPLACE_FLAG)
+     {
+ 	// Put new line in p_extra
+ 	p_extra = vim_strsave(ml_get_curline());
+ 	if (p_extra == NULL)
+ 	    goto theend;
+ 
+ 	// Put back original line
+ 	ml_replace(curwin->w_cursor.lnum, next_line, FALSE);
+ 
+ 	// Insert new stuff into line again
+ 	curwin->w_cursor.col = 0;
+ 	curwin->w_cursor.coladd = 0;
+ 	ins_bytes(p_extra);	// will call changed_bytes()
+ 	vim_free(p_extra);
+ 	next_line = NULL;
+     }
+ 
+     retval = OK;		// success!
+ theend:
+     curbuf->b_p_pi = saved_pi;
+     vim_free(saved_line);
+     vim_free(next_line);
+     vim_free(allocated);
+     return retval;
+ }
+ 
+ /*
+  * Delete from cursor to end of line.
+  * Caller must have prepared for undo.
+  * If "fixpos" is TRUE fix the cursor position when done.
+  *
+  * Return FAIL for failure, OK otherwise.
+  */
+     int
+ truncate_line(int fixpos)
+ {
+     char_u	*newp;
+     linenr_T	lnum = curwin->w_cursor.lnum;
+     colnr_T	col = curwin->w_cursor.col;
+ 
+     if (col == 0)
+ 	newp = vim_strsave((char_u *)"");
+     else
+ 	newp = vim_strnsave(ml_get(lnum), col);
+ 
+     if (newp == NULL)
+ 	return FAIL;
+ 
+     ml_replace(lnum, newp, FALSE);
+ 
+     // mark the buffer as changed and prepare for displaying
+     changed_bytes(lnum, curwin->w_cursor.col);
+ 
+     // If "fixpos" is TRUE we don't want to end up positioned at the NUL.
+     if (fixpos && curwin->w_cursor.col > 0)
+ 	--curwin->w_cursor.col;
+ 
+     return OK;
+ }
+ 
+ /*
+  * Delete "nlines" lines at the cursor.
+  * Saves the lines for undo first if "undo" is TRUE.
+  */
+     void
+ del_lines(long nlines,	int undo)
+ {
+     long	n;
+     linenr_T	first = curwin->w_cursor.lnum;
+ 
+     if (nlines <= 0)
+ 	return;
+ 
+     // save the deleted lines for undo
+     if (undo && u_savedel(first, nlines) == FAIL)
+ 	return;
+ 
+     for (n = 0; n < nlines; )
+     {
+ 	if (curbuf->b_ml.ml_flags & ML_EMPTY)	    // nothing to delete
+ 	    break;
+ 
+ 	ml_delete(first, TRUE);
+ 	++n;
+ 
+ 	// If we delete the last line in the file, stop
+ 	if (first > curbuf->b_ml.ml_line_count)
+ 	    break;
+     }
+ 
+     // Correct the cursor position before calling deleted_lines_mark(), it may
+     // trigger a callback to display the cursor.
+     curwin->w_cursor.col = 0;
+     check_cursor_lnum();
+ 
+     // adjust marks, mark the buffer as changed and prepare for displaying
+     deleted_lines_mark(first, n);
+ }
*** ../vim-8.1.1317/src/proto/change.pro	2019-05-11 17:02:59.038341052 +0200
--- src/proto/change.pro	2019-05-11 16:56:18.508683414 +0200
***************
*** 0 ****
--- 1,24 ----
+ /* change.c */
+ void change_warning(int col);
+ void changed(void);
+ void changed_internal(void);
+ void changed_bytes(linenr_T lnum, colnr_T col);
+ void inserted_bytes(linenr_T lnum, colnr_T col, int added);
+ void appended_lines(linenr_T lnum, long count);
+ void appended_lines_mark(linenr_T lnum, long count);
+ void deleted_lines(linenr_T lnum, long count);
+ void deleted_lines_mark(linenr_T lnum, long count);
+ void changed_lines(linenr_T lnum, colnr_T col, linenr_T lnume, long xtra);
+ void unchanged(buf_T *buf, int ff);
+ void ins_bytes(char_u *p);
+ void ins_bytes_len(char_u *p, int len);
+ void ins_char(int c);
+ void ins_char_bytes(char_u *buf, int charlen);
+ void ins_str(char_u *s);
+ int del_char(int fixpos);
+ int del_chars(long count, int fixpos);
+ int del_bytes(long count, int fixpos_arg, int use_delcombine);
+ int open_line(int dir, int flags, int second_line_indent);
+ int truncate_line(int fixpos);
+ void del_lines(long nlines, int undo);
+ /* vim: set ft=c : */
*** ../vim-8.1.1317/src/proto.h	2019-05-09 15:12:45.176723907 +0200
--- src/proto.h	2019-05-11 16:18:07.765350280 +0200
***************
*** 63,68 ****
--- 63,69 ----
  # endif
  # include "autocmd.pro"
  # include "buffer.pro"
+ # include "change.pro"
  # include "charset.pro"
  # ifdef FEAT_CSCOPE
  #  include "if_cscope.pro"
*** ../vim-8.1.1317/src/memline.c	2019-05-10 21:28:35.184612974 +0200
--- src/memline.c	2019-05-11 16:33:00.205143420 +0200
***************
*** 1637,1643 ****
  	 * empty.  Don't set the modified flag then. */
  	if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
  	{
! 	    changed_int();
  	    ++CHANGEDTICK(curbuf);
  	}
      }
--- 1637,1643 ----
  	 * empty.  Don't set the modified flag then. */
  	if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
  	{
! 	    changed_internal();
  	    ++CHANGEDTICK(curbuf);
  	}
      }
***************
*** 1651,1657 ****
  	    vim_free(p);
  	    if (i != 0)
  	    {
! 		changed_int();
  		++CHANGEDTICK(curbuf);
  		break;
  	    }
--- 1651,1657 ----
  	    vim_free(p);
  	    if (i != 0)
  	    {
! 		changed_internal();
  		++CHANGEDTICK(curbuf);
  		break;
  	    }
*** ../vim-8.1.1317/Filelist	2019-05-09 15:12:45.164723999 +0200
--- Filelist	2019-05-11 16:20:22.108775557 +0200
***************
*** 20,25 ****
--- 20,26 ----
  		src/blob.c \
  		src/blowfish.c \
  		src/buffer.c \
+ 		src/change.c \
  		src/channel.c \
  		src/charset.c \
  		src/crypt.c \
***************
*** 155,160 ****
--- 156,162 ----
  		src/proto/blob.pro \
  		src/proto/blowfish.pro \
  		src/proto/buffer.pro \
+ 		src/proto/change.pro \
  		src/proto/channel.pro \
  		src/proto/charset.pro \
  		src/proto/crypt.pro \
*** ../vim-8.1.1317/src/Make_cyg_ming.mak	2019-04-28 19:46:17.018060159 +0200
--- src/Make_cyg_ming.mak	2019-05-11 16:20:54.548632100 +0200
***************
*** 705,710 ****
--- 705,711 ----
  	$(OUTDIR)/blob.o \
  	$(OUTDIR)/blowfish.o \
  	$(OUTDIR)/buffer.o \
+ 	$(OUTDIR)/change.o \
  	$(OUTDIR)/charset.o \
  	$(OUTDIR)/crypt.o \
  	$(OUTDIR)/crypt_zip.o \
*** ../vim-8.1.1317/src/Make_dice.mak	2019-04-27 13:03:20.000715982 +0200
--- src/Make_dice.mak	2019-05-11 16:21:17.396530064 +0200
***************
*** 30,35 ****
--- 30,36 ----
  	autocmd.c \
  	blowfish.c \
  	buffer.c \
+ 	change.c \
  	charset.c \
  	crypt.c \
  	crypt_zip.c \
***************
*** 92,97 ****
--- 93,99 ----
  	o/autocmd.o \
  	o/blowfish.o \
  	o/buffer.o \
+ 	o/change.o \
  	o/charset.o \
  	o/crypt.o \
  	o/crypt_zip.o \
***************
*** 177,182 ****
--- 179,186 ----
  
  o/buffer.o:	buffer.c  $(SYMS)
  
+ o/change.o:	change.c  $(SYMS)
+ 
  o/charset.o:	charset.c  $(SYMS)
  
  o/crypt.o:	crypt.c  $(SYMS)
*** ../vim-8.1.1317/src/Make_manx.mak	2019-04-27 13:03:20.000715982 +0200
--- src/Make_manx.mak	2019-05-11 16:21:56.032355815 +0200
***************
*** 40,45 ****
--- 40,46 ----
  	autocmd.c \
  	blowfish.c \
  	buffer.c \
+ 	change.c \
  	charset.c \
  	crypt.c \
  	crypt_zip.c \
***************
*** 104,109 ****
--- 105,111 ----
  	obj/autocmd.o \
  	obj/blowfish.o \
  	obj/buffer.o \
+ 	obj/change.o \
  	obj/charset.o \
  	obj/crypt.o \
  	obj/crypt_zip.o \
***************
*** 166,171 ****
--- 168,174 ----
  	proto/autocmd.pro \
  	proto/blowfish.pro \
  	proto/buffer.pro \
+ 	proto/change.pro \
  	proto/charset.pro \
  	proto/crypt.pro \
  	proto/crypt_zip.pro \
***************
*** 280,285 ****
--- 283,291 ----
  obj/buffer.o:	buffer.c
  	$(CCSYM) $@ buffer.c
  
+ obj/change.o:	change.c
+ 	$(CCSYM) $@ change.c
+ 
  obj/charset.o:	charset.c
  	$(CCSYM) $@ charset.c
  
*** ../vim-8.1.1317/src/Make_morph.mak	2019-04-27 13:03:20.000715982 +0200
--- src/Make_morph.mak	2019-05-11 16:22:06.672307471 +0200
***************
*** 28,33 ****
--- 28,34 ----
  	autocmd.c						\
  	blowfish.c						\
  	buffer.c						\
+ 	change.c						\
  	charset.c						\
  	crypt.c							\
  	crypt_zip.c						\
*** ../vim-8.1.1317/src/Make_mvc.mak	2019-05-10 21:38:50.037438773 +0200
--- src/Make_mvc.mak	2019-05-11 16:22:27.648211682 +0200
***************
*** 700,705 ****
--- 700,706 ----
  	$(OUTDIR)\blob.obj \
  	$(OUTDIR)\blowfish.obj \
  	$(OUTDIR)\buffer.obj \
+ 	$(OUTDIR)\change.obj \
  	$(OUTDIR)\charset.obj \
  	$(OUTDIR)\crypt.obj \
  	$(OUTDIR)\crypt_zip.obj \
***************
*** 1410,1415 ****
--- 1411,1418 ----
  
  $(OUTDIR)/buffer.obj:	$(OUTDIR) buffer.c  $(INCL)
  
+ $(OUTDIR)/change.obj:	$(OUTDIR) change.c  $(INCL)
+ 
  $(OUTDIR)/charset.obj:	$(OUTDIR) charset.c  $(INCL)
  
  $(OUTDIR)/crypt.obj:	$(OUTDIR) crypt.c  $(INCL)
***************
*** 1700,1705 ****
--- 1703,1709 ----
  	proto/blob.pro \
  	proto/blowfish.pro \
  	proto/buffer.pro \
+ 	proto/change.pro \
  	proto/charset.pro \
  	proto/crypt.pro \
  	proto/crypt_zip.pro \
*** ../vim-8.1.1317/src/Make_sas.mak	2019-04-27 13:03:20.000715982 +0200
--- src/Make_sas.mak	2019-05-11 16:22:52.732096436 +0200
***************
*** 93,98 ****
--- 93,99 ----
  	autocmd.c \
  	blowfish.c \
  	buffer.c \
+ 	change.c \
  	charset.c \
  	crypt.c \
  	crypt_zip.c \
***************
*** 156,161 ****
--- 157,163 ----
  	autocmd.o \
  	blowfish.o \
  	buffer.o \
+ 	change.o \
  	charset.o \
  	crypt.o \
  	crypt_zip.o \
***************
*** 219,224 ****
--- 221,227 ----
  	proto/autocmd.pro \
  	proto/blowfish.pro \
  	proto/buffer.pro \
+ 	proto/change.pro \
  	proto/charset.pro \
  	proto/crypt.pro \
  	proto/crypt_zip.pro \
***************
*** 340,345 ****
--- 343,350 ----
  proto/blowfish.pro:	blowfish.c
  buffer.o:		buffer.c
  proto/buffer.pro:	buffer.c
+ change.o:		change.c
+ proto/change.pro:	change.c
  charset.o:		charset.c
  proto/charset.pro:	charset.c
  crypt.o:		crypt.c
*** ../vim-8.1.1317/src/Make_vms.mms	2019-04-27 13:03:20.000715982 +0200
--- src/Make_vms.mms	2019-05-11 16:23:19.943970612 +0200
***************
*** 2,8 ****
  # Makefile for Vim on OpenVMS
  #
  # Maintainer:   Zoltan Arpadffy <arpadffy@polarhome.com>
! # Last change:  2019 Apr 26
  #
  # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
  # with MMS and MMK
--- 2,8 ----
  # Makefile for Vim on OpenVMS
  #
  # Maintainer:   Zoltan Arpadffy <arpadffy@polarhome.com>
! # Last change:  2019 May 11
  #
  # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
  # with MMS and MMK
***************
*** 307,313 ****
  ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
  	   $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
  
! SRC =	arabic.c autocmd.c beval.c blob.c blowfish.c buffer.c charset.c \
  	crypt.c crypt_zip.c debugger.c dict.c diff.c digraph.c edit.c eval.c \
  	evalfunc.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \
  	if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \
--- 307,313 ----
  ALL_LIBS = $(LIBS) $(GUI_LIB_DIR) $(GUI_LIB) \
  	   $(PERL_LIB) $(PYTHON_LIB) $(TCL_LIB) $(RUBY_LIB)
  
! SRC =	arabic.c autocmd.c beval.c blob.c blowfish.c buffer.c change.c, charset.c \
  	crypt.c crypt_zip.c debugger.c dict.c diff.c digraph.c edit.c eval.c \
  	evalfunc.c ex_cmds.c ex_cmds2.c ex_docmd.c ex_eval.c ex_getln.c \
  	if_cscope.c if_xcmdsrv.c fileio.c findfile.c fold.c getchar.c \
***************
*** 320,326 ****
  	$(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
   	$(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
  
! OBJ = 	arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj \
  	charset.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj \
  	digraph.obj edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj \
  	ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
--- 320,326 ----
  	$(GUI_SRC) $(PERL_SRC) $(PYTHON_SRC) $(TCL_SRC) \
   	$(RUBY_SRC) $(HANGULIN_SRC) $(MZSCH_SRC) $(XDIFF_SRC)
  
! OBJ = 	arabic.obj autocmd.obj beval.obj blob.obj blowfish.obj buffer.obj change.obj \
  	charset.obj crypt.obj crypt_zip.obj debugger.obj dict.obj diff.obj \
  	digraph.obj edit.obj eval.obj evalfunc.obj ex_cmds.obj ex_cmds2.obj \
  	ex_docmd.obj ex_eval.obj ex_getln.obj if_cscope.obj if_xcmdsrv.obj \
***************
*** 510,515 ****
--- 510,519 ----
   ascii.h keymap.h term.h macros.h structs.h regexp.h \
   gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
   globals.h version.h
+ change.obj : change.c vim.h [.auto]config.h feature.h os_unix.h \
+  ascii.h keymap.h term.h macros.h structs.h regexp.h \
+  gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
+  globals.h version.h
  charset.obj : charset.c vim.h [.auto]config.h feature.h os_unix.h \
   ascii.h keymap.h term.h macros.h structs.h regexp.h \
   gui.h beval.h [.proto]gui_beval.pro option.h ex_cmds.h proto.h \
*** ../vim-8.1.1317/src/Makefile	2019-05-06 21:59:42.194211119 +0200
--- src/Makefile	2019-05-11 16:23:53.759813145 +0200
***************
*** 1576,1581 ****
--- 1577,1583 ----
  	blob.c \
  	blowfish.c \
  	buffer.c \
+ 	change.c \
  	charset.c \
  	crypt.c \
  	crypt_zip.c \
***************
*** 1691,1696 ****
--- 1693,1699 ----
  	objects/autocmd.o \
  	objects/beval.o \
  	objects/buffer.o \
+ 	objects/change.o \
  	objects/blob.o \
  	objects/blowfish.o \
  	objects/crypt.o \
***************
*** 1821,1826 ****
--- 1824,1830 ----
  	autocmd.pro \
  	blowfish.pro \
  	buffer.pro \
+ 	change.pro \
  	charset.pro \
  	crypt.pro \
  	crypt_zip.pro \
***************
*** 2965,2970 ****
--- 2969,2977 ----
  objects/buffer.o: buffer.c
  	$(CCC) -o $@ buffer.c
  
+ objects/change.o: change.c
+ 	$(CCC) -o $@ change.c
+ 
  objects/charset.o: charset.c
  	$(CCC) -o $@ charset.c
  
***************
*** 3430,3435 ****
--- 3437,3446 ----
   auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
   proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
   proto.h globals.h version.h
+ objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \
+  auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
+  proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
+  proto.h globals.h version.h
  objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
   auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
   proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
*** ../vim-8.1.1317/src/README.md	2019-04-27 13:03:20.000715982 +0200
--- src/README.md	2019-05-11 16:19:40.208958309 +0200
***************
*** 25,30 ****
--- 25,31 ----
  --------- | -----------
  autocmd.c	| autocommands
  buffer.c	| manipulating buffers (loaded files)
+ change.c	| handling changes to text
  debugger.c	| vim script debugger
  diff.c		| diff mode (vimdiff)
  eval.c		| expression evaluation
*** ../vim-8.1.1317/src/version.c	2019-05-11 14:34:09.326200119 +0200
--- src/version.c	2019-05-11 16:58:51.491776191 +0200
***************
*** 769,770 ****
--- 769,772 ----
  {   /* Add new patch number below this line */
+ /**/
+     1318,
  /**/

-- 
Mynd you, m00se bites Kan be pretty nasti ...
                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

 /// 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    ///