aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
blob: 81bcb1d033c53c20fb8712b006d14978698fc403 (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
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
2013-07-12  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
	(ruby-syntax-expansion-allowed-p): Support array of symbols, for
	Ruby 2.0.
	(ruby-font-lock-keywords): Distinguish calls to functions with
	module-like names from module references.  Highlight character
	literals.

2013-07-12  Sergio Durigan Junior  <[email protected]>  (tiny change)

	* progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
	(gdb-send): Handle continued commands.  (Bug#14847)

2013-07-12  Juanma Barranquero  <[email protected]>

	* desktop.el (desktop--v2s): Remove unused local variable.
	(desktop-save-buffer): Make defvar-local; adjust docstring.
	(desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
	(desktop-clear, desktop-save-buffer-p): Use string-match-p.

2013-07-12  Andreas Schwab  <[email protected]>

	* emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.

2013-07-12  Eli Zaretskii  <[email protected]>

	* simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
	(Bug#14842)

2013-07-12  Glenn Morris  <[email protected]>

	* doc-view.el: Require cl-lib at runtime too.
	(doc-view-remove-if): Remove.
	(doc-view-search-next-match, doc-view-search-previous-match):
	Use cl-remove-if.

	* edmacro.el: Require cl-lib at runtime too.
	(edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
	(edmacro-mismatch, edmacro-subseq): Remove.

	* shadowfile.el: Require cl-lib.
	(shadow-remove-if): Remove.
	(shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
	Use cl-remove-if.

	* wid-edit.el: Require cl-lib.
	(widget-choose): Use cl-remove-if.
	(widget-remove-if): Remove.

	* progmodes/ebrowse.el: Require cl-lib at runtime too.
	(ebrowse-delete-if-not): Remove.
	(ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
	(ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
	Use cl-delete-if-not.

2013-07-12  Juanma Barranquero  <[email protected]>

	* emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
	(cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.

2013-07-12  Leo Liu  <[email protected]>

	* ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)

2013-07-11  Glenn Morris  <[email protected]>

	* emacs-lisp/edebug.el: Require cl-lib at run-time too.
	(edebug-gensym-index, edebug-gensym):
	Remove reimplementation of cl-gensym.
	(edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.

	* thumbs.el: Require cl-lib at run-time too.
	(thumbs-gensym-counter, thumbs-gensym):
	Remove reimplementation of cl-gensym.
	(thumbs-temp-file): Use cl-gensym.

	* emacs-lisp/ert.el: Require cl-lib at runtime too.
	(ert--cl-do-remf, ert--remprop, ert--remove-if-not)
	(ert--intersection, ert--set-difference, ert--set-difference-eq)
	(ert--union, ert--gensym-counter, ert--gensym-counter)
	(ert--coerce-to-vector, ert--remove*, ert--string-position)
	(ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
	(ert-make-test-unbound, ert--expand-should-1)
	(ert--expand-should, ert--should-error-handle-error)
	(should-error, ert--explain-equal-rec)
	(ert--plist-difference-explanation, ert-select-tests)
	(ert--make-stats, ert--remove-from-list, ert--string-first-line):
	Use cl-lib functions rather than reimplementations.

2013-07-11  Michael Albinus  <[email protected]>

	* net/tramp.el (tramp-methods): Extend docstring.
	(tramp-connection-timeout): New defcustom.
	(tramp-error-with-buffer): Reset timestamp only when appropriate.
	(with-tramp-progress-reporter): Simplify.
	(tramp-process-actions): Improve messages.

	* net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
	* net/tramp-sh.el (tramp-maybe-open-connection):
	Use `tramp-connection-timeout'.
	(tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
	(Bug#14808)

2013-07-11  Leo Liu  <[email protected]>

	* ido.el (ido-read-file-name): Conform to the requirements of
	read-file-name.  (Bug#11861)
	(ido-read-directory-name): Conform to the requirements of
	read-directory-name.

2013-07-11  Juanma Barranquero  <[email protected]>

	* subr.el (delay-warning): New function.

2013-07-10  Eli Zaretskii  <[email protected]>

	* simple.el (default-line-height): New function.
	(line-move-partial, line-move): Use it instead of computing the
	line height inline.
	(line-move-partial): Always compute ROWH.  If the last line is
	partially-visible, but its text is completely visible, allow
	cursor to enter such a partially-visible line.

2013-07-10  Michael Albinus  <[email protected]>

	Improve error messages.  (Bug#14808)

	* net/tramp.el (tramp-current-connection): New defvar, moved from
	tramp-sh.el.
	(tramp-message-show-progress-reporter-message): Removed, not
	needed anymore.
	(tramp-error-with-buffer): Show message in minibuffer.  Discard
	input before waiting.  Reset connection timestamp.
	(with-tramp-progress-reporter): Improve messages.
	(tramp-process-actions): Use progress reporter.  Delete process in
	case of error.  Improve messages.

	* net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use
	condition-case.  Call `tramp-error-with-buffer' with vector and buffer.
	(tramp-current-connection): Removed.
	(tramp-maybe-open-connection): The car of
	`tramp-current-connection' are the first 3 slots of the vector.

2013-07-10  Teodor Zlatanov  <[email protected]>

	* progmodes/cfengine.el (cfengine3-indent-line): Do not indent
	inside continued strings.

2013-07-10  Paul Eggert  <[email protected]>

	Timestamp fixes for undo (Bug#14824).
	* files.el (clear-visited-file-modtime): Move here from fileio.c.

2013-07-10  Leo Liu  <[email protected]>

	* files.el (require-final-newline): Allow safe local value.
	(Bug#14834)

2013-07-09  Leo Liu  <[email protected]>

	* ido.el (ido-read-directory-name): Handle fallback.
	(ido-read-file-name): Update DIR to ido-current-directory.
	(Bug#1516)
	(ido-add-virtual-buffers-to-list): Robustify.  (Bug#14552)

2013-07-09  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
	"autoload".  Remove "warn lower camel case" section, previously
	commented out.  Highlight negation char.  Do not highlight the
	target in singleton method definitions.

2013-07-08  Stefan Monnier  <[email protected]>

	* faces.el (tty-setup-hook): Declare the hook.

	* emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
	and detect when a guard/pred depends on local vars (bug#14773).
	(pcase--u1): Adjust caller.

2013-07-08  Eli Zaretskii  <[email protected]>

	* simple.el (line-move-partial, line-move): Account for
	line-spacing.
	(line-move-partial): Avoid setting vscroll when the last
	partially-visible line in window is of default height.

2013-07-08  Lars Magne Ingebrigtsen  <[email protected]>

	* net/shr.el (shr-map): Reinstate the `u' key binding, since it's
	been used a while.

2013-07-07  Juanma Barranquero  <[email protected]>

	* subr.el (read-quoted-char): Remove unused local variable `char'.

2013-07-07  Michael Kifer  <[email protected]>

	* ediff.el (ediff-version): Version update.
	(ediff-files-command, ediff3-files-command, ediff-merge-command)
	(ediff-merge-with-ancestor-command, ediff-directories-command)
	(ediff-directories3-command, ediff-merge-directories-command)
	(ediff-merge-directories-with-ancestor-command): New functions.
	All are command-line interfaces to ediff: to facilitate calling
	Emacs with the appropriate ediff functions invoked.

	* viper-cmd.el (viper-del-forward-char-in-insert): New function.
	(viper-save-kill-buffer): Check if buffer is modified.

	* viper.el (viper-version): Version update.
	(viper-emacs-state-mode-list): Add egg-status-buffer-mode.

2013-07-07  Stefan Monnier  <[email protected]>

	* faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
	* viper-cmd.el (viper-envelop-ESC-key): Remove function.
	(viper-intercept-ESC-key): Simplify.
	* viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
	* viper.el (viper--tty-ESC-filter, viper--lookup-key)
	(viper-catch-tty-ESC, viper-uncatch-tty-ESC)
	(viper-setup-ESC-to-escape): New functions.
	(viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
	(viper-set-hooks): Do not modify flyspell-mode-hook.  (Bug#13793)

2013-07-07  Eli Zaretskii  <[email protected]>

	* simple.el (default-font-height, window-screen-lines):
	New functions.
	(line-move, line-move-partial): Use them instead of
	frame-char-height and window-text-height.  This makes scrolling
	text smoother when the buffer's default face uses a font that is
	different from the frame's default font.

2013-07-06  Jan Djärv  <[email protected]>

	* files.el (write-file): Do not display confirm dialog for NS,
	it does its own dialog, which can't be cancelled (Bug#14578).

2013-07-06  Eli Zaretskii  <[email protected]>

	* simple.el (line-move-partial): Adjust the row returned by
	posn-at-point for the current window-vscroll.  (Bug#14567)

2013-07-06  Michael Albinus  <[email protected]>

	* net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
	(tramp-sh-file-inotifywait-process-filter): Handle file names with
	spaces.

2013-07-06  Martin Rudalics  <[email protected]>

	* window.el (window-state-put-stale-windows): New variable.
	(window--state-put-2): Save list of windows without matching buffer.
	(window-state-put): Remove "bufferless" windows if possible.

2013-07-06  Juanma Barranquero  <[email protected]>

	* simple.el (alternatives-define): Remove leftover :group keyword.
	Tweak docstring.

2013-07-06  Leo Liu  <[email protected]>

	* ido.el (ido-use-virtual-buffers): Allow new value 'auto.
	(ido-enable-virtual-buffers): New variable.
	(ido-buffer-internal, ido-toggle-virtual-buffers)
	(ido-make-buffer-list): Use it.
	(ido-exhibit): Support turning on and off virtual buffers
	automatically.

2013-07-06  Juanma Barranquero  <[email protected]>

	* simple.el (alternatives-define): New macro.

2013-07-06  Stefan Monnier  <[email protected]>

	* subr.el (read-quoted-char): Use read-key.
	(sit-for): Let read-event decode tty input (bug#14782).

2013-07-05  Stephen Berman  <[email protected]>

	* calendar/todo-mode.el: Add handling of file deletion, both by
	mode command and externally.  Fix various related bugs.
	Clarify Commentary and improve some documentation strings and code.
	(todo-delete-file): New command.
	(todo-check-file): New function.
	(todo-show): Handle external deletion of the file we're trying to
	show (bug#14688).  Replace called-interactively-p by an optional
	prefix argument to avoid problematic interaction with catch form
	when byte compiled (bug#14702).
	(todo-quit): Handle external deletion of the archive's todo file.
	Make sure the buffer that was visiting the archive file is still
	live before trying to bury it.
	(todo-category-completions): Handle external deletion of any
	category completion files.
	(todo-jump-to-category, todo-basic-insert-item): Recalculate list
	of todo files, in case of external deletion.
	(todo-add-file): Replace unnecessary setq by let-binding.
	(todo-find-archive): Check whether there are any archives.
	Replace unnecessary setq by let-binding.
	(todo-archive-done-item): Use find-file-noselect to get the
	archive buffer whether or not the archive already exists.
	Remove superfluous code.  Use file size instead of buffer-file-name to
	check if the archive is new; if it is, update list of archives.
	(todo-default-todo-file): Allow nil to be a valid value for when
	there are no todo files.
	(todo-reevaluate-default-file-defcustom): Use corrected definition
	of todo-default-todo-file.
	(todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
	(todo-delete-category, todo-show-categories-table)
	(todo-category-number): Clarify comment.
	(todo-filter-items): Clarify documentation string.
	(todo-show-current-file, todo-display-as-todo-file)
	(todo-reset-and-enable-done-separator): Tweak documentation string.
	(todo-done-separator): Make separator length window-width, since
	bug#2749 is now fixed.

2013-07-05  Michael Albinus  <[email protected]>

	* net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
	Support both "gvfs-monitor-dir" and "inotifywait".
	(tramp-sh-file-inotifywait-process-filter): Rename from
	`tramp-sh-file-notify-process-filter'.
	(tramp-sh-file-gvfs-monitor-dir-process-filter)
	(tramp-get-remote-gvfs-monitor-dir): New defuns.

2013-07-05  Leo Liu  <[email protected]>

	* autoinsert.el (auto-insert-alist): Default to lexical-binding.

2013-07-04  YAMAMOTO Mitsuharu  <[email protected]>

	* frame.el (display-pixel-height, display-pixel-width)
	(display-mm-height, display-mm-width): Mention behavior on
	multi-monitor setups in docstrings.
	(w32-display-monitor-attributes-list): Declare function.
	(display-monitor-attributes-list): Use it.

2013-07-04  Michael Albinus  <[email protected]>

	* filenotify.el: New package.

	* autorevert.el (top): Require filenotify.el.
	(auto-revert-notify-enabled): Remove.  Use `file-notify-support'
	instead.
	(auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
	(auto-revert-notify-handler): Use `file-notify-*' functions.

	* subr.el (file-notify-handle-event): Move function to filenotify.el.

	* net/tramp.el (tramp-file-name-for-operation):
	Handle `file-notify-add-watch' and `file-notify-rm-watch'.

	* net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
	for `file-notify-add-watch' and `file-notify-rm-watch'.
	(tramp-process-sentinel): Improve trace.
	(tramp-sh-handle-file-notify-add-watch)
	(tramp-sh-file-notify-process-filter)
	(tramp-sh-handle-file-notify-rm-watch)
	(tramp-get-remote-inotifywait): New defuns.

2013-07-03  Juri Linkov  <[email protected]>

	* buff-menu.el (Buffer-menu-multi-occur): Add args and move the
	call of `occur-read-primary-args' to interactive spec.

	* ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
	`ibuffer-do-occur' like in buff-menu.el.  (Bug#14673)

2013-07-03  Matthias Meulien  <[email protected]>

	* buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
	`Buffer-menu-multi-occur'.  Add it to the menu.
	(Buffer-menu-mode): Document it in docstring.
	(Buffer-menu-multi-occur): New command.  (Bug#14673)

2013-07-03  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
	keywords and built-ins.

2013-07-03  Glenn Morris  <[email protected]>

	* subr.el (y-or-n-p): Handle empty prompts.  (Bug#14770)

	Make info-xref checks case-sensitive by default
	* info.el (Info-find-node, Info-find-in-tag-table)
	(Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
	Add option for exact case matching of nodes.
	* info-xref.el (info-xref): New custom group.
	(info-xref-case-fold): New option.
	(info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.

2013-07-03  Leo Liu  <[email protected]>

	* ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.

2013-07-03  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
	middle of block statement initially, lower the depth.  Remove
	FIXME comment, not longer valid.  Remove middle of block statement
	detection, no need to do that anymore since we've been using
	`ruby-parse-region' here.

2013-07-02  Jan Djärv  <[email protected]>

	* term/ns-win.el (display-format-alist): Use .* (Bug#14765).

2013-07-01  Katsumi Yamaoka  <[email protected]>

	* wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).

2013-07-01  Juanma Barranquero  <[email protected]>

	* desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
	(desktop-restore-in-current-display): New customization option.
	(desktop--excluded-frame-parameters): Add `font'.
	(desktop--save-frames): Rename from desktop--save-windows.
	(desktop--restore-in-this-display-p): New function.
	(desktop--make-full-frame): Remove unwanted width/height from
	full(width|height) frames.
	(desktop--restore-frames): Rename from desktop--restore-windows.
	Obey desktop-restore-current-display.  Do not delete old frames or
	select a new frame unless we were able to restore at least one frame.

2013-06-30  Michal Nazarewicz  <[email protected]>

	* files.el (find-file-noselect): Simplify conditional expression.

	* remember.el (remember-append-to-file):
	Don't mix `find-buffer-visiting' and `get-file-buffer'.

	Add `remember-notes' function to store random notes across Emacs
	restarts.
	* remember.el (remember-data-file): Add :set callback to affect
	notes buffer (if any).
	(remember-notes): New command.
	(remember-notes-buffer-name, bury-remember-notes-on-kill):
	New defcustoms for the `remember-notes' function.
	(remember-notes-save-and-bury-buffer): New command.
	(remember-notes-mode-map): New variable.
	(remember-mode): New minor mode.
	(remember-notes--kill-buffer-query): New function.
	* startup.el (initial-buffer-choice): Add notes to custom type.

2013-06-30  Eli Zaretskii  <[email protected]>

	* bindings.el (right-char, left-char): Don't call sit-for, this is
	no longer needed.  Use arithmetic comparison only for numerical
	arguments.

	* international/mule-cmds.el (select-safe-coding-system):
	Handle the case of FROM being a string correctly.  (Bug#14755)

2013-06-30  Lars Magne Ingebrigtsen  <[email protected]>

	* net/shr.el (shr-make-table-1): Add a sanity check that allows
	progression on degenerate tables.
	(shr-rescale-image): ImageMagick animated images currently don't work.

2013-06-30  Juanma Barranquero  <[email protected]>

	Some fixes and improvements for desktop frame restoration.
	It is still experimental and disabled by default.
	* desktop.el (desktop--save-windows): Put the selected frame at
	the head of the list.
	(desktop--make-full-frame): New function.
	(desktop--restore-windows): Try to re-select the frame that was
	selected upon saving.  Do not abort if some frames fail to restore,
	just show an error message and continue.  Set up maximized frames
	so they have default non-maximized dimensions.

2013-06-30  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-syntax-propertize-function):
	Don't start heredoc inside a string or comment.

2013-06-29  Eli Zaretskii  <[email protected]>

	* bindings.el (visual-order-cursor-movement): New defcustom.
	(right-char, left-char): Provide visual-order cursor motion by
	calling move-point-visually.  Update the doc strings.

2013-06-28  Kenichi Handa  <[email protected]>

	* international/mule.el (define-coding-system): New coding system
	properties :inhibit-null-byte-detection,
	:inhibit-iso-escape-detection, and :prefer-utf-8.
	(set-buffer-file-coding-system): If :charset-list property of
	CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
	appropriate for setting.

	* international/mule-cmds.el (select-safe-coding-system):
	If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
	multibyte characters, return utf-8 (or one of its siblings).

	* international/mule-conf.el (prefer-utf-8): New coding system.
	(file-coding-system-alist): Use prefer-utf-8 as default for Elisp
	files.

2013-06-28  Ivan Kanis  <[email protected]>

	* net/shr.el (shr-render-region): New function.

	* net/eww.el: Autoload `eww-browse-url'.

2013-06-27  Dmitry Gutov  <[email protected]>

	* emacs-lisp/package-x.el (package-upload-buffer-internal):
	Adapt to `package-desc-version' being a list.
	Use `package--ac-desc-version' to retrieve version from a package
	archive element.

2013-06-27  Juanma Barranquero  <[email protected]>

	New experimental feature to save&restore window and frame setup.
	* desktop.el (desktop-save-windows): New defcustom.
	(desktop--saved-states): New var.
	(desktop--excluded-frame-parameters): New defconst.
	(desktop--filter-frame-parms, desktop--find-frame-in-display)
	(desktop--restore-windows, desktop--save-windows): New functions.
	(desktop-save): Call `desktop--save-windows'.
	(desktop-read): Call `desktop--restore-windows'.

2013-06-27  Lars Magne Ingebrigtsen  <[email protected]>

	* net/shr.el (add-face-text-property): Remove compat definition.

2013-06-27  Stephen Berman  <[email protected]>

	* info.el (Info-try-follow-nearest-node): Move search for footnote
	above search for node name to prevent missing a footnote (bug#14717).

2013-06-27  Stephen Berman  <[email protected]>

	* obsolete/otodo-mode.el: Add obsolescence info to file header.

2013-06-27  Leo Liu  <[email protected]>

	* net/eww.el (eww-read-bookmarks): Check file size.

2013-06-26  Stefan Monnier  <[email protected]>

	* emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
	advice--pending if newdef is nil or an autoload (bug#13820).
	(advice-mapc): New function.

2013-06-26  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
	probably.
	(eww-mode-map): Add a menu bar.
	(eww-add-bookmark): New command.
	(eww-bookmark-mode): New mode and commands.
	(eww-add-bookmark): Remove newlines from the title.
	(eww-bookmark-browse): Don't bug out if it's the only window.

2013-06-26  Glenn Morris  <[email protected]>

	* htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
	(hfy-size): Handle ttys.  (Bug#14668)

	* info-xref.el: Update for Texinfo 5 change in *note format.
	(info-xref-node-re, info-xref-note-re): New constants.
	(info-xref-check-buffer): Use info-xref-note-re.

2013-06-26  Stefan Monnier  <[email protected]>

	* simple.el (set-variable): Use read-from-minibuffer (bug#14710).

	* emacs-lisp/package.el (package--add-to-archive-contents): Add missing
	nil terminate the loop (bug#14718).

2013-06-25  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el: Rework history traversal.  When going forward/back,
	put these actions into the history, too, so that they can be
	replayed.
	(eww-render): Move the history reset to the correct buffer.

2013-06-25  Juri Linkov  <[email protected]>

	* files-x.el (modify-dir-local-variable): Change the header comment
	in the file with directory local variables.  (Bug#14692)

	* files-x.el (read-file-local-variable-value): Add `default'.
	(Bug#14710)

2013-06-25  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el (eww-make-unique-file-name): Create a unique file
	name before saving to entering `y' accidentally asynchronously.

2013-06-25  Ivan Kanis  <[email protected]>

	* net/eww.el (eww-download): New command and keystroke.

2013-06-25  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el (eww-copy-page-url): Change name of command.

	* net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
	be more consistent with Info and dired.

	* net/eww.el (eww-mode-map): Ditto.

2013-06-25  Stefan Monnier  <[email protected]>

	* emacs-lisp/package.el: Use lexical-binding.  Include obsolete
	packages from archives.
	(package-archive-contents): Change format; include obsolete packages.
	(package-desc): Use `dir' to mark builtin packages.
	(package--from-builtin): Set the `dir' field to `builtin'.
	(generated-autoload-file, version-control): Declare.
	(package-compute-transaction): Change first arg and return value to be
	lists of package-descs.  Adjust to new package-archive-contents format.
	(package--add-to-archive-contents): Adjust to new
	package-archive-contents format.
	(package-download-transaction): Arg is now a list of package-descs.
	(package-install): If `pkg' is a package name, pass it as
	a requirement, so it is subject to the usual (e.g. disabled) checks.
	(describe-package): Accept package-desc as well.
	(describe-package-1): Describe a specific package-desc.  Add links to
	other package-descs for the same package name.
	(package-menu-describe-package): Pass the actual package-desc.
	(package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
	works correctly.
	(package-desc-status): New function.
	(package-menu--refresh): New function, extracted
	from package-menu--generate.
	(package-menu--generate): Use it.
	(package-delete): Update package-alist.
	(package-menu-execute): Don't call package-initialize.

	* progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
	progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
	progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
	progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
	progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
	emacs-lisp/cl-macs.el: Neuter the "Version:" header.

2013-06-25  Martin Rudalics  <[email protected]>

	* window.el (window--state-get-1): Workaround for bug#14527.
	http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html

2013-06-25  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el (eww-back-url): Implement the history by stashing all
	the data into a list.
	(eww-forward-url): Allow going forward in the history, too.

2013-06-25  Stefan Monnier  <[email protected]>

	* files-x.el (read-file-local-variable-value): Use read-from-minibuffer
	for values and use read--expression for expressions (bug#14710).
	(read-file-local-variable): Avoid setq.
	(read-file-local-variable-mode): Use minor-mode-list.

2013-06-25  Rüdiger Sonderfeld  <[email protected]>

	* textmodes/bibtex.el (bibtex-generate-url-list): Add support
	for DOI URLs.

2013-06-25  Rüdiger Sonderfeld  <[email protected]>

	* textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
	Update imenu-support when dialect changes.

2013-06-25  Leo Liu  <[email protected]>

	* ido.el (ido-read-internal): Allow forward slash on windows.

2013-06-24  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el (eww): Start of strings is \\`, not ^.

2013-06-24  Ivan Kanis  <[email protected]>

	* net/shr.el (shr-browse-url): Fix interactive spec.

	* net/eww.el (eww): Add a trailing slash to domain names.

2013-06-24  Juanma Barranquero  <[email protected]>

	* faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:[email protected] (bug#14705).

2013-06-24  Lars Magne Ingebrigtsen  <[email protected]>

	* net/shr.el (shr-browse-url): Use an external browser if given a
	prefix.

	* net/eww.el (eww-external-browser): Move to shr.

2013-06-24  Ivan Kanis  <[email protected]>

	* net/eww.el (eww): Work more correctly for file: URLs.
	(eww-detect-charset): Allow quoted charsets.
	(eww-yank-page-url): New command and keystroke.

2013-06-24  Daiki Ueno  <[email protected]>

	* epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
	file name of gpg executable.
	(epg-context-program): New function.
	(epg-context-home-directory): New function.
	(epg-context-set-program): New function.
	(epg-context-set-home-directory): New function.
	(epg--start): Use `epg-context-program' instead of
	'epg-gpg-program'.
	(epg--list-keys-1): Likewise.

2013-06-24  Leo Liu  <[email protected]>

	* ido.el (ido-read-internal): Fix bug#14620.

2013-06-23  Juanma Barranquero  <[email protected]>

	* faces.el (face-documentation): Simplify.
	(read-face-attribute, tty-find-type, x-resolve-font-name):
	Use `string-match-p'.
	(list-faces-display): Use `string-match-p'.  Simplify.
	(face-spec-recalc): Check face to avoid face alias loops.
	(read-color): Use `string-match-p' and non-capturing parenthesis.

2013-06-23  Lars Magne Ingebrigtsen  <[email protected]>

	* net/shr.el (shr-rescale-image): Use the new
	:max-width/:max-height functionality.

2013-06-23  Ivan Kanis  <[email protected]>

	* net/eww.el (eww-search-prefix): New variable.
	(eww): Use it.
	(eww-external-browser): New variable.
	(eww-mode-map): New keystroke.
	(eww-browse-with-external-browser): New command.

	* net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.

2013-06-23  Juanma Barranquero  <[email protected]>

	* emacs-lisp/tabulated-list.el (tabulated-list-init-header):
	Don't skip aligning the next header field when padding is 0;
	otherwise, field width is not respected unless the title is as
	wide as the field.

2013-06-22  Stefan Monnier  <[email protected]>

	* emacs-lisp/package.el (package-el-version): Remove.
	(package-process-define-package): Fix inf-loop.
	(package-install): Allow symbols as arguments again.

2013-06-22  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
	add some more keyword-like methods.
	http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html

2013-06-22  Juanma Barranquero  <[email protected]>

	* bs.el (bs-buffer-show-mark): Make defvar-local.
	(bs-mode): Use setq-local.

	* emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
	(emacs-lock--try-unlocking): Make defvar-local.

2013-06-22  Glenn Morris  <[email protected]>

	* play/cookie1.el (cookie-apropos): Minor simplification.

	* progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.

2013-06-22  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (auto-mode-alist): Do not use
	`regexp-opt', it breaks the build during dumping.

2013-06-21  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-font-lock-keywords):
	Highlight keyword-like methods on Kernel and Module with
	font-lock-builtin-face.
	(auto-mode-alist): Consolidate different entries into one regexp
	and add more *file-s.

2013-06-21  Stephen Berman  <[email protected]>

	* obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.

	* calendar/diary-lib.el (diary-goto-entry-function): New variable.
	(diary-entry): Use it in the action of this button type instead of
	diary-goto-entry.

	* calendar/todo-mode.el: New version.
	(todo-add-category): Append new category to end of file and give
	it the highest number, instead of putting it at the beginning and
	giving it 0.  Incorporate noninteractive functionality.
	(todo-forward-category): Adapt to 1-based category numbering.
	Allow skipping over archived categories.
	(todo-backward-category): Derive from todo-forward-category.
	(todo-backward-item, todo-forward-item): Make noninteractive and
	delegate interactive part to new commands.  Make sensitive to done items.
	(todo-categories): Make value an alist of category names and
	vectors of item counts.
	(todo-category-beg): Make a defconst.
	(todo-category-number): Use 1 instead of 0 as initial value.
	(todo-category-select): Make sensitive to overlays, optional item
	highlighting and done items.
	(todo-delete-item): Make sensitive to overlays and marked and done items.
	(todo-edit-item): Make sensitive to overlays and editing of
	date/time header optional.  Add format checks.
	(todo-edit-multiline): Rename to todo-edit-multiline-item.  Make a
	no-op if point is not on an item.  Advertise using todo-edit-quit.
	(todo-edit-mode): Make sensitive to new format, font-locking, and
	multiple todo files.
	(todo-insert-item, todo-insert-item-here): Derive from
	todo-basic-insert-item and extend functionality.
	(todo-item-end, todo-item-start): Make sensitive to done items.
	(todo-item-string): Don't return text properties.  Restore point.
	(todo-jump-to-category): Make sensitive to multiple todo files and
	todo archives.  Use extended category completion.
	(todo-lower-item, todo-raise-item): Rename to *-priority and
	derive from todo-set-item-priority.
	(todo-mode): Derive from special-mode.  Make sensitive to new
	format, font-locking and multiple todo files.  Make read-only.
	(todo-mode-map): Don't suppress digit keys, so they can supply
	prefix arguments.  Add many new key bindings.
	(todo-prefix): Insert as an overlay instead of file text.
	Change semantics from diary date expression to purely visual mark.
	(todo-print): Rename to todo-print-buffer.  Make buffer display
	features printable.  Remove option to restrict number of items
	printed.  Add option to print to file.
	(todo-print-function): Rename to todo-print-buffer-function.
	(todo-quit): Extend to handle exiting new todo modes.
	(todo-remove-item): Make sensitive to overlays.
	(todo-save): Extend to buffers of filtered items.
	(todo-show): Make sensitive to done items, multiple todo files and
	new todo modes.  Offer to convert legacy todo file before creating
	first new todo file.
	(todo-show-priorities): Rename to todo-top-priorities.
	Change semantics of value 0.
	(todo-top-priorities): Rename to todo-filter-top-priorities,
	derive from todo-filter-items and extend functionality.
	(todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
	and extend functionality to other types of filtered items.
	(todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
	(todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
	(todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
	(todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
	(todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
	(todo-edit-mode-hook, todo-entry-prefix-function)
	(todo-entry-timestamp-initials, todo-file-do, todo-file-done)
	(todo-file-item, todo-file-top, todo-header, todo-initial-setup)
	(todo-initials, todo-insert-threshold, todo-item-string-start)
	(todo-line-string, todo-menu, todo-mode-hook)
	(todo-more-important-p, todo-previous-answer, todo-previous-line)
	(todo-print-priorities, todo-remove-separator)
	(todo-save-top-priorities-too, todo-string-count-lines)
	(todo-string-multiline-p, todo-time-string-format)
	(todo-tmp-buffer-name): Remove.
	(todo-add-file, todo-archive-done-item, todo-choose-archive)
	(todo-convert-legacy-files, todo-copy-item, todo-delete-category)
	(todo-edit-category-diary-inclusion)
	(todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
	(todo-edit-file, todo-edit-item-date-day)
	(todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
	(todo-edit-item-date-month, todo-edit-item-date-to-today)
	(todo-edit-item-date-year, todo-edit-item-diary-inclusion)
	(todo-edit-item-diary-nonmarking, todo-edit-item-header)
	(todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
	(todo-filter-diary-items-multifile, todo-filter-regexp-items)
	(todo-filter-regexp-items-multifile, todo-filter-top-priorities)
	(todo-filter-top-priorities-multifile, todo-find-archive)
	(todo-find-filtered-items-file, todo-go-to-source-item)
	(todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
	(todo-jump-to-archive-category, todo-lower-category)
	(todo-mark-category, todo-marked-item-p, todo-merge-category)
	(todo-move-category, todo-move-item, todo-next-button)
	(todo-next-item, todo-padded-string, todo-powerset)
	(todo-previous-button, todo-previous-item)
	(todo-print-buffer-to-file, todo-raise-category)
	(todo-rename-category, todo-repair-categories-sexp, todo-search)
	(todo-set-category-number, todo-set-item-priority)
	(todo-set-top-priorities-in-category)
	(todo-set-top-priorities-in-file, todo-show-categories-table)
	(todo-sort-categories-alphabetically-or-numerically)
	(todo-sort-categories-by-archived, todo-sort-categories-by-diary)
	(todo-sort-categories-by-done, todo-sort-categories-by-todo)
	(todo-toggle-item-header, todo-toggle-item-highlighting)
	(todo-toggle-mark-item, todo-toggle-prefix-numbers)
	(todo-toggle-view-done-items, todo-toggle-view-done-only)
	(todo-unarchive-items, todo-unmark-category): New commands.
	(todo-absolute-file-name, todo-add-to-buffer-list)
	(todo-adjusted-category-label-length, todo-basic-edit-item-header)
	(todo-basic-insert-item, todo-category-completions)
	(todo-category-number, todo-category-string-matcher-1)
	(todo-category-string-matcher-2, todo-check-filtered-items-file)
	(todo-check-format, todo-clear-matches)
	(todo-comment-string-matcher, todo-convert-legacy-date-time)
	(todo-current-category, todo-date-string-matcher)
	(todo-define-insertion-command, todo-diary-expired-matcher)
	(todo-diary-goto-entry, todo-diary-item-p)
	(todo-diary-nonmarking-matcher, todo-display-as-todo-file)
	(todo-display-categories, todo-display-sorted, todo-done-item-p)
	(todo-done-item-section-p, todo-done-separator)
	(todo-done-string-matcher, todo-files, todo-filter-items)
	(todo-filter-items-1, todo-filter-items-filename, todo-find-item)
	(todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
	(todo-insert-category-line, todo-insert-item-from-calendar)
	(todo-insert-sort-button, todo-insert-with-overlays)
	(todo-insertion-command-name, todo-insertion-key-bindings)
	(todo-label-to-key, todo-longest-category-name-length)
	(todo-make-categories-list, todo-mode-external-set)
	(todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
	(todo-modes-set-3, todo-multiple-filter-files)
	(todo-nondiary-marker-matcher, todo-prefix-overlays)
	(todo-read-category, todo-read-date, todo-read-dayname)
	(todo-read-file-name, todo-read-time)
	(todo-reevaluate-category-completions-files-defcustom)
	(todo-reevaluate-default-file-defcustom)
	(todo-reevaluate-filelist-defcustoms)
	(todo-reevaluate-filter-files-defcustom)
	(todo-reset-and-enable-done-separator, todo-reset-comment-string)
	(todo-reset-done-separator, todo-reset-done-separator-string)
	(todo-reset-done-string, todo-reset-global-current-todo-file)
	(todo-reset-highlight-item, todo-reset-nondiary-marker)
	(todo-reset-prefix, todo-set-categories)
	(todo-set-date-from-calendar, todo-set-show-current-file)
	(todo-set-top-priorities, todo-short-file-name)
	(todo-show-current-file, todo-sort, todo-time-string-matcher)
	(todo-total-item-counts, todo-update-buffer-list)
	(todo-update-categories-display, todo-update-categories-sexp)
	(todo-update-count, todo-validate-name, todo-y-or-n-p):
	New functions.
	(todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
	New major modes.
	(todo-categories, todo-display, todo-edit, todo-faces)
	(todo-filtered): New defgroups.
	(todo-archived-only, todo-button, todo-category-string, todo-date)
	(todo-diary-expired, todo-done, todo-done-sep, todo-comment)
	(todo-mark, todo-nondiary, todo-prefix-string, todo-search)
	(todo-sorted-column, todo-time, todo-top-priority): New deffaces.
	(todo-add-item-if-new-category, todo-always-add-time-string)
	(todo-categories-align, todo-categories-archived-label)
	(todo-categories-category-label, todo-categories-diary-label)
	(todo-categories-done-label, todo-categories-number-separator)
	(todo-categories-todo-label, todo-categories-totals-label)
	(todo-category-completions-files, todo-completion-ignore-case)
	(todo-default-todo-file, todo-diary-nonmarking, todo-directory)
	(todo-done-separator-string, todo-done-string)
	(todo-files-function, todo-filter-done-items, todo-filter-files)
	(todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
	(todo-initial-category, todo-initial-file, todo-item-mark)
	(todo-legacy-date-time-regexp, todo-mode-line-function)
	(todo-nondiary-marker, todo-number-prefix)
	(todo-print-buffer-function, todo-show-current-file)
	(todo-show-done-only, todo-show-first, todo-show-with-done)
	(todo-skip-archived-categories, todo-top-priorities-overrides)
	(todo-undo-item-omit-comment, todo-use-only-highlighted-region)
	(todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
	New defcustoms.
	(todo-category-done, todo-date-pattern, todo-date-string-start)
	(todo-diary-items-buffer, todo-done-string-start)
	(todo-filtered-items-buffer, todo-item-start)
	(todo-month-abbrev-array, todo-month-name-array)
	(todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
	(todo-top-priorities-buffer): New defconsts.
	(todo-archive-mode-map, todo-archives, todo-categories-mode-map)
	(todo-categories-with-marks, todo-category-string-face)
	(todo-comment-face, todo-comment-string, todo-current-todo-file)
	(todo-date-face, todo-date-from-calendar, todo-descending-counts)
	(todo-diary-expired-face, todo-done-face, todo-done-sep-face)
	(todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
	(todo-file-buffers, todo-files, todo-filtered-items-mode-map)
	(todo-font-lock-keywords, todo-global-current-todo-file)
	(todo-insertion-commands, todo-insertion-commands-arg-key-list)
	(todo-insertion-commands-args)
	(todo-insertion-commands-args-genlist)
	(todo-insertion-commands-names, todo-insertion-map)
	(todo-key-bindings-t, todo-key-bindings-t+a)
	(todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
	(todo-multiple-filter-files, todo-multiple-filter-files-widget)
	(todo-nondiary-face, todo-print-buffer, todo-time-face)
	(todo-visited): New variables.

2013-06-21  Glenn Morris  <[email protected]>

	* play/cookie1.el (cookie-apropos): Add optional display argument.
	* obsolete/yow.el (apropos-zippy): Use cookie-apropos.
	(psychoanalyze-pinhead): Use cookie-doctor.

2013-06-21  Juanma Barranquero  <[email protected]>

	* emacs-lisp/package.el (tar-get-file-descriptor)
	(tar--extract): Declare.

2013-06-21  Eduard Wiebe  <[email protected]>

	Extend flymake's warning predicate to be a function (bug#14217).
	* progmodes/flymake.el (flymake-warning-predicate): New.
	(flymake-parse-line): Use it.
	(flymake-warning-re): Make obsolete alias to
	`flymake-warning-predicate'.

2013-06-21  Stefan Monnier  <[email protected]>

	* emacs-lisp/package.el (package-alist): Include obsolete packages.
	(package-obsolete-list): Remove.
	(package-activate): Remove min-version argument.  Add `force' argument.
	Adjust to new package-alist format.
	(package-mark-obsolete): Remove.
	(package-unpack): Force reload of the package's autoloads.
	(package-installed-p): Check builtins if the installed package is not
	recent enough.
	(package-initialize): Don't reset package-obsolete-list.
	Don't specify which package version to activate.
	(package-process-define-package, describe-package-1)
	(package-menu--generate): Adjust to new package-alist format.

2013-06-21  Juanma Barranquero  <[email protected]>

	* allout-widgets.el (allout-widgets-mode-off)
	(allout-widgets-mode-on, allout-widgets-pre-command-business)
	(allout-widgets-post-command-business)
	(allout-widgets-after-copy-or-kill-function)
	(allout-widgets-after-undo-function, allout-test-range-overlaps)
	(allout-decorate-item-and-context)
	(allout-graphics-modification-handler): Fix typos in docstrings.
	(allout-get-or-create-parent-widget): Use `looking-at-p'.

	* cmuscheme.el (scheme-start-file): Doc fix.
	(inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
	(scheme-input-filter): Use `string-match-p'.

	* composite.el (compose-gstring-for-terminal): Fix typo in docstring.

	* dired-x.el: Use Dired consistently in docstrings.

	* dired.el: Use Dired consistently in docstrings.
	(dired-readin, dired-mode): Use `setq-local'.
	(dired-switches-alist): Make defvar-local.
	(dired-buffers-for-dir): Use `zerop'.
	(dired-safe-switches-p, dired-switches-escape-p)
	(dired-insert-old-subdirs, dired-move-to-end-of-filename)
	(dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
	(dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
	(dired-goto-next-nontrivial-file): Use `string-match-p'.
	(dired-align-file, dired-insert-directory, dired-mark-files-in-region)
	(dired-toggle-marks, dired-mark-files-containing-regexp)
	(dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
	(dired-flag-auto-save-files, dired-flag-backup-files):
	Use `looking-at-p'.
	(dired-mark-files-regexp, dired-build-subdir-alist):
	Use `string-match-p', `looking-at-p'.

	* dos-w32.el (untranslated-canonical-name, untranslated-file-p)
	(direct-print-region-helper): Use `string-match-p'.

2013-06-21  Leo Liu  <[email protected]>

	* comint.el (comint-redirect-results-list-from-process):
	Fix infinite loop.

2013-06-21  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el (eww-update-header-line-format): Quote % characters.

2013-06-21  Glenn Morris  <[email protected]>

	* play/cookie1.el (cookie): New custom group.
	(cookie-file): New option.
	(cookie-check-file): New function.
	(cookie): Make it interactive.  Make start and end messages optional.
	Interactively, display the result.  Default to cookie-file.
	(cookie-insert): Default to cookie-file.
	(cookie-snarf): Make start and end messages optional.
	Default to cookie-file.  Use with-temp-buffer.
	(cookie-read): Rename from read-cookie.
	Make start and end messages optional.  Default to cookie-file.
	(cookie-shuffle-vector): Rename from shuffle-vector.  Use dotimes.
	Do not autoload it.
	(cookie-apropos, cookie-doctor): New functions, copied from yow.el
	* obsolete/yow.el (read-zippyism): Use new name for read-cookie.

2013-06-21  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-mode): Backward compatibility fix.

2013-06-21  Glenn Morris  <[email protected]>

	* font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.

2013-06-21  Stefan Monnier  <[email protected]>
	    Daniel Hackney  <[email protected]>

	* emacs-lisp/package.el: Use tar-mode rather than tar executable.
	Consolidate the single-file vs tarball code.
	(package-desc-suffix): New function.
	(package-desc-full-name): Don't bother inlining it.
	(package-load-descriptor): Return the new package-desc.
	(package-mark-obsolete): Remove unused arg `package'.
	(package-unpack): Make it work for single files as well.
	Make it update package-alist.
	(package--make-autoloads-and-stuff): Rename from
	package--make-autoloads-and-compile.  Don't compile any more.
	(package--compile): New function.
	(package-generate-description-file): New function, extracted from
	package-unpack-single.
	(package-unpack-single): Remove.
	(package--with-work-buffer): Add indentation and debugging info.
	(package-download-single): Remove.
	(package-install-from-archive): Rename from package-download-tar, make
	it take a pkg-desc, and make it work for single files as well.
	(package-download-transaction): Simplify.
	(package-tar-file-info): Remove `file' arg.  Rewrite not to use an
	external tar program.
	(package-install-from-buffer): Remove `pkg-desc' argument.
	Use package-tar-file-info for tar-mode buffers.
	(package-install-file): Simplify accordingly.
	(package-archive-base): Change to take a pkg-desc.
	* tar-mode.el (tar--check-descriptor): New function, extracted from
	tar-get-descriptor.
	(tar-get-descriptor): Use it.
	(tar-get-file-descriptor): New function.
	(tar--extract): New function, extracted from tar-extract.
	(tar--extract): Use it.
	* emacs-lisp/package-x.el (package-upload-file): Decode the file, in
	case the summary uses non-ascii.  Adjust to new calling convention of
	package-tar-file-info.

2013-06-21  Leo Liu  <[email protected]>

	* comint.el (comint-redirect-results-list-from-process):
	Fix random delay.  (Bug#14681)

2013-06-21  Juanma Barranquero  <[email protected]>

	* profiler.el (profiler-format-number): Use log, not log10.

2013-06-20  Juanma Barranquero  <[email protected]>

	* term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.

2013-06-20  Stefan Monnier  <[email protected]>

	* emacs-lisp/cl-loaddefs.el: Don't version-control any more.
	* emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
	yet available.
	* Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
	(AUTOGENEL): ... here.
	* emacs-lisp/cl-macs.el (cl--sublis): New function.
	(cl--defsubst-expand): Use it.

2013-06-20  Paul Eggert  <[email protected]>

	* subr.el (log10): Move here from C code, and declare as obsolete.
	All uses of (log10 X) replaced with (log X 10).

2013-06-20  Juanma Barranquero  <[email protected]>

	* emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
	Declare with `defvar-local'.
	(tabulated-list-use-header-line, tabulated-list-entries)
	(tabulated-list-padding, tabulated-list-printer)
	(tabulated-list-sort-key): Declare with `defvar-local'.
	(tabulated-list-init-header, tabulated-list-print-fake-header):
	Use `setq-local'.

2013-06-20  Michael Albinus  <[email protected]>

	* arc-mode.el (archive-mode): Add `archive-write-file' to
	`write-contents-functions' also for remote files.  (Bug#14652)

2013-06-20  Juanma Barranquero  <[email protected]>

	* cus-edit.el (custom-commands): Fix typos.
	(custom-display): Fix tooltip text.
	(custom-magic-alist, custom-filter-face-spec, custom-group-members):
	Fix typos in docstrings.
	(custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
	(custom-unlispify-menu-entry, custom-magic-value-create)
	(custom-add-see-also, custom-group-value-create): Use ?\s.
	(custom-guess-type, customize-apropos, editable-field)
	(custom-face-value-create): Use `string-match-p'.
	(custom-save-variables, custom-save-faces): Use `looking-at-p'.

	* custom.el (custom-load-symbol): Use `string-match-p'.

	* ansi-color.el: Convert to lexical binding.
	(ansi-colors): Fix URL.
	(ansi-color-context, ansi-color-context-region): Use defvar-local.
	(ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
	(ansi-color-make-color-map): Rename local var ansi-color-map to map.

2013-06-19  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el (eww-process-text-input): Display passwords as asterisks.

	* net/shr.el (shr-make-table-1): Protect against invalid column-spans.

2013-06-19  Tom Tromey  <[email protected]>

	* net/eww.el (eww-top-url): Remove.
	(eww-home-url, eww-start-url, eww-contents-url): New defvars.
	(eww-render): Set new variables.  Don't set eww-top-url.
	(eww-handle-link): Handle "prev", "home", and "contents".
	Downcase the rel text.
	(eww-top-url): Choose best top URL.

2013-06-19  Lars Magne Ingebrigtsen  <[email protected]>

	* net/eww.el: Rewrite to implement form elements "by hand" instead of
	relying in widget.el.  Using widget.el leads to too many
	user interface inconsistencies.
	(eww-self-insert): Implement entering commands in text fields.
	(eww-process-text-input): New function to make text input field editing
	work.
	(eww-submit): Rewrite to use the new-style form methods.
	(eww-select-display): Display the correct selected item.
	(eww-change-select): Implement changing the select value.
	(eww-toggle-checkbox): Implement radio/checkboxes.
	(eww-update-field): Fix compilation error.
	(eww-tag-textarea): Implement <textarea>.

	* net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
	we don't shadow mode-specific bindings.

	* net/eww.el (eww-browse-url): Don't push stuff onto history if there's
	nothing to push.

	* net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.

2013-06-19  Glenn Morris  <[email protected]>

	* emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.

2013-06-19  Michael Albinus  <[email protected]>

	* net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
	not needed.

	* net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.

2013-06-19  Lars Magne Ingebrigtsen  <[email protected]>

	* net/browse-url.el (browse-url-browser-function):
	`eww-browse-url' has the right calling signature, `eww' does not.

2013-06-19  Glenn Morris  <[email protected]>

	* emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
	Only eval autoloaded macros.
	(byte-compile-autoload): Only give the macro warning for macros.

	* progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
	(ps-underlined-faces): Declare.

	* progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
	(speedbar-add-supported-extension): Declare.

	* international/titdic-cnv.el (tit-process-header, miscdic-convert):
	Don't include a date stamp in the header of the generated file;
	it leads to needless differences between output files.

2013-06-19  Michael Albinus  <[email protected]>

	* net/secrets.el (secrets-struct-secret-content-type):
	Replace check of introspection data by a test call of "CreateItem".
	Some servers do not offer introspection.

2013-06-19  Stefan Monnier  <[email protected]>

	* electric.el (electric-pair-mode): Improve interaction with
	electric-layout-mode.
	(electric-pair-default-inhibit): Don't assume (eq char (char-before)).
	(electric-pair-syntax): Use text-mode-syntax-table in comments
	and strings.
	(electric-pair--insert): New function.
	(electric-pair-post-self-insert-function): Use it and
	electric--after-char-pos.

2013-06-19  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-help): Fix regexp.

2013-06-18  Lars Magne Ingebrigtsen  <[email protected]>

	* net/shr.el (shr-make-table-1): Implement <td rowspan>.
	(shr-table-horizontal-line): Allow nil as a value, and change the
	default.
	(shr-insert-table-ruler): Respect the nil value.

2013-06-18  Tom Tromey  <tromey@barimba>

	* net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
	New defvars.
	(eww-open-file): New defun.
	(eww-render): Initialize new variables.
	(eww-display-html): Handle "link" and "a".
	(eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
	(eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
	(eww-back-url): Rename from eww-previous-url.
	(eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
	New defuns.

2013-06-18  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
	Distinguish ternary operator tokens from slash symbol and slash
	char literal.

2013-06-18  Juanma Barranquero  <[email protected]>

	Convert symbol prettification into minor mode and global minor mode.

	* progmodes/prog-mode.el (prettify-symbols-alist): Rename from
	`prog-prettify-symbols', and make a local defvar instead of defcustom.
	(prettify-symbols--keywords): Rename from
	`prog-prettify-symbols-alist' and make a local defvar.
	(prettify-symbols--compose-symbol): Rename from
	`prog--prettify-font-lock-compose-symbol'.
	(prettify-symbols--make-keywords): Rename from
	`prog-prettify-font-lock-symbols-keywords' and simplify.
	(prog-prettify-install): Remove.
	(prettify-symbols-mode): New minor mode, based on
	`prog-prettify-install'.
	(turn-on-prettify-symbols-mode): New function.
	(global-prettify-symbols-mode): New globalized minor mode.

	* emacs-lisp/lisp-mode.el (lisp-mode-variables):
	* progmodes/cfengine.el (cfengine3-mode):
	* progmodes/perl-mode.el (perl-mode): Don't call
	`prog-prettify-install'; set `prettify-symbols-alist' instead.

2013-06-18  Juri Linkov  <[email protected]>

	* files-x.el (modify-file-local-variable-message): New function.
	(modify-file-local-variable)
	(modify-file-local-variable-prop-line): Add arg INTERACTIVE
	and call `modify-file-local-variable-message' when it's non-nil.
	(add-file-local-variable, delete-file-local-variable)
	(add-file-local-variable-prop-line)
	(delete-file-local-variable-prop-line): Add arg INTERACTIVE
	and use it.  (Bug#9820)

2013-06-18  Juri Linkov  <[email protected]>

	* emulation/vi.el (vi-shell-op):
	* emulation/vip.el (vip-execute-com, ex-command):
	* emulation/viper-cmd.el (viper-exec-bang):
	* emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
	the call of `shell-command-on-region'.  (Bug#14637)

	* simple.el (shell-command-on-region): Doc fix.

2013-06-18  Stefan Monnier  <[email protected]>

	* emacs-lisp/eieio-custom.el: Remove misleading Version: header
	(bug#14633).

2013-06-18  Glenn Morris  <[email protected]>

	* net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.

	* newcomment.el (comment-search-forward, comment-search-backward):
	Doc fix.  (Bug#14376)

2013-06-18  Juanma Barranquero  <[email protected]>

	* face-remap.el (buffer-face-toggle): Fix typo in docstring.
	(buffer-face-mode-invoke): Doc fix.

2013-06-18  Matthias Meulien  <[email protected]>

	* tabify.el (untabify, tabify): With prefix, apply to entire buffer.
	<http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>

2013-06-18  Glenn Morris  <[email protected]>

	* generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
	Replace obsolete function generic-make-keywords with its expansion.

	* progmodes/python.el (ffap-alist): Declare.

	* textmodes/reftex.el (bibtex-mode-map): Declare.

2013-06-18  Stefan Monnier  <[email protected]>

	* emacs-lisp/package.el: Update package-alist after install (bug#14632).
	(package-unpack, package-unpack-single): Return the pkg-dir.
	(package-download-transaction): Use it to update package-alist.

2013-06-17  Lars Magne Ingebrigtsen  <[email protected]>

	* net/browse-url.el (browse-url-browser-function): Add `eww' as a
	possible choice.

2013-06-17  Juri Linkov  <[email protected]>

	* net/webjump.el (webjump-sample-sites): Add DuckDuckGo.

2013-06-17  Dmitry Gutov  <[email protected]>

	* emacs-lisp/package.el (package-load-descriptor):
	Remove `with-syntax-table' call, `read' doesn't need it.
	http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html

2013-06-17  Juanma Barranquero  <[email protected]>

	* startup.el (command-line): Expand package name returned by
	`package--description-file' (bug#14639).

2013-06-17  Dmitry Gutov  <[email protected]>

	* emacs-lisp/package.el (package-load-descriptor): Do not call
	`emacs-lisp-mode', just use its syntax table.

2013-06-17  Juanma Barranquero  <[email protected]>

	* progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
	`font-lock-extra-managed-props' if any prettifying keyword is added.
	(prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
	(prog-mode): Use `setq-local'.

2013-06-17  Stefan Monnier  <[email protected]>

	* international/characters.el (standard-case-table): Set syntax of ?»
	and ?« to punctuation.

2013-06-16  Juanma Barranquero  <[email protected]>

	* progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
	Save relevant match data before calling `syntax-ppss' (bug#14595).

2013-06-15  Juri Linkov  <[email protected]>

	* files-x.el (modify-file-local-variable-prop-line): Add local
	variables to the end of the existing comment on the first line.
	Use `file-auto-mode-skip' to skip interpreter magic line,
	and also skip XML declaration.

2013-06-15  Stefan Monnier  <[email protected]>

	* startup.el (package--builtin-versions): New var.
	(package-subdirectory-regexp): Remove.
	(package--description-file): Hard code its value instead.

	* emacs-lisp/package.el: Don't activate packages older than builtin.
	(package-obsolete-list): Rename from package-obsolete-alist, and make
	it into a simple list of package-desc.
	(package-strip-version): Remove.
	(package-built-in-p): Use package--builtin-versions.
	(package-mark-obsolete): Simplify.
	(package-process-define-package): Mark it obsolete if older than the
	builtin version.
	(package-handle-response): Use line-end-position.
	(package-read-archive-contents, package--download-one-archive):
	Simplify.
	(package--add-to-archive-contents): Skip if older than the builtin or
	installed version.
	(package-menu-describe-package): Fix last change.
	(package-list-unversioned): New var.
	(package-menu--generate): Use it.

	* emacs-lisp/autoload.el: Manage package--builtin-versions.
	(autoload--insert-text, autoload--insert-cookie-text): New functions.
	(autoload-builtin-package-versions): New variable.
	(autoload-generate-file-autoloads): Use them.
	Remove the list of autoloaded functions/macros from the
	(autoload...) comments.

	* Makefile.in (autoloads): Set autoload-builtin-package-versions.

2013-06-15  Eli Zaretskii  <[email protected]>

	* simple.el (line-move-partial): Don't jump to the next screen
	line as soon as it becomes visible.  Instead, continue enlarging
	the vscroll until the portion of a tall screen line that's left on
	display is about the height of the frame's default font.
	(Bug#14567)

2013-06-15  Glenn Morris  <[email protected]>

	* vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
	compilation-error-regexp-alist void, or local while let-bound.

	* progmodes/make-mode.el (makefile-mode-syntax-table):
	Treat "=" as punctuation.  (Bug#14614)

2013-06-15  Juanma Barranquero  <[email protected]>

	* help-fns.el (describe-variable):
	Add extra line for permanent-local variables.

2013-06-15  Simen Heggestøyl  <[email protected]>  (tiny change)

	* progmodes/scheme.el (scheme-font-lock-keywords-2):
	Add export, import, library.  (Bug#9164)
	(library): Set indent function.

2013-06-14  Glenn Morris  <[email protected]>

	* term/xterm.el (xterm--query):
	Stop after first matching handler.  (Bug#14615)

2013-06-14 Ivan Kanis  <[email protected]>

	Add support for dired in saveplace.
	* dired.el (dired-initial-position-hook): New variable.
	(dired-initial-position): Call hook to place cursor position.
	* saveplace.el (save-place-to-alist): Add dired position.
	(save-place-dired-hook): New function.

2013-06-14  Stefan Monnier  <[email protected]>

	* subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
	through a symbol rather than letrec.

	* emacs-lisp/package.el: Don't recompute dir.  Use pkg-descs more.
	(package-desc): Add `dir' field.
	(package-desc-full-name): New function.
	(package-load-descriptor): Combine the two arguments.  Don't use `load'.
	(package-maybe-load-descriptor): Remove.
	(package-load-all-descriptors): Just call package-load-descriptor.
	(package--disabled-p): New function.
	(package-desc-vers, package-desc-doc): Remove aliases.
	(package--dir): Remove function.
	(package-activate): Check if a package is disabled.
	(package-process-define-package): New function, extracted from
	define-package.
	(define-package): Turn into a place holder.
	(package-unpack-single, package-tar-file-info):
	Use package--description-file.
	(package-compute-transaction): Use package--disabled-p.
	(package-download-transaction): Don't call
	package-maybe-load-descriptor since they're all loaded anyway.
	(package-install): Change argument to be a pkg-desc.
	(package-delete): Use a single pkg-desc argument.
	(describe-package-1): Use package-desc-dir instead of package--dir.
	Use package-desc property instead of package-symbol.
	(package-install-button-action): Adjust accordingly.
	(package--push): Rewrite.
	(package-menu--print-info): Adjust accordingly.  Change the ID format
	to be a pkg-desc.
	(package-menu-describe-package, package-menu-get-status)
	(package-menu--find-upgrades, package-menu-mark-upgrades)
	(package-menu-execute, package-menu--name-predicate):
	Adjust accordingly.
	* startup.el (package--description-file): New function.
	(command-line): Use it.
	* emacs-lisp/package-x.el (package-upload-buffer-internal):
	Use package-desc-version.

	* emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
	(byte-compile-preprocess): Use it.
	(byte-compile-file-form-defalias): Try a bit harder to use macros we
	can't quite recognize.
	(byte-compile-add-to-list): Remove.
	* emacs-lisp/cconv.el (cconv-warnings-only): New function.
	(cconv-closure-convert): Add assertion.

	* emacs-lisp/map-ynp.el: Use lexical-binding.
	(map-y-or-n-p): Remove unused vars `tail' and `object'.
	Factor out some repeated code.

2013-06-13  Stefan Monnier  <[email protected]>

	* subr.el (with-eval-after-load): New macro.
	(eval-after-load): Allow form to be a function.
	take advantage of lexical-binding.
	(do-after-load-evaluation): Use dolist and adjust to new format.
	* simple.el (bad-packages-alist): Use dolist and with-eval-after-load.

2013-06-13  Juri Linkov  <[email protected]>

	* replace.el (perform-replace): Display "symbol " and other search
	modes from `isearch-message-prefix' in the *Help* buffer.

	* isearch.el (isearch-query-replace): Add " symbol" and other
	possible search modes from `isearch-message-prefix' to the prompt.
	(isearch-occur): Use `with-isearch-suspended' to not exit Isearch
	when reading a regexp to collect.

2013-06-13  Juri Linkov  <[email protected]>

	* isearch.el (word-search-regexp): Match whitespace if the search
	string begins or ends in whitespace.  The LAX arg is applied to
	both ends of the search string.  Use `regexp-quote' and explicit
	\< and \> instead of \b.  Use \` and \' instead of ^ and $.
	(isearch-symbol-regexp): Sync with `word-search-regexp' where word
	boundaries are replaced with symbol boundaries, and characters
	between symbols match non-word non-symbol syntax.  (Bug#14602)

2013-06-13  Juri Linkov  <[email protected]>

	* isearch.el (isearch-del-char): Don't exceed the length of
	`isearch-string' by the prefix arg.  (Bug#14563)

2013-06-13  Juri Linkov  <[email protected]>

	* isearch.el (isearch-yank-word, isearch-yank-line)
	(isearch-char-by-name, isearch-quote-char)
	(isearch-printing-char, isearch-process-search-char):
	Add optional count prefix arg.  (Bug#14563)

	* international/isearch-x.el
	(isearch-process-search-multibyte-characters):
	Add optional count prefix arg.

2013-06-13  Stefan Monnier  <[email protected]>

	* subr.el (internal-push-keymap, internal-pop-keymap): New functions.
	(set-temporary-overlay-map): Use them (bug#14095); and take advantage of
	lexical-binding.

2013-06-13  Vitalie Spinu  <[email protected]>

	* subr.el (set-temporary-overlay-map): Add on-exit argument.

2013-06-13  Glenn Morris  <[email protected]>

	* startup.el (tty-handle-args):
	Don't just discard "--" and anything after.  (Bug#14608)

	* emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.

2013-06-13  Michael Albinus  <[email protected]>

	Implement changes in Secret Service API.  Make it backward compatible.
	* net/secrets.el (secrets-struct-secret-content-type): New defonst.
	(secrets-create-item): Use it.  Prefix properties with interface.

2013-06-13  Michael Hoffman  <[email protected]>  (tiny change)

	* term.el (term-suppress-hard-newline): New option.  (Bug#12017)
	(term-emulate-terminal): Respect term-suppress-hard-newline.

2013-06-13  E Sabof  <[email protected]>  (tiny change)

	* image-dired.el (image-dired-dired-toggle-marked-thumbs):
	Only remove a `thumb-file' overlay.  (Bug#14548)

2013-06-12  Grégoire Jadi  <[email protected]>

	* mail/reporter.el (reporter-submit-bug-report):
	Handle missing package-name.  (Bug#14600)

2013-06-12  Rüdiger Sonderfeld  <[email protected]>

	* textmodes/reftex-cite.el (reftex-cite-regexp-hist)
	(reftex-citation-prompt, reftex-default-bibliography)
	(reftex-bib-or-thebib, reftex-get-bibfile-list)
	(reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
	(reftex-bib-sort-author, reftex-bib-sort-year)
	(reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
	(reftex-extract-bib-entries-from-thebibliography)
	(reftex-get-bibkey-default, reftex-get-bib-names)
	(reftex-parse-bibtex-entry, reftex-get-bib-field)
	(reftex-format-bib-entry, reftex-parse-bibitem)
	(reftex-format-bibitem, reftex-do-citation)
	(reftex-figure-out-cite-format, reftex-offer-bib-menu)
	(reftex-restrict-bib-matches, reftex-extract-bib-file)
	(reftex-insert-bib-matches, reftex-format-citation)
	(reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
	(reftex-create-bibtex-file): Add docstrings, mostly by converting
	existing comments into docstrings.

2013-06-12  Xue Fuqiao  <[email protected]>

	* ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.

2013-06-12  Andreas Schwab  <[email protected]>

	* international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
	for auto-save files.

2013-06-12  Glenn Morris  <[email protected]>

	* ido.el (ido-delete-ignored-files): Remove.
	(ido-wide-find-dirs-or-files, ido-make-file-list-1):
	Go back to calling ido-ignore-item-p directly.

2013-06-12  Eyal Lotem  <[email protected]>  (tiny change)

	* ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.

	* ido.el (ido-delete-ignored-files): New function,
	split from ido-make-file-list-1.
	(ido-wide-find-dirs-or-files): Maybe ignore files.  (Bug#13003)
	(ido-make-file-list-1): Use ido-delete-ignored-files.

2013-06-12  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-startup)
	(inferior-octave-completion-table)
	(inferior-octave-track-window-width-change)
	(octave-eldoc-function-signatures, octave-help)
	(octave-find-definition): Use single quoted strings.
	(inferior-octave-startup-args): Change default value.
	(inferior-octave-startup): Do not hard code "-i" and
	"--no-line-editing".
	(inferior-octave-resync-dirs): Add optional arg NOERROR.
	(inferior-octave-directory-tracker): Use it.
	(octave-goto-function-definition): Robustify.
	(octave-help): Support highlighting operators in 'See also'.
	(octave-find-definition): Find subfunctions only in Octave mode.

2013-06-12  Stefan Monnier  <[email protected]>

	* help-fns.el (help-fns--compiler-macro): If the handler function is
	named, then put a link to it.
	* help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
	* emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
	(cl-typep): Use it.
	(cl-eval-when): Simplify debug spec.
	(cl-define-compiler-macro): Use eval-and-compile.  Give a name to the
	compiler-macro function instead of setting `compiler-macro-file'.

2013-06-12  Xue Fuqiao  <[email protected]>

	* vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
	* vc/vc-hooks.el (vc-stay-local): Doc fix.

2013-06-12  Stefan Monnier  <[email protected]>
	    Daniel Hackney  <[email protected]>

	First part of Daniel Hackney's patch to package.el.
	* emacs-lisp/package.el: Use defstruct.
	(package-desc): New, main struct.
	(package--bi-desc, package--ac-desc): New structs, used to describe the
	format in external files.
	(package-desc-vers): Replace with package-desc-version accessor.
	(package-desc-doc): Replace with package-desc-summary accessor.
	(package-activate-1): Remove `package' arg since the pkg-vec now
	includes the name.
	(define-package): Use package-desc-from-define.
	(package-unpack-single): Change file-name arg to be a symbol.
	(package--add-to-archive-contents): Use package-desc-create and new
	accessor functions to package--ac-desc.
	(package-buffer-info, package-tar-file-info): Return a package-desc.
	(package-install-from-buffer): Remove `type' argument.  Change pkg-info
	arg to be a package-desc.
	(package-install-file): Adjust accordingly.  Use \' to match EOS.
	(package--from-builtin): New function.
	(describe-package-1, package-menu--generate): Use it.
	(package--make-autoloads-and-compile): Change name arg to be a symbol.
	(package-generate-autoloads): Idem and return the name of the file.
	* emacs-lisp/package-x.el (package-upload-buffer-internal):
	Change pkg-info arg to be a package-desc.
	Use package-make-ac-desc.
	(package-upload-file): Use \' to match EOS.
	* finder.el (finder-compile-keywords): Use package-make-builtin.

2013-06-11  Stefan Monnier  <[email protected]>

	* vc/vc.el (vc-deduce-fileset): Change error message.
	(vc-read-backend): New function.
	(vc-next-action): Use it.

	* subr.el (function-arity): Remove (mistakenly added) (bug#14590).

	* progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
	(prolog-font-lock-keywords): Use regexp-opt instead.
	Don't manually highlight strings.
	(prolog-mode-variables): Simplify comment-start-skip.
	(prolog-consult-compile): Use display-buffer.  Remove unused old-filter.

	* emacs-lisp/generic.el (generic--normalise-comments)
	(generic-set-comment-syntax, generic-set-comment-vars): New functions.
	(generic-mode-set-comments): Use them.
	(generic-bracket-support): Use setq-local.
	(generic-make-keywords-list): Declare obsolete.

2013-06-11  Glenn Morris  <[email protected]>

	* emacs-lisp/lisp-mode.el (lisp-mode-variables):
	Prettify after setting font-lock-defaults.  (Bug#14574)

2013-06-11  Juanma Barranquero  <[email protected]>

	* replace.el (query-replace, occur-read-regexp-defaults-function)
	(replace-search):
	* subr.el (declare-function, number-sequence, local-set-key)
	(substitute-key-definition, locate-user-emacs-file)
	(with-silent-modifications, split-string, eval-after-load):
	Fix typos, remove unneeded backslashes and reflow some docstrings.

2013-06-11  Stefan Monnier  <[email protected]>

	* international/mule-conf.el (file-coding-system-alist): Use utf-8 as
	default for Elisp files.

2013-06-11  Glenn Morris  <[email protected]>

	* vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
	although define-derived-mode was doing this anyway.  (Bug#14583)

2013-06-10  Juanma Barranquero  <[email protected]>

	* allout.el (allout-encryption-plaintext-sanitization-regexps):
	Fix make-variable-buffer-local call to refer to the correct variable.

2013-06-10  Aidan Gauland  <[email protected]>

	* eshell/em-term.el (eshell-visual-commands)
	(eshell-visual-subcommands, eshell-visual-options):
	Add summary line to docstrings.  Add cross-references.

2013-06-10  Glenn Morris  <[email protected]>

	* epa.el (epa-read-file-name): New function.  (Bug#14510)
	(epa-decrypt-file): Make plain-file optional.  Use epa-read-file-name.

2013-06-09  Aidan Gauland  <[email protected]>

	* eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
	output redirection to be ignored with visual commands.

2013-06-09  Aidan Gauland  <[email protected]>

	* eshell/em-term.el (eshell-visual-command-p): New function.
	(eshell-term-initialize): Move long lambda to separate function
	eshell-visual-command-p.
	* eshell/em-dirs.el (eshell-dirs-initialise):
	* eshell/em-script.el (eshell-script-initialize):
	Add missing #' to lambda.

2013-06-08  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-add-log-current-defun): New function.
	(octave-mode): Set add-log-current-defun-function.
	(octave-goto-function-definition): Do not move point if not found.
	(octave-find-definition): Enhance to try subfunctions first.

2013-06-08  Glenn Morris  <[email protected]>

	* emacs-lisp/bytecomp.el (byte-compile-char-before)
	(byte-compile-backward-char, byte-compile-backward-word):
	Improve previous change, to handle non-explicit nil.

2013-06-07  Stefan Monnier  <[email protected]>

	* emacs-lisp/smie.el: Improve show-paren-mode behavior.
	(smie--opener/closer-at-point): New function.
	(smie--matching-block-data): Use it.  Don't match from right after an
	opener or right before a closer.  Obey smie-blink-matching-inners.
	Don't signal a mismatch for repeated inners like "switch..case..case".

2013-06-07  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-mode): Set comment-use-global-state
	to t.  (Bug#14303)
	(octave-function-header-regexp): Fix.  (Bug#14570)
	(octave-help-mode-finish-hook, octave-help-mode-finish):
	Remove.  Just use temp-buffer-show-hook.

	* newcomment.el (comment-search-backward): Revert last change.
	(Bug#14434)

	* emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.

2013-06-07  Eli Zaretskii  <[email protected]>

	* Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
	through xargs, to avoid failure due to MS-Windows limitations on
	command-line length.

2013-06-06  Glenn Morris  <[email protected]>

	* font-lock.el (lisp-font-lock-keywords-2):
	Treat user-error like error.

	* emacs-lisp/bytecomp.el (byte-compile-char-before)
	(byte-compile-backward-char, byte-compile-backward-word):
	Handle explicit nil arguments.  (Bug#14565)

2013-06-05  Alan Mackenzie  <[email protected]>

	* isearch.el (isearch-allow-prefix): New user option.
	(isearch-other-meta-char): Don't exit isearch when a prefix
	argument is typed whilst `isearch-allow-prefix' is non-nil.
	(Bug#9706)

2013-06-05  Stefan Monnier  <[email protected]>

	* autorevert.el (auto-revert-notify-handler): Use memq.
	Hide assertion failure.

	* skeleton.el: Use cl-lib.
	(skeleton-further-elements): Use defvar-local.
	(skeleton-insert): Use cl-progv.

2013-06-05  Teodor Zlatanov  <[email protected]>

	* progmodes/prog-mode.el (prog-prettify-symbols)
	(prog-prettify-install): Update docstrings.

2013-06-05  Stefan Monnier  <[email protected]>

	* simple.el: Move all the prog-mode code to prog-mode.el.
	* progmodes/prog-mode.el: New file.
	* loadup.el: Add prog-mode.el.

2013-06-05  Teodor Zlatanov  <[email protected]>

	* simple.el (prog-prettify-symbols): Add version.
	(prog-prettify-install): Add convenience function to prettify symbols.

	* progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
	(perl--augmented-font-lock-keywords-1)
	(perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
	variables and use it.

	* progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
	(cfengine3-mode): Remove unneeded variable and use it.

	* emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
	(lisp--augmented-font-lock-keywords-1)
	(lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
	Remove unneeded variables and use it.

2013-06-05  João Távora  <[email protected]>

	* net/tls.el (open-tls-stream): Remove unneeded buffer contents up
	to point when opening the connection.  (Bug#14380)

2013-06-05  Stefan Monnier  <[email protected]>

	* subr.el (load-history-regexp, load-history-filename-element)
	(eval-after-load, after-load-functions, do-after-load-evaluation)
	(eval-next-after-load, display-delayed-warnings)
	(collapse-delayed-warnings, delayed-warnings-hook): Move after the
	definition of save-match-data.
	(overriding-local-map): Remove accidental obsolescence declaration.

	* emacs-lisp/edebug.el (edebug-result): Move before first use.

2013-06-05  Teodor Zlatanov  <[email protected]>

	Generalize symbol prettify support to prog-mode and implement it
	for perl-mode, cfengine3-mode, and emacs-lisp-mode.
	* simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
	(prog--prettify-font-lock-compose-symbol)
	(prog-prettify-font-lock-symbols-keywords): New variables and
	functions to support symbol prettification.
	* emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
	(lisp--augmented-font-lock-keywords-1)
	(lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
	(lisp--prettify-symbols-alist): Implement prettify of lambda.
	* progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
	(cfengine3--prettify-symbols-alist, cfengine3-mode):
	Implement prettify of -> => :: strings.
	* progmodes/perl-mode.el (perl-prettify-symbols)
	(perl--font-lock-compose-symbol)
	(perl--font-lock-symbols-keywords): Move to prog-mode.
	(perl--prettify-symbols-alist): Prettify -> => :: strings.
	(perl-font-lock-keywords-1)
	(perl-font-lock-keywords-2): Remove explicit prettify support.
	(perl--augmented-font-lock-keywords)
	(perl--augmented-font-lock-keywords-1)
	(perl--augmented-font-lock-keywords-2, perl-mode):
	Implement prettify support.

2013-06-05  Leo Liu  <[email protected]>

	Re-implement smie matching block highlight using
	show-paren-data-function.  (Bug#14395)
	* emacs-lisp/smie.el (smie-matching-block-highlight)
	(smie--highlight-matching-block-overlay)
	(smie--highlight-matching-block-lastpos)
	(smie-highlight-matching-block)
	(smie-highlight-matching-block-mode): Remove.
	(smie--matching-block-data-cache): New variable.
	(smie--matching-block-data): New function.
	(smie-setup): Use smie--matching-block-data for
	show-paren-data-function.

	* progmodes/octave.el (octave-mode-menu): Fix.
	(octave-find-definition): Skip garbage lines.

2013-06-05  Stefan Monnier  <[email protected]>

	Fix compilation error with simultaneous dynamic+lexical scoping.
	Add warning when a defvar appears after the first let-binding.
	* emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
	(byte-compile-close-variables): Initialize it.
	(byte-compile--declare-var): New function.
	(byte-compile-file-form-defvar)
	(byte-compile-file-form-define-abbrev-table)
	(byte-compile-file-form-custom-declare-variable): Use it.
	(byte-compile-make-lambda-lexenv): Change the argument.  Simplify.
	(byte-compile-lambda): Share call to byte-compile-arglist-vars.
	(byte-compile-bind): Handle dynamic bindings that shadow
	lexical bindings.
	(byte-compile-unbind): Make arg non-optional.
	(byte-compile-let): Simplify.
	* emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
	(cconv--analyse-function, cconv-analyse-form): Populate it.
	Protect byte-compile-bound-variables to limit the scope of defvars.
	(cconv-analyse-form): Add missing rule for (defvar <foo>).
	Remove unneeded rule for `declare'.

	* emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
	so as to avoid depending on cl-adjoin at run-time.
	* emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.

	* emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
	(macroexp--warn-and-return): Use it.

2013-06-05  Leo Liu  <[email protected]>

	* eshell/esh-mode.el (eshell-mode): Fix key bindings.

2013-06-04  Leo Liu  <[email protected]>

	* progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
	(compilation-auto-jump): Suppress the "Mark set" message to give
	way to exit message.

2013-06-04  Alan Mackenzie  <[email protected]>

	Remove faulty optimisation from indentation calculation.
	* progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
	search limit based on 2000 characters back from indent-point.

2013-06-03  Tassilo Horn  <[email protected]>

	* eshell/em-term.el (cl-lib): Require `cl-lib'.

2013-06-03  Stefan Monnier  <[email protected]>

	* emacs-lisp/lisp.el: Use lexical-binding.
	(lisp--local-variables-1, lisp--local-variables): New functions.
	(lisp--local-variables-completion-table): New var.
	(lisp-completion-at-point): Use it complete let-bound vars.

	* emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
	eagerly (bug#14422).

2013-06-03  Michael Albinus  <[email protected]>

	* autorevert.el (auto-revert-notify-enabled)
	(auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
	(auto-revert-notify-event-p, auto-revert-notify-event-file-name)
	(auto-revert-notify-handler): Handle also gfilenotify.

	* subr.el (file-notify-handle-event): New defun.  Replacing ...
	(inotify-event-p, inotify-handle-event, w32notify-handle-event):
	Remove.

2013-06-03  Juri Linkov  <[email protected]>

	* bindings.el (search-map): Bind `highlight-symbol-at-point' to
	`M-s h .'.  (Bug#14427)

	* hi-lock.el (highlight-symbol-at-point): New alias for the new
	command `hi-lock-face-symbol-at-point'.
	(hi-lock-face-symbol-at-point): New command.
	(hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
	(hi-lock-menu): Add `highlight-symbol-at-point'.
	(hi-lock-mode): Doc fix.

	* isearch.el (isearch-forward-symbol-at-point): New command.
	(search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
	(isearch-highlight-regexp): Add a regexp which matches
	words/symbols for word/symbol mode.

	* subr.el (find-tag-default-bounds): New function with the body
	mostly moved from `find-tag-default'.
	(find-tag-default): Move most code to `find-tag-default-bounds',
	call it and apply `buffer-substring-no-properties' afterwards.

2013-06-03  Tassilo Horn  <[email protected]>

	* eshell/em-term.el (eshell-term-initialize):
	Use `cl-intersection' rather than `intersection'.

2013-06-02  Xue Fuqiao  <[email protected]>

	* vc/log-view.el: Doc fix.
	(log-view-mode-map): Copy keymap from `special-mode-map'.

2013-06-02  Eric Ludlam  <[email protected]>

	* emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
	(eieio-error-unsupported-class-tags, eieio-skip-typecheck)
	(eieio-optimize-primary-methods-flag, eieio-initializing-object)
	(eieio-unbound, eieio-default-superclass)
	(eieio--define-field-accessors, method-static, method-before)
	(method-primary, method-after, method-num-lists)
	(method-generic-before, method-generic-primary)
	(method-generic-after, method-num-slots)
	(eieio-specialized-key-to-generic-key)
	(eieio--check-type, class-v, class-p)
	(eieio-class-name, define-obsolete-function-alias)
	(eieio-class-parents-fast, eieio-class-children-fast)
	(same-class-fast-p, class-constructor, generic-p)
	(generic-primary-only-p, generic-primary-only-one-p)
	(class-option-assoc, class-option, eieio-object-p)
	(class-abstract-p, class-method-invocation-order)
	(eieio-defclass-autoload-map, eieio-defclass-autoload)
	(eieio-class-un-autoload, eieio-defclass)
	(eieio-eval-default-p, eieio-perform-slot-validation-for-default)
	(eieio-add-new-slot, eieio-copy-parents-into-subclass)
	(eieio--defgeneric-init-form, eieio-defgeneric-form)
	(eieio-defgeneric-reset-generic-form)
	(eieio-defgeneric-form-primary-only)
	(eieio-defgeneric-reset-generic-form-primary-only)
	(eieio-defgeneric-form-primary-only-one)
	(eieio-defgeneric-reset-generic-form-primary-only-one)
	(eieio-unbind-method-implementations)
	(eieio--defmethod, eieio--typep)
	(eieio-perform-slot-validation, eieio-validate-slot-value)
	(eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
	(eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
	(eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
	(eieio-slot-name-index, eieio-class-slot-name-index)
	(eieio-set-defaults, eieio-initarg-to-attribute)
	(eieio-attribute-to-initarg, eieio-c3-candidate)
	(eieio-c3-merge-lists, eieio-class-precedence-c3)
	(eieio-class-precedence-dfs, eieio-class-precedence-bfs)
	(eieio-class-precedence-list, eieio-generic-call-methodname)
	(eieio-generic-call-arglst, eieio-generic-call-key)
	(eieio-generic-call-next-method-list)
	(eieio-pre-method-execution-functions, eieio-generic-call)
	(eieio-generic-call-primary-only, eieiomt-method-list)
	(eieiomt-optimizing-obarray, eieiomt-install)
	(eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
	(eieio-generic-form, eieio-defmethod, make-obsolete)
	(eieio-defgeneric, make-obsolete): Move to eieio-core.el.
	(defclass): Remove `eval-and-compile' from macro.
	(call-next-method, shared-initialize): Instead of using
	`scoped-class' variable, use new eieio--scoped-class, and
	eieio--with-scoped-class.
	(initialize-instance): Rename local variable 'scoped-class' to
	'this-class' to remove ambiguitity from old global.

	* emacs-lisp/eieio-core.el: New file.  Derived from key parts of
	eieio.el.
	(eieio--scoped-class-stack): New variable.
	(eieio--scoped-class): New fcn.
	(eieio--with-scoped-class): New scoping macro.
	(eieio-defclass): Use pushnew instead of add-to-list.
	(eieio-defgeneric-form-primary-only-one, eieio-oset-default)
	(eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
	(eieio-generic-call-primary-only, eieiomt-add): Instead of using
	`scoped-class' variable, use new eieio--scoped-class, and
	eieio--with-scoped-class.

	* emacs-lisp/eieio-base.el (cl-lib): Require during compile.

2013-06-02  Tassilo Horn  <[email protected]>

	* eshell/esh-ext.el (eshell-external-command): Pass args to
	`eshell-find-interpreter'.
	(eshell-find-interpreter): Add new second parameter ARGS.

	* eshell/em-script.el (eshell-script-initialize): Add second arg
	to the function added as MATCH to `eshell-interpreter-alist'.

	* eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
	the function added as MATCH to `eshell-interpreter-alist'.

	* eshell/em-term.el (eshell-visual-subcommands): New defcustom.
	(eshell-visual-options): New defcustom.
	(eshell-escape-control-x): Adapt docstring.
	(eshell-term-initialize): Test `eshell-visual-subcommands' and
	`eshell-visual-options' in addition to `eshell-visual-commands'.
	(eshell-exec-visual): Pass args to `eshell-find-interpreter'.

2013-06-01  Fabián Ezequiel Gallina  <[email protected]>

	* progmodes/python.el (python-indent-block-enders): Add break,
	continue and raise keywords.

2013-06-01  Glenn Morris  <[email protected]>

	* pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.

	Plain (f)boundp silences compilation warnings since Emacs 22.1.
	* progmodes/cc-cmds.el (delete-forward-p):
	* progmodes/cc-defs.el (buffer-syntactic-context-depth):
	* progmodes/cc-engine.el (buffer-syntactic-context):
	* progmodes/cc-fonts.el (face-property-instance):
	* progmodes/cc-mode.el (set-keymap-parents):
	* progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
	* progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
	* progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
	* progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
	(lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.

	* progmodes/cc-vars.el (other): Emacs has this widget since
	at least 21.1, so don't (re)define it.

	* eshell/em-cmpl.el (eshell-cmpl-initialize):
	Replace the obsolete alias pcomplete-arg-quote-list.

2013-06-01  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-mode-syntax-table): Give `.'
	punctuation syntax.
	(inferior-octave-minimal-columns)
	(inferior-octave-last-column-width): New variables.
	(inferior-octave-track-window-width-change): New function.
	(inferior-octave-mode): Adjust column width so that Octave output,
	for example from 'ls', can fit into the window nicely.

2013-05-31  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
	Highlight expansions inside regexp literals.

2013-05-31  Glenn Morris  <[email protected]>

	* obsolete/sym-comp.el (symbol-complete):
	Replace obsolete completion-annotate-function.

	* progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.

2013-05-31  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
	New function, checks if point is inside a literal that allows
	expression expansion.
	(ruby-syntax-propertize-expansion): Use it.
	(ruby-syntax-propertize-function): Bind `case-fold-search' to nil
	around the body.

2013-05-30  Juri Linkov  <[email protected]>

	* isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
	to "\M-si".
	(isearch-invisible): New variable.
	(isearch-forward): Doc fix.
	(isearch-mode): Set `isearch-invisible'
	to the value of `search-invisible'.
	(isearch-toggle-case-fold): Doc fix.
	(isearch-toggle-invisible): New command.
	(isearch-query-replace): Let-bind `search-invisible'
	to the value of `isearch-invisible'.
	(isearch-search): Use `isearch-invisible' instead of
	`search-invisible'.  Let-bind `search-invisible'
	to the value of `isearch-invisible'.  (Bug#11378)

2013-05-30  Juri Linkov  <[email protected]>

	* replace.el (perform-replace): Avoid `isearch-range-invisible'
	call when `query-flag' is nil and `search-invisible' is non-nil.
	(Bug#11746)

2013-05-30  Glenn Morris  <[email protected]>

	* progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.

	* progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
	(cc-require): Suppress spurious "noruntime" warnings.
	(cc-require-when-compile): Use fboundp, for sake of compiler.

	* progmodes/cc-mode.el: Move load of cc-vars before that of
	cc-langs (which in turn loads cc-vars), to quieten compiler.

2013-05-30  Stefan Monnier  <[email protected]>

	* paren.el: Simplify the code.
	(show-paren-mode): Always start the timer.
	(show-paren--idle-timer): Rename from show-paren-idle-timer.
	(show-paren--overlay, show-paren--overlay-1): Rename from
	show-paren-overlay and show-paren-overlay-1, and initialize to an
	overlay rather than to nil.
	(show-paren-function): Misc cleanup and simplifications.

2013-05-30  Stefan Monnier  <[email protected]>

	* paren.el (show-paren-data-function): New hook.
	(show-paren--default): New function, extracted from show-paren-function.
	(show-paren-function): Use show-paren-data-function.

2013-05-30  Glenn Morris  <[email protected]>

	* ielm.el (ielm-map, ielm-complete-symbol):
	Use completion-at-point rather than obsolete functions.
	(inferior-emacs-lisp-mode): Doc fix.
	Set completion-at-point-functions, rather than
	comint-dynamic-complete-functions.

	* eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
	(eshell-cmpl-initialize, eshell-complete-parse-arguments):
	Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.

	* image.el (image-animated-p): Tweak definition.

	* net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
	(rlogin-process-connection-type): Tweak default.  Add set-after.
	(rlogin-host): Doc fix.
	(rlogin): Tweak prompt.
	(rlogin-tab-or-complete): Use completion-at-point rather than alias.

	* net/net-utils.el (nslookup-mode-map, ftp-mode-map):
	* progmodes/tcl.el (inferior-tcl-mode-map):
	Use completion-at-point rather than obsolete alias.

	* emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.

	* minibuffer.el (read-file-name-completion-ignore-case):
	Move before completion--in-region, for eager macro expansion.

2013-05-29  Juri Linkov  <[email protected]>

	* replace.el (occur-engine): Rename `globalcount' to `global-lines'
	for total count of matching lines.  Add `global-matches' for total
	count of matches.  Rename `matches' to `lines' for count of
	matching lines.  Add `matches' for count of matches.
	Rename `lines' to `curr-line' for line count.  Rename `prev-lines'
	to `prev-line' for line number of prev match endpt.
	Increment `matches' for every match.  Print the number of
	matching lines in the header.
	(occur-context-lines): Rename `lines' to `curr-line'.
	Rename `prev-lines' to `prev-line'.  (Bug#14017)

2013-05-29  Juri Linkov  <[email protected]>

	* replace.el (perform-replace): Add `skip-read-only-count',
	`skip-filtered-count', `skip-invisible-count' let-bound to 0.
	Increment them for corresponding conditions and report the number
	of skipped occurrences in the final message.  (Bug#11746)
	(query-replace, query-replace-regexp, query-replace-regexp-eval)
	(replace-string, replace-regexp): Doc fix.

2013-05-29  Stefan Monnier  <[email protected]>

	* emacs-lisp/trace.el (trace--read-args): Provide a default.

	* emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
	prog-mode-map (bug#14504).

2013-05-29  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-indent-comment): Tweak regexps.
	(octave-help): Small simplification.

	* emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
	off the highlight first.

2013-05-29  Glenn Morris  <[email protected]>

	* progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
	Handle idlwave-last-system-routine-info-cons-cell being nil.

	* progmodes/idlwave.el (idlwave-scan-user-lib-files)
	(idlwave-write-paths): Simplify via with-temp-buffer.

	* emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
	* emulation/cua-rect.el: Also load cua-base at run time.

	* progmodes/cperl-mode.el (imenu-choose-buffer-index)
	(file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
	(cperl-imenu-on-info): Require imenu.

2013-05-28  Alan Mackenzie  <[email protected]>

	Handle "capitalised keywords" correctly.
	* progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.

2013-05-28  Aidan Gauland  <[email protected]>

	* eshell/em-unix.el: Add -r option to cp.

2013-05-28  Glenn Morris  <[email protected]>

	* vc/vc-arch.el (vc-exec-after): Declare.
	(vc-switches): Autoload.
	* vc/vc-bzr.el: No need to require vc when compiling.
	(vc-exec-after, vc-set-async-update, vc-default-dir-printer)
	(vc-resynch-buffer, vc-dir-refresh): Declare.
	(vc-setup-buffer, vc-switches): Autoload.
	* vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
	(vc-resynch-buffer): Declare.
	(vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
	* vc/vc-dir.el (desktop-missing-file-warning): Declare.
	* vc/vc-git.el (vc-exec-after, vc-set-async-update)
	(grep-read-regexp, grep-read-files, grep-expand-template)
	(vc-dir-refresh): Declare.
	(vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
	* vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
	(vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
	* vc/vc-mtn.el (vc-exec-after): Declare.
	(vc-switches): Autoload.
	* vc/vc-rcs.el (vc-expand-dirs, vc-switches)
	(vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
	(vc-file-tree-walk): Declare.
	* vc/vc-sccs.el (vc-file-tree-walk): Declare.
	(vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
	(vc-tag-precondition, vc-rename-master): Autoload.
	* vc/vc-svn.el (vc-exec-after): Declare.
	(vc-switches, vc-setup-buffer): Autoload.
	* obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
	Autoload.
	(vc-resynch-buffer): Declare.

	* obsolete/fast-lock.el (byte-compile-warnings):
	Don't warn about obsolete features in this obsolete file.

	* progmodes/cc-vars.el (c-macro-names-with-semicolon):
	Move definition before use.

	* play/dunnet.el (byte-compile-warnings): Don't disable them all.
	(dun-unix-verbs): Remove dun-zippy.
	(dun-zippy): Remove function.

	* emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.

2013-05-27  Juri Linkov  <[email protected]>

	* replace.el (replace-search): New function with code moved out
	from `perform-replace'.
	(replace-highlight, replace-dehighlight): Move function definitions
	up closer to `replace-search'.  (Bug#11746)

2013-05-27  Juri Linkov  <[email protected]>

	* replace.el (perform-replace): Ignore invisible matches.
	In addition to checking `query-replace-skip-read-only', also
	filter out matches by calling `run-hook-with-args-until-failure'
	on `isearch-filter-predicates', and also check `search-invisible'
	for t or call `isearch-range-invisible'.
	(replace-dehighlight): Call `isearch-clean-overlays'.  (Bug#11746)

2013-05-27  Juri Linkov  <[email protected]>

	* isearch.el (isearch-filter-predicates): Rename from
	`isearch-filter-predicate'.  Doc fix.  (Bug#11378)
	(isearch-message-prefix): Display text from the property
	`isearch-message-prefix' of the currently active filters.
	(isearch-search): Don't compare `isearch-filter-predicate' with
	`isearch-filter-visible'.  Call `run-hook-with-args-until-failure'
	on `isearch-filter-predicates'.  Also check `search-invisible' for t
	or call `isearch-range-invisible'.
	(isearch-filter-visible): Make obsolete.
	(isearch-lazy-highlight-search):
	Call `run-hook-with-args-until-failure' on
	`isearch-filter-predicates' and use `isearch-range-invisible'.

	* info.el (Info-search): Call `run-hook-with-args-until-failure' on
	`isearch-filter-predicates' instead of `funcall'ing
	`isearch-filter-predicate'.
	(Info-mode): Set `Info-isearch-filter' to
	`isearch-filter-predicates' instead of `isearch-filter-predicate'.

	* dired-aux.el (dired-isearch-filter-predicate-orig):
	Remove variable.
	(dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
	(dired-isearch-filenames-end): Add and remove
	`dired-isearch-filter-filenames' in `isearch-filter-predicates'
	instead of changing the value of `isearch-filter-predicate'.
	Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
	(dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
	Put property `isearch-message-prefix' to "filename " on
	`dired-isearch-filter-filenames'.

	* wdired.el (wdired-change-to-wdired-mode):
	Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
	locally instead of changing `isearch-filter-predicate'.
	(wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.

2013-05-27  Dmitry Gutov  <[email protected]>

	* vc/vc-git.el (vc-git-working-revision): When in detached mode,
	return the commit hash (Bug#14459).  Also set the
	`vc-git-detached' property.
	(vc-git--rev-parse): Extract from `vc-git-previous-revision'.
	(vc-git-mode-line-string): Use the same help-echo format whether
	in detached mode or not, because we know the actual revision now.
	When in detached mode, shorten the revision to 7 chars.

2013-05-27  Stefan Monnier  <[email protected]>

	* emacs-lisp/easy-mmode.el (define-minor-mode):
	* emacs-lisp/derived.el (define-derived-mode): Always defvar the
	mode hook and provide a docstring.

2013-05-27  Alan Mackenzie  <[email protected]>

	Remove spurious syntax-table text properties inserted by C-y.
	* progmodes/cc-mode.el (c-after-change): Also clear hard
	syntax-table property with value nil.

2013-05-27  Michael Albinus  <[email protected]>

	* net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
	when reading the events; the buffer layout shall not be changed.

2013-05-27  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-directory-tracker-resync):
	New variable.
	(inferior-octave-directory-tracker): Automatically re-sync
	default-directory.
	(octave-help): Improve handling of 'See also'.

2013-05-27  Stefan Monnier  <[email protected]>

	* doc-view.el: Minor naming convention tweaks.
	(desktop-buffer-mode-handlers): Don't add to it repeatedly.

	* image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
	even if there's no `display' property yet (bug#14435).

2013-05-25  Eli Zaretskii  <[email protected]>

	* subr.el (unmsys--file-name): Rename from reveal-filename.

	* Makefile.in (custom-deps, finder-data, autoloads)
	($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
	($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
	($(CAL_DIR)/hol-loaddefs.el): All users changed.

2013-05-25  Stefan Monnier  <[email protected]>

	* emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
	error-completion on the first 2 args of condition-case (bug#14446).
	Don't burp at EOB.

2013-05-25  Leo Liu  <[email protected]>

	* comint.el (comint-previous-matching-input): Do not flood the
	*Messages* buffer with trivial messages.

2013-05-25  Stefan Monnier  <[email protected]>

	* progmodes/flymake.el (flymake-nop): Don't return a string.
	(flymake-set-at): Fix typo.

	* simple.el (read--expression): New function, extracted from
	eval-expression.  Set completion-at-point-functions (bug#14465).
	(eval-expression, eval-minibuffer): Use it.

2013-05-25  Xue Fuqiao  <[email protected]>

	* progmodes/flymake.el (flymake-save-buffer-in-file)
	(flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
	(flymake-selected-frame, flymake-log, flymake-ins-after)
	(flymake-set-at, flymake-get-buildfile-from-cache)
	(flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
	(flymake-find-possible-master-files, flymake-save-buffer-in-file):
	Refine the doc string.
	(flymake-get-file-name-mode-and-masks): Reformat.
	(flymake-get-real-file-name-function): Fix a minor bug.

2013-05-24  Juri Linkov  <[email protected]>

	* progmodes/grep.el (grep-mode-font-lock-keywords):
	Support =linenumber= format used by git-grep for lines with
	function names.  (Bug#13549)

2013-05-24  Stefan Monnier  <[email protected]>

	* progmodes/octave.el (octave-smie-rules): Return nil rather than
	0 after a semi-colon; it works better for smie-auto-fill.
	(octave--indent-new-comment-line): New function.
	(octave-indent-new-comment-line): Use it (indirectly).
	(octave-mode): Don't disable smie-auto-fill.  Use add-function to
	modify comment-line-break-function.

	* emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
	(smie-setup): Use add-function to set it.

2013-05-24  Sam Steingold  <[email protected]>

	* sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
	argument (before the `interactive' argument).

2013-05-24  Stefan Monnier  <[email protected]>

	* image-mode.el (image-mode-winprops): Add winprops to
	image-mode-winprops-alist before running
	image-mode-new-window-functions.
	* doc-view.el (doc-view-new-window-function): Don't delay
	doc-view-goto-page via timers (bug#14435).

2013-05-24  Tassilo Horn  <[email protected]>

	* doc-view.el: Integrate with desktop.el.  (Bug#14435)
	(doc-view-desktop-save-buffer): New function.
	(doc-view-restore-desktop-buffer): New function.
	(desktop-buffer-mode-handlers):
	Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
	handler.
	(doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
	`desktop-save-buffer' function.

2013-05-24  Michael Albinus  <[email protected]>

	* net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
	(tramp-gvfs-file-name-handler): Raise a user error when
	`tramp-gvfs-enabled' is nil.
	(top): Register signals only when `tramp-gvfs-enabled' is non-nil.
	Do not raise a user error when loading package.  (Bug#14447)

	* net/xesam.el: Move to obsolete/.

2013-05-24  Glenn Morris  <[email protected]>

	* font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.

	* emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.

	* progmodes/cperl-mode.el (cperl-mode): Use fboundp.
	(Info-find-node, Man-getpage-in-background): Declare.

	* mail/unrmail.el (unrmail):
	Replace obsolete detect-coding-with-priority.

	* net/socks.el (socks-split-string): Use this rather than split-string.
	(socks-nslookup-host): Update for above change.
	(dynamic-choice, s5-dynamic-choice-match)
	(s5-dynamic-choice-match-inline, s5-widget-value-create):
	Comment out unused code.

	* tooltip.el (tooltip-use-echo-area): Warn only on 'set.
	* progmodes/gud.el (gud-gdb-completion-function): Move before use.
	(gud-tooltip-echo-area): Make obsolete.
	(gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.

	* progmodes/js.el (js--optimize-arglist): Declare.

	* progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.

	* progmodes/which-func.el (ediff-window-A, ediff-window-B)
	(ediff-window-C): Declare.

	* obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
	Tweak requires to silence compiler.

	* obsolete/sym-comp.el: No need to load hipper-exp when compiling.
	(he-search-string, he-tried-table, he-expand-list)
	(he-init-string, he-string-member, he-substitute-string)
	(he-reset-string): Declare.

	* obsolete/options.el (list-options): Use custom-variable-p,
	rather than obsolete alias.

2013-05-23  Sam Steingold  <[email protected]>

	* simple.el (shell-command-on-region): Pass the `replace' argument
	down to `call-process-region' to comply with the doc as reported on
	<http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>

2013-05-23  Stefan Monnier  <[email protected]>

	* emacs-lisp/smie.el (smie-indent-forward-token)
	(smie-indent-backward-token): Handle string tokens (bug#14381).

2013-05-23  Rüdiger Sonderfeld  <[email protected]>

	* ielm.el (ielm-menu): New menu.
	(inferior-emacs-lisp-mode): Set comment-start.

2013-05-23  Rüdiger Sonderfeld  <[email protected]>

	* lisp/textmodes/reftex.el (reftex-ref-style-toggle):
	Fix deactivate action.

	* lisp/textmodes/reftex-vars.el (reftex-ref-style-alist):
	Add cleveref macros.

	* lisp/textmodes/reftex-parse.el
	(reftex-locate-bibliography-files): Accept options for
	bibliography commands.
	* lisp/textmodes/reftex-vars.el (reftex-bibliography-commands):
	Add addbibresource.  Basic Biblatex support.

2013-05-23  Michael Albinus  <[email protected]>

	* net/tramp-gvfs.el (top):
	* net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
	when loading package.  (Bug#14447)

2013-05-23  Glenn Morris  <[email protected]>

	* progmodes/js.el: No need to load comint when compiling.
	(ring-insert, comint-send-string, comint-send-input)
	(comint-last-input-end, ido-chop): Declare.

	* vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
	* vc/ediff-mult.el: Adjust requires.
	(ediff-directories-internal, ediff-directory-revisions-internal)
	(ediff-patch-file-internal): Declare.
	* vc/ediff-ptch.el: Adjust requires.
	(ediff-use-last-dir, ediff-buffers-internal): Declare.
	(ediff-find-file): Autoload.
	* vc/ediff-util.el: No need to load ediff when compiling.
	(ediff-regions-internal): Declare.
	* vc/ediff-wind.el: Adjust requires.
	(ediff-compute-toolbar-width): Define when compiling.
	(ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
	* vc/ediff.el: No need to load dired, ediff-ptch when compiling.
	(dired-get-filename, dired-get-marked-files)
	(ediff-last-dir-patch, ediff-patch-default-directory)
	(ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
	(ediff-patch-buffer-internal): Declare.

	* emacs-lisp/checkdoc.el: No need to load ispell when compiling.
	(ispell-process, ispell-buffer-local-words, lm-summary)
	(lm-section-start, lm-section-end): Declare.
	(checkdoc-ispell-init): Simplify.

	* progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
	(he-string-member, he-reset-string, he-substitute-string): Declare.

	* eshell/em-ls.el: Adjust requires.
	(eshell-glob-regexp): Declare.
	* eshell/em-tramp.el: Adjust requires.
	(eshell-parse-command): Autoload.
	* eshell/em-xtra.el: Adjust requires.
	(eshell-parse-command): Autoload.
	* eshell/esh-ext.el: Adjust requires.
	(eshell-parse-command, eshell-close-handles): Autoload.
	* eshell/esh-io.el: Adjust requires.
	(eshell-output-filter): Autoload.
	* eshell/esh-util.el: No need to load tramp when compiling.
	(tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
	Declare.
	(eshell-parse-ange-ls): Require ange-ftp and tramp.
	* eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
	* eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
	* eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
	* eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
	* eshell/esh-opt.el, eshell/esh-proc.el:
	* eshell/esh-var.el: Adjust requires.
	* eshell/eshell.el: Do not require esh-util twice.
	(eshell-add-input-to-history): Declare.
	(eshell-command): Check history module is active before using it.

	* eshell/em-ls.el (eshell-ls-dir): Fix -A handling.

2013-05-22  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-startup): Fix bug#14433.

2013-05-22  Michael Albinus  <[email protected]>

	* autorevert.el (auto-revert-notify-add-watch)
	(auto-revert-notify-handler): Add `attrib' for the inotify case,
	it indicates changes in file modification time.

2013-05-22  Glenn Morris  <[email protected]>

	* emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
	Always delete the autoloaded function from the noruntime and
	unresolved functions lists.

	* allout.el: No need to load epa, epg, overlay when compiling.
	(epg-context-set-passphrase-callback, epg-list-keys)
	(epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
	(epg-key-user-id-list): Declare.

	* emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
	(viper-set-parsing-style-toggling-macro)
	(viper-set-emacs-state-searchstyle-macros):
	Use called-interactively-p on Emacs.
	(viper-looking-back): Make it an obsolete alias.  Update callers.
	* emulation/viper-ex.el: Load viper-keym, not viper-cmd.
	Use looking-back rather than viper-looking-back.
	(viper-tmp-insert-at-eob, viper-enlarge-region)
	(viper-read-string-with-history, viper-register-to-point)
	(viper-append-to-register, viper-change-state-to-vi)
	(viper-backward-char-carefully, viper-forward-char-carefully)
	(viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
	(viper-change-state-to-emacs): Declare.
	* emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
	(viper-change-state-to-insert, viper-change-state-to-vi): Declare.
	* emulation/viper-mous.el: Do not load viper-cmd.
	(viper-backward-char-carefully, viper-forward-char-carefully)
	(viper-forward-word, viper-adjust-window): Declare.

	* vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.

	* progmodes/idlw-help.el (idlwave-help-fontify):
	Use called-interactively-p.

	* term/w32console.el (w32-get-console-codepage)
	(w32-get-console-output-codepage): Declare.

	* dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
	Remove unnecessary declarations.
	(dframe-message): Doc fix.

	* info.el (dframe-select-attached-frame, dframe-current-frame):
	Declare.

	* speedbar.el (speedbar-message): Make it an obsolete alias.
	Update all callers.
	(speedbar-with-attached-buffer)
	(speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
	(speedbar-with-writable): Use backquote.
	* emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
	* emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
	Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
	rather than speedbar- aliases.
	* mail/rmail.el: Load dframe rather than speedbar when compiling.
	(speedbar-make-specialized-keymap, speedbar-insert-button)
	(dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
	(speedbar-do-function-pointer): Declare.
	(rmail-speedbar-button, rmail-speedbar-find-file)
	(rmail-speedbar-move-message):
	Use dframe-with-attached-buffer rather than speedbar- alias.
	* progmodes/gud.el: Load dframe rather than speedbar when compiling.
	(dframe-message, speedbar-make-specialized-keymap)
	(speedbar-add-expansion-list, speedbar-mode-functions-list)
	(speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
	(speedbar-insert-button, dframe-select-attached-frame)
	(dframe-maybee-jump-to-attached-frame)
	(speedbar-change-initial-expansion-list)
	(speedbar-previously-used-expansion-list-name): Declare.
	(gud-speedbar-item-info, gud-gdb-goto-stackframe):
	Use dframe-message, dframe-with-attached-buffer rather than
	speedbar- aliases.
	(gud-sentinel): Silence compiler.
	* progmodes/vhdl-mode.el (speedbar-refresh)
	(speedbar-do-function-pointer, speedbar-add-supported-extension)
	(speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
	(speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
	(speedbar-extension-list-to-regex, speedbar-directory-buttons)
	(speedbar-file-lists, speedbar-make-tag-line)
	(speedbar-line-directory, speedbar-goto-this-file)
	(speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
	(speedbar-delete-subblock, speedbar-position-cursor-on-line)
	(speedbar-make-button, speedbar-reset-scanners)
	(speedbar-files-item-info, speedbar-line-text)
	(speedbar-find-file-in-frame, speedbar-set-timer)
	(dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
	(speedbar-with-writable): Do not (re)define it.
	(vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
	rather than speedbar- alias.

2013-05-21  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-mode-menu): Update and re-organize
	menu items.
	(octave-mode): Tweak fill-nobreak-predicate.
	(inferior-octave-startup): Check process to avoid infinite loop.
	(inferior-octave): Pop to buffer first to show abornmal process
	exit information.

2013-05-21  Glenn Morris  <[email protected]>

	* printing.el (pr-menu-bar): Define when compiling.

2013-05-21  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-auto-fill): Remove.
	(octave-indent-new-comment-line): Improve.
	(octave-mode): Use auto fill mode through
	comment-line-break-function and fill-nobreak-predicate.
	(octave-goto-function-definition): Support DEFUN_DLD.
	(octave-beginning-of-defun): Small tweak.
	(octave-help): Show parent directory.

2013-05-21  Glenn Morris  <[email protected]>

	* files.el (dired-unmark):
	* progmodes/gud.el (gdb-input): Update declarations.

	* calculator.el (electric, ehelp): No need to load when compiling.
	(Electric-command-loop, electric-describe-mode): Declare.

	* doc-view.el (doc-view-current-converter-processes): Move before use.

	* emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
	Move MODE-set-explicitly definition before use.

	* international/mule-diag.el (mule-diag):
	Don't use obsolete window-system-version.

	* mail/feedmail.el (smtpmail): No need to load when compiling.
	(smtpmail-via-smtp, smtpmail-smtp-server): Declare.

	* mail/mail-utils.el (rfc822): No need to load when compiling.
	(rfc822-addresses): Autoload it.
	(mail-strip-quoted-names): Trivial simplification.

	* mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
	(rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.

	* net/snmp-mode.el (tempo): Don't duplicate requires.

	* progmodes/prolog.el (info): No need to load when compiling.
	(comint): Require before shell requires it.
	(Info-goto-node): Autoload it.
	(Info-follow-nearest-node): Declare.
	(prolog-help-info, prolog-goto-predicate-info): No need to require info.

	* textmodes/artist.el (picture-mode-exit): Declare.

	* textmodes/reftex-parse.el (reftex-parse-from-file):
	Trivial rewrite so the compiler can parse it better.

2013-05-20  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-help-mode-map)
	(octave-help-mode-finish-hook): New variables.
	(octave-help-mode, octave-help-mode-finish): New functions.
	(octave-help): Use octave-help-mode.

2013-05-20  Glenn Morris  <[email protected]>

	* format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)

2013-05-19  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
	start at point, so that expansion starting right after opening
	slash in a regexp is recognized.
	(ruby-syntax-before-regexp-re): New defvar, extracted from
	ruby-syntax-propertize-function.  Since the value of this regexp
	is looked up at runtime now, we should be able to turn
	`ruby-syntax-methods-before-regexp' into a defcustom later.
	(ruby-syntax-propertize-function): Split regexp matching into two
	parts, for opening and closing slashes.  That allows us to skip
	over string interpolations and support multiline regexps.
	Don't call `ruby-syntax-propertize-expansions', instead use another rule
	for them, which calls `ruby-syntax-propertize-expansion'.
	(ruby-syntax-propertize-expansions): Move `remove-text-properties'
	call to `ruby-syntax-propertize-function'.
	(ruby-syntax-propertize-expansion): Extracted from
	`ruby-syntax-propertize-expansions'.  Handles one expansion.
	(ruby-syntax-propertize-percent-literal): Leave point right after
	the percent symbol, so that the expression expansion rule can
	propertize the contents.
	(ruby-syntax-propertize-heredoc): Leave point at bol following the
	heredoc openers.
	(ruby-syntax-propertize-expansions): Remove.

2013-05-18  Juri Linkov  <[email protected]>

	* man.el (Man-default-man-entry): Remove `-' from the end
	of the default value.  (Bug#14400)

2013-05-18  Glenn Morris  <[email protected]>

	* comint.el (comint-password-prompt-regexp):
	Allow "password for XXX" where XXX contains colons (eg https://...).

2013-05-18  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
	instead.  Include "--no-gui" to prevent hangs for Octave > 3.7.
	(octave-source-directories): Don't check process.
	(octave-source-directories, octave-find-definition): Doc fix.

2013-05-18  Glenn Morris  <[email protected]>

	* progmodes/vhdl-mode.el (vhdl-mode-map-init):
	Remove backspace/delete bindings.  (Bug#14392)

	* cus-dep.el (custom-make-dependencies): Sort the output.
	(custom-versions-load-alist): Convert comment to doc.

2013-05-17  Leo Liu  <[email protected]>

	* newcomment.el (comment-search-backward): Stricter in finding
	comment start.  (Bug#14303)

	* progmodes/octave.el (octave-comment-start): Remove the SPC char.
	(octave-comment-start-skip): Properly anchored.

2013-05-17  Leo Liu  <[email protected]>

	* emacs-lisp/smie.el (smie-highlight-matching-block-mode):
	Clean up when turned off.  (Bug#14395)
	(smie--highlight-matching-block-overlay): No longer buffer-local.
	(smie-highlight-matching-block): Adjust.

2013-05-17  Paul Eggert  <[email protected]>

	Doc string fix for "nanoseconds" (Bug#14406).
	* emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
	Fix doc string typo that had "nanoseconds" instead of "microseconds".

2013-05-17  Jay Belanger  <[email protected]>

	* calc/calc-units.el (math-extract-units): Preserve powers
	of units.

2013-05-17  Leo Liu  <[email protected]>

	* subr.el (delete-consecutive-dups): New function.
	* ido.el (ido-set-matches-1): Use it.
	* progmodes/octave.el (inferior-octave-completion-table): Use it.
	* ido.el (ido-remove-consecutive-dups): Remove.

2013-05-17  Stefan Monnier  <[email protected]>

	* progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
	(f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
	regexp-opt's `words'.

2013-05-16  Leo Liu  <[email protected]>

	* emacs-lisp/smie.el (smie-matching-block-highlight): New face.
	(smie--highlight-matching-block-overlay)
	(smie--highlight-matching-block-lastpos)
	(smie--highlight-matching-block-timer): New variables.
	(smie-highlight-matching-block): New function.
	(smie-highlight-matching-block-mode): New minor mode.  (Bug#14395)
	(smie-setup): Conditionally enable smie-blink-matching-open.

2013-05-16  Wilson Snyder  <[email protected]>

	Sync with upstream verilog-mode r840.
	* progmodes/verilog-mode.el (verilog-mode-version)
	(verilog-mode-release-date): Update.
	(verilog-auto-lineup, verilog-auto-reset): Doc fixes.
	(verilog-sig-tieoff): Fix string error on
	AUTORESET with colon define, bug594.  Reported by Andrew Hou.
	(verilog-read-decls): Fix parameters confusing
	AUTOINST interfaces, bug565.  Reported by Leith Johnson.

2013-05-16  Eli Zaretskii  <[email protected]>

	* subr.el (reveal-filename): New function.

	* loadup.el: Compute Emacs executable versions on MS-Windows,
	where executables have the .exe extension.  Add a hard link
	emacs-XX.YY.ZZ.exe on MS-Windows.

	* Makefile.in (XARGS_LIMIT): New variable.
	(custom-deps, finder-data, autoloads)
	($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
	($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
	($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
	(compile-main): Limit xargs according to $(XARGS_LIMIT).

2013-05-16  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-indent-defun): Mark obsolete.
	(octave-mode-menu, octave-mode-map): Remove its uses.

2013-05-16  Reto Zimmermann  <[email protected]>

	Sync with upstream vhdl mode v3.34.2.
	* progmodes/vhdl-mode.el: Use `push' throughout.
	(vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
	(vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
	Add IBM & Quartus compiler.  Enhance entry for ADVance MS compiler.
	(vhdl-actual-generic-name): New option to derive actual generic name.
	(vhdl-port-paste-signals): Replace formal by actual generics.
	(vhdl-beautify): New name for old group vhdl-align.  Update users.
	(vhdl-beautify-options): New option.
	(vhdl-last-input-event): New compat alias.  Use throughout.
	(vhdl-goto-line): Replace user level function `goto-line'.
	(vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
	vhdl-fix-statement-buffer.
	(vhdl-create-mode-menu): Add some entries.
	(vhdl-align-region-groups): Respect vhdl-beautify-options.
	(vhdl-align-inline-comment-region-1): Handle "--" inside string.
	(vhdl-fixup-whitespace-region): Handle symbols at EOL.
	(vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
	to force statements on one line.
	(vhdl-remove-trailing-spaces-region):
	New, split from vhdl-remove-trailing-spaces.
	(vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
	Respect vhdl-beautify-options.
	(vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
	(vhdl-update-sensitivity-list): Not add with index if exists without.
	Not include array index with signal.  Ignore keywords in comments.
	(vhdl-get-visible-signals): Regexp tweaks.
	(vhdl-template-component-inst): Handle empty library.
	(vhdl-template-type): Add template for 'enum' type.
	(vhdl-port-paste-generic-map, vhdl-port-paste-constants):
	Use vhdl-replace-string.
	(vhdl-port-paste-signals): Use vhdl-prepare-search-1.
	(vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
	(vhdl-speedbar-initialize): Update for above name change.
	(vhdl-compose-wire-components): Fix in handling of constants.
	(vhdl-error-regexp-emacs-alist): New variable.
	(vhdl-error-regexp-add-emacs): New function;
	adds support for new compile.el (Emacs 22+)
	(vhdl-generate-makefile-1): Change target order for single lib. units.
	Allow use of absolute file names.

2013-05-16  Leo Liu  <[email protected]>

	* simple.el (prog-indent-sexp): Indent enclosing defun.

2013-05-15  Glenn Morris  <[email protected]>

	* cus-start.el (show-trailing-whitespace): Move to editing basics.
	* faces.el (trailing-whitespace): Don't use whitespace-faces group.
	* obsolete/old-whitespace.el (whitespace-faces): Remove group.
	(whitespace-highlight): Move to whitespace group.

	* comint.el (comint-source):
	* pcmpl-linux.el (pcmpl-linux):
	* shell.el (shell-faces):
	* eshell/esh-opt.el (eshell-opt):
	* international/ccl.el (ccl): Remove empty custom groups.

	* completion.el (dynamic-completion-mode):
	* jit-lock.el (jit-lock-debug-mode):
	* minibuffer.el (completion-in-region-mode):
	* type-break.el (type-break-mode-line-message-mode)
	(type-break-query-mode):
	* emulation/tpu-edt.el (tpu-edt-mode):
	* progmodes/subword.el (global-subword-mode, global-superword-mode):
	* progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
	* term/vt100.el (vt100-wide-mode): Specify explicit :group.

	* term/xterm.el (xterm): Change parent group to terminals.

	* master.el (master): Remove empty custom group.
	(master-mode): Remove unused :group argument.
	* textmodes/refill.el (refill): Remove empty custom group.
	(refill-mode): Remove unused :group argument.

	* textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.

	* cus-dep.el: Provide a feature.
	(custom-make-dependencies): Ignore dotfiles (dir-locals).
	Don't mistakenly ignore files whose basenames match a basename
	from preloaded-file-list (eg cedet/ede/simple.el).
	Add a fallback method for getting :group.

2013-05-15  Juri Linkov  <[email protected]>

	* isearch.el (isearch-char-by-name): Rename from
	`isearch-insert-char-by-name'.  Doc fix.
	(isearch-forward): Mention `isearch-char-by-name' in
	the docstring.  (Bug#13348)

	* isearch.el (minibuffer-local-isearch-map): Bind "\r" to
	`exit-minibuffer' instead of
	`isearch-nonincremental-exit-minibuffer'.
	(isearch-edit-string): Remove mention of
	`isearch-nonincremental-exit-minibuffer' from docstring.
	(isearch-nonincremental-exit-minibuffer): Mark as obsolete.
	(isearch-forward-exit-minibuffer)
	(isearch-reverse-exit-minibuffer): Add docstring.  (Bug#13348)

2013-05-15  Stefan Monnier  <[email protected]>

	* loadup.el: Just use unversioned DOC.

	* nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
	literals as extending to EOB.
	(nxml-last-fontify-end): Remove unused variable.
	(nxml-after-change1): Use with-silent-modifications.
	(nxml-extend-after-change-region): Simplify.
	(nxml-extend-after-change-region1): Remove function.
	(nxml-after-change1): Don't adjust for dependent regions.
	(nxml-fontify-matcher): Simplify.
	* nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
	(xmltok-add-dependent): Remove function.
	(xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
	(xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
	(xmltok-scan-prolog-after-processing-instruction-open): Treat
	unclosed <[[, <?, comment, and other literals as extending to EOB.
	* nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
	(rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
	Remove functions.
	(rng-do-some-validation-1): Don't mark dependent regions.
	* nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
	(nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
	(nxml-clear-dependent-regions): Remove functions.
	(nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
	(nxml-ensure-scan-up-to-date):
	Don't clear&mark dependent regions.

2013-05-15  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-goto-function-definition):
	Improve and fix callers.

2013-05-15  Stefan Monnier  <[email protected]>

	* emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
	the setter (bug#14387).

	* progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
	surrounding group (bug#14402).

2013-05-14  Juri Linkov  <[email protected]>

	* subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
	(Bug#14390)

2013-05-14  Glenn Morris  <[email protected]>

	* progmodes/f90.el (f90-imenu-generic-expression):
	Fix typo in 2013-05-08 change.  (Bug#14402)

2013-05-14  Jean-Philippe Gravel  <[email protected]>

	* progmodes/gdb-mi.el (gdb-running, gdb-starting):
	Remove signals for which replies are never received.

2013-05-14  Jean-Philippe Gravel  <[email protected]>

	* progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
	(gdb-handler-alist, gdb-handler-number): Remove variables.
	(gdb-handler-list): New variable.
	(gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
	(gdb-pending-handler-p, gdb-handle-reply)
	(gdb-remove-all-pending-triggers): New functions.
	(gdb-discard-unordered-replies): New defcustom.
	(gdb-handler): New defstruct.
	(gdb-wait-for-pending): Fix invalid backquote.  Use gdb-handler-list.
	instead of gdb-pending-triggers.  Update docstring.
	(gdb-init-1): Remove dead variables.  Initialize gdb-handler-list.
	(gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
	(gdb-var-update-handler, def-gdb-auto-update-trigger)
	(def-gdb-auto-update-handler, gdb-get-changed-registers)
	(gdb-changed-registers-handler, gdb-get-main-selected-frame)
	(gdb-frame-handler): Pending triggers are now automatically managed.
	(def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
	Remove argument.
	(gdb-input): Automatically handles pending triggers.  Update docstring.
	(gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
	(gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
	Update comments.
	(gdb-done-or-error): Now use gdb-handle-reply.

2013-05-14  Jean-Philippe Gravel  <[email protected]>

	* progmodes/gdb-mi.el (gdb-input): Include token numbers in
	gdb-debug-log.

2013-05-14  Glenn Morris  <[email protected]>

	* subr.el (user-emacs-directory-warning): New option.
	(locate-user-emacs-file): Handle non-accessible .emacs.d.  (Bug#13930)

2013-05-14  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-font-lock-keywords): Fix error
	during redisplay.
	(octave-goto-function-definition, octave-find-definition): Minor tweaks.
	(octave-font-lock-texinfo-comment): Fix invalid search bound
	error: wrong side of point.

2013-05-14  Glenn Morris  <[email protected]>

	* progmodes/flymake.el (flymake-xml-program): New option.
	(flymake-xml-init): Use it.

	* term/xterm.el: Provide a feature.

	* term/sup-mouse.el: Move to obsolete/.  Provide a feature.

2013-05-13  Glenn Morris  <[email protected]>

	* cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
	Add compat aliases as a hack workaround.  (Bug#14384)

2013-05-13  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-indent-comment): Fix indentation for
	###, and %!.
	(octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
	C-M-q.
	(octave-comment-start-skip): Include %!.
	(octave-mode): Set comment-start-skip to octave-comment-start-skip.

2013-05-12  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-startup): Store the value
	of __octave_srcdir__ for octave-source-directories.
	(inferior-octave-check-process): New function refactored out of
	inferior-octave-send-list-and-digest.
	(octave-source-directories)
	(octave-find-definition-filename-function): New variables.
	(octave-source-directories)
	(octave-find-definition-default-filename): New functions.
	(octave-find-definition): Improve to find functions implemented in C++.

2013-05-12  Glenn Morris  <[email protected]>

	* calendar/diary-lib.el (diary-outlook-format-1):
	Don't include dayname in the output.  (Bug#14349)

2013-05-11  Glenn Morris  <[email protected]>

	* emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.

	* cus-dep.el (custom-make-dependencies): Only use safe local variables.
	Treat cc-provide like provide.

2013-05-11  Kevin Ryde  <[email protected]>

	* cus-dep.el (custom-make-dependencies):
	Use generated-autoload-load-name for the sake of files such
	such cedet/semantic/bovine/c.el, where the base file name
	is not in load-path.  (Bug#5277)

2013-05-11  Glenn Morris  <[email protected]>

	* dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
	Provide features.

2013-05-11  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-indent-comment): Improve.
	(octave-eldoc-message-style, octave-eldoc-cache): New variables.
	(octave-eldoc-function-signatures, octave-eldoc-function):
	New functions.
	(octave-mode, inferior-octave-mode): Add eldoc support.

2013-05-11  Richard Stallman  <[email protected]>

	* epa.el (epa-decrypt-file): Take output file name as argument
	and read it using `interactive'.

2013-05-11  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-beginning-of-line)
	(octave-end-of-line): Check before using up-list because it jumps
	out of more syntactic contructs since moving to smie.
	(octave-indent-comment): New function.
	(octave-mode): Use it in smie-indent-functions.  (Bug#14350)
	(octave-begin-keywords, octave-end-keywords)
	(octave-reserved-words, octave-smie-bnf-table)
	(octave-smie-rules): Add new keywords from Octave 3.6.4.

2013-05-11  Glenn Morris  <[email protected]>

	* faces.el (internal-face-x-get-resource):
	* frame.el (ns-display-monitor-attributes-list):
	* calc/calc-aent.el (math-to-radians-2):
	* emacs-lisp/package.el (tar-header-name, tar-header-link-type):
	Fix declarations.

	* calc/calc-menu.el: Make it loadable in isolation.

	* net/eudcb-bbdb.el: Make it loadable without bbdb.
	(eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
	(eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
	(eudc-bbdb-query-internal): Require 'bbdb.

	* lpr.el (lpr-headers-switches):
	* emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.

	* progmodes/sql.el (sql-login-params): Fix and improve :type.

	* emulation/edt-mapper.el: In batch mode, error rather than hang.

	* term.el (term-set-escape-char): Make it idempotent.

2013-05-10  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-completion-table):
	No longer a function and all uses changed.  Use cache to speed up
	completion due to bug#11906.
	(octave-beginning-of-defun): Re-write to be more general.

2013-05-10  Glenn Morris  <[email protected]>

	* emacs-lisp/cl-macs.el (cl-loop): Doc fix.

2013-05-09  Stefan Monnier  <[email protected]>

	* comint.el (comint-redirect-send-command-to-process): Use :around
	rather than :override for comint-redirect-filter.
	(comint-redirect-filter): Add the corresponding `orig-filter' argument.
	Call it instead of comint-redirect-original-filter-function (which
	is gone).  Reported by Juanma Barranquero <[email protected]>.

2013-05-09  Jan Djärv  <[email protected]>

	* frame.el (display-monitor-attributes-list): Add NS case.
	(ns-display-monitor-attributes-list): Declare.

2013-05-09  Ulrich Mueller  <[email protected]>

	* descr-text.el (describe-char): Fix %d/%x typo.  (Bug#14360)

2013-05-09  Glenn Morris  <[email protected]>

	* international/fontset.el (vertical-centering-font-regexp):
	Set standard-value.

	* tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.

	* bookmark.el (bookmark-search-delay):
	* cus-start.el (vertical-centering-font-regexp):
	* ps-mule.el (ps-mule-font-info-database-default):
	* ps-print.el (ps-default-fg, ps-default-bg):
	* type-break.el (type-break-good-break-interval):
	* whitespace.el (whitespace-indentation-regexp)
	(whitespace-space-after-tab-regexp):
	* emacs-lisp/testcover.el (testcover-1value-functions)
	(testcover-noreturn-functions, testcover-progn-functions)
	(testcover-prog1-functions):
	* emulation/viper-init.el (viper-emacs-state-cursor-color):
	* eshell/em-glob.el (eshell-glob-translate-alist):
	* play/tetris.el (tetris-tty-colors):
	* progmodes/cpp.el (cpp-face-default-list):
	* progmodes/flymake.el (flymake-allowed-file-name-masks):
	* progmodes/idlw-help.el (idlwave-help-browser-generic-program)
	(idlwave-help-browser-generic-args):
	* progmodes/make-mode.el (makefile-special-targets-list):
	* progmodes/python.el (python-shell-virtualenv-path):
	* progmodes/verilog-mode.el (verilog-active-low-regexp)
	(verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
	(verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
	(verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
	* textmodes/reftex-vars.el (reftex-format-label-function):
	* textmodes/remember.el (remember-diary-file): Fix custom types.

	* jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
	Add :version.

2013-05-09  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-completion-at-point):
	Restore file completion.  (Bug#14300)
	(inferior-octave-startup): Fix incorrect highlighting for the
	first prompt.

2013-05-08  Stefan Monnier  <[email protected]>

	* progmodes/ruby-mode.el: First cut at SMIE support.
	(ruby-use-smie): New var.
	(ruby-smie-grammar): New constant.
	(ruby-smie--bosp, ruby-smie--implicit-semi-p)
	(ruby-smie--forward-token, ruby-smie--backward-token)
	(ruby-smie-rules): New functions.
	(ruby-mode-variables): Setup SMIE if applicable.

2013-05-08  Eli Zaretskii  <[email protected]>

	* simple.el (line-move-visual): Signal beginning/end of buffer
	only if vertical-motion moved less than it was requested.  Avoids
	silly incorrect error messages when there are display strings with
	multiple newlines at EOL.

2013-05-08  Stefan Monnier  <[email protected]>

	* progmodes/vera-mode.el (vera-underscore-is-part-of-word):
	* progmodes/prolog.el (prolog-underscore-wordchar-flag)
	(prolog-char-quote-workaround):
	* progmodes/cperl-mode.el (cperl-under-as-char):
	* progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
	 Mark as obsolete.
	 (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
	their declaration.
	(vhdl-mode-syntax-table-init): Remove.

	* progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
	last change.

	* progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
	syntax for "_".
	(ld-script-font-lock-keywords):
	Change regexps to use things like \_< and \_>.

	* progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
	Change all regexps to use things like \_< and \_>.

	* progmodes/autoconf.el (autoconf-definition-regexp)
	(autoconf-font-lock-keywords, autoconf-current-defun-function):
	Handle a _ with symbol syntax.
	(autoconf-mode): Don't change the syntax-table for imenu and font-lock.

	* progmodes/ada-mode.el (ada-mode-abbrev-table):
	Consolidate declaration.
	(ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
	the declaration.
	(ada-create-syntax-table): Remove.
	(ada-capitalize-word): Don't mess with the syntax of "_" since it
	already has the right syntax nowadays.
	(ada-goto-next-word): Don't change the syntax of "_".

	* font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
	with-wrapper-hook.

2013-05-08  Sam Steingold  <[email protected]>

	* thingatpt.el (thing-at-point): Accept optional second argument
	NO-PROPERTIES to strip the text properties from the return value.
	* net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
	to `thing-at-point' instead of stripping the properties ourselves.
	Also, when `thing-at-point' fails to find a url, prepend "http://"
	to the filename at point on the assumption that the user is
	pointing at something like gnu.org/gnu.

2013-05-08  Juanma Barranquero  <[email protected]>

	* emacs-lisp/bytecomp.el (byte-compile-insert-header):
	* faces.el (crm-separator):
	Silence byte-compiler.

	* progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
	(tool-bar-map): Remove unneeded defvars.

2013-05-08  Leo Liu  <[email protected]>

	Re-work a fix for bug#10994 based on Le Wang's patch.
	* ido.el (ido-remove-consecutive-dups): New helper.
	(ido-completing-read): Use it.
	(ido-chop): Revert fix for bug#10994.

2013-05-08  Adam Spiers  <[email protected]>

	* cus-edit.el (custom-save-variables):
	Pretty-print long values.  (Bug#14187)

2013-05-08  Glenn Morris  <[email protected]>

	* progmodes/m4-mode.el (m4-program): Assume it is in PATH.
	(m4-mode-syntax-table): Init in the defvar.
	(m4-mode-abbrev-table): Let define-derived-mode define it.

2013-05-08  Tom Tromey  <[email protected]>

	* progmodes/m4-mode.el (m4-mode-syntax-table):
	Do not treat "_" as word constituent.  (Bug#14167)

2013-05-07  Glenn Morris  <[email protected]>

	* eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
	Remove explicit eshell-isearch-cancel-map.

	* progmodes/f90.el (f90-smart-end-names): New option.
	(f90-smart-end): Doc fix.
	(f90-end-block-optional-name): New constant.
	(f90-block-match): Respect f90-smart-end-names.

2013-05-07  Stefan Monnier  <[email protected]>

	* progmodes/octave.el (octave-smie-forward-token): Be more careful
	about implicit semi-colons (bug#14218).

2013-05-07  YAMAMOTO Mitsuharu  <[email protected]>

	* frame.el (display-monitor-attributes-list)
	(frame-monitor-attributes): New functions.

2013-05-06  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-syntax-propertize-function): Change
	\'s syntax to escape when inside double-quoted strings.  (Bug#14332)
	(octave-font-lock-keywords): Use octave-operator-regexp.
	(octave-completion-at-point): Rename from
	octave-completion-at-point-function.
	(inferior-octave-directory-tracker): Robustify.
	(octave-text-functions): Remove and fix its uses.  No such things
	any more.

2013-05-06  Stefan Monnier  <[email protected]>

	* emacs-lisp/trace.el (trace--display-buffer): New function.
	(trace-make-advice): Use it.

2013-05-06  Juri Linkov  <[email protected]>

	* emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix.  (Bug#14344)
	(eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
	Doc fix.
	(emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
	in the help string.  (Bug#12985)

2013-05-06  Kelly Dean  <[email protected]>  (tiny change)

	* simple.el (shell-command-on-region): Doc fix.  (Bug#14279)

2013-05-06  Stefan Monnier  <[email protected]>

	* progmodes/perl-mode.el: Add support for here documents.
	(perl-syntax-propertize-function): Match here-doc markers.
	(perl-syntax-propertize-special-constructs): Find their end.
	(perl-imenu-generic-expression): Use [:alnum:].

	* emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
	(advice--add-function): Refresh the advice if already present
	(bug#14317).

2013-05-06  Ivan Andrus  <[email protected]>

	* find-file.el (cc-other-file-alist): Add ".m" for ObjC.  (Bug#14339)

2013-05-06  Glenn Morris  <[email protected]>

	* w32-fns.el (w32-charset-info-alist): Declare.

	* eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
	of its defcustom properties.
	(eshell-cmpl-initialize): No need to load pcomplete.

	* generic-x.el: No need to require comint when compiling.

	* net/eudc-export.el: Make it loadable without bbdb.
	(top-level): Use require rather than load-library.
	(eudc-create-bbdb-record, eudc-bbdbify-phone)
	(eudc-batch-export-records-to-bbdb)
	(eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
	Require bbdb.

2013-05-06  Stefan Monnier  <[email protected]>

	* progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
	(octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
	some tweaks, instead.

2013-05-05  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-font-lock-keywords)
	(octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
	(inferior-octave-send-list-and-digest): Improve error message.
	(octave-mode, inferior-octave-mode): Use setq-local.
	(octave-help): Set info-lookup-mode.

2013-05-05  Richard Stallman  <[email protected]>

	* vc/compare-w.el (compare-windows-whitespace):
	Treat no-break space as whitespace.

	* mail/rmailsum.el (rmail-summary-rmail-update):
	Detect empty summary and don't change selected message.
	(rmail-summary-goto-msg): Likewise.

	* mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
	Doc fixes, rename args.

2013-05-05  Alan Mackenzie  <[email protected]>

	* progmodes/cc-defs.el (c-version): Increment to 5.32.5.

2013-05-05  Juri Linkov  <[email protected]>

	* info.el (Info-read-subfile): Use (point-min) instead of (point)
	to not add the length of the summary segment to the return value.
	(Bug#14125)

2013-05-05  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-strip-ctrl-g)
	(inferior-octave-output-filter): Remove.
	(octave-send-region, inferior-octave-startup): Fix callers.
	(inferior-octave-mode-map): Don't use comint-dynamic-complete.
	(octave-binary-file-extensions): New user variable.
	(octave-find-definition): Confirm if opening binary files.
	(octave-help-file): Use octave-find-definition to get the binary
	confirmation.
	(octave-help): Adjust for octave-help-file change.

2013-05-05  Stefan Monnier  <[email protected]>

	* progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
	Merge the two entries that handle function definitions.
	(pascal--syntax-propertize): New const.
	(pascal-mode): Use it.  Use setq-local.

2013-05-04  Glenn Morris  <[email protected]>

	* calendar/diary-lib.el (diary-from-outlook-function): New variable.
	(diary-from-outlook): Respect diary-from-outlook-function.

2013-05-04  Stefan Monnier  <[email protected]>

	* simple.el (read-expression-map): Use completion-at-point (bug#14255).
	Move the declaration from C.
	(read-minibuffer, eval-minibuffer): Move from C.
	(completion-setup-function): Avoid minibuffer-completion-contents.

2013-05-03  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-font-lock-keywords): Do not
	dehighlight 'end' in comments or strings.
	(octave-completing-read, octave-goto-function-definition):
	New helpers.
	(octave-help-buffer): New user variable.
	(octave-help-file, octave-help-function): New button types.
	(octave-help): New command and bind it to C-h ;.
	(octave-find-definition): New command and bind it to M-.
	(user-error): Alias to error if not defined.

2013-05-02  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-mode-syntax-table): Correct syntax
	for \.  (bug#14332)
	(octave-font-lock-keywords): Include [ and {.

2013-05-02  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-startup-file): Change default.
	(inferior-octave): Remove calling comint-mode and return the buffer.
	(inferior-octave-startup): Cosmetic changes.

2013-05-02  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-syntax-propertize-function):
	Include the case when ' is at line beginning.  (Bug#14336)

2013-05-02  Glenn Morris  <[email protected]>

	* vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
	* desktop.el (vc-dir-mode): Just autoload it here.

2013-05-02  Alan Mackenzie  <[email protected]>

	Eliminate variable c-standard-font-lock-fontify-region-function.
	* progmodes/cc-mode.el
	(c-standard-font-lock-fontify-region-function): Remove.
	(c-font-lock-fontify-region, c-after-font-lock-init): Adapt.

2013-05-01  Leo Liu  <[email protected]>

	* progmodes/octave.el: Compatible with older emacs-24 releases.
	(inferior-octave-has-built-in-variables): Remove.  Built-in
	variables were removed from Octave in 2007.
	(inferior-octave-startup): Fix uses.
	(comint-line-beginning-position): Remove compatibility code for
	emacs 21.

2013-05-01  Juri Linkov  <[email protected]>

	* isearch.el (isearch-forward, isearch-mode): Doc fix.  (Bug#13923)

2013-05-01  Juri Linkov  <[email protected]>

	* comint.el (comint-previous-matching-input): Don't print message
	"History item: %d" when `isearch-mode' is active.
	(comint-history-isearch-message): Print message "History item: %d"
	when `comint-input-ring-index' is not empty and this function is
	called from `isearch-update' with a nil `ellipsis'.  (Bug#13223)

2013-05-01  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-abbrev-table): Remove abbrev
	definitions.  Use completion-at-point to insert keywords.
	(octave-abbrev-start): Remove.
	(inferior-octave-mode, octave-mode): Use :abbrev-table instead.

2013-04-30  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
	change.

2013-04-30  Alan Mackenzie  <[email protected]>

	Handle arbitrarily long C++ member initialisation lists.
	* progmodes/cc-engine.el (c-back-over-member-initializers):
	new function.
	(c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
	(most) member init lists.

2013-04-30  Rüdiger Sonderfeld  <[email protected]>

	* progmodes/octave.el (inferior-octave-prompt-read-only): New user
	variable.

2013-04-30  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-variables): Remove.  No builtin
	variables any more.  All converted to functions.
	(octave-font-lock-keywords, octave-completion-at-point-function):
	Fix uses.
	(octave-font-lock-texinfo-comment): New user variable.
	(octave-texinfo-font-lock-keywords): New variable for texinfo
	comment block.
	(octave-function-comment-block): New face.
	(octave-font-lock-texinfo-comment): New function.
	(octave-mode): Font lock texinfo comment block.

2013-04-29  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
	indexing expression.
	(octave-continuation-string): Do not use \.
	(inferior-octave-complete-impossible): Remove.
	(inferior-octave-completion-table)
	(inferior-octave-completion-at-point): Remove its uses.
	(inferior-octave-startup): completion_matches was introduced to
	Octave in 1996 so safe to assume it.
	(octave-function-file-comment): Improve to follow how Octave does it.
	(octave-update-function-file-comment): Tweak.

2013-04-29  Leo Liu  <[email protected]>

	* progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
	(inferior-octave-startup): Remove inferior-octave-startup-hook.
	(octave-function-file-comment): Fix typo.
	(octave-sync-function-file-names): Use read-char-choice.

2013-04-28  Jay Belanger  <[email protected]>

	* calc/calc.el (math-normalize): Don't set `math-normalize-error'
	to t for the less important warnings.

2013-04-27  Darren Hoo  <[email protected]>  (tiny change)

	* isearch.el (isearch-fail-pos): Check for empty `cmds'.  (Bug#14268)

2013-04-27  Glenn Morris  <[email protected]>

	* vc/log-view.el (log-view-current-entry):
	Treat "---" separator lines as part of the following rev.  (Bug#14169)

2013-04-27  Juri Linkov  <[email protected]>

	* subr.el (read-number): Doc fix about using it by interactive
	code letter `n'.  (Bug#14254)

2013-04-27  Juri Linkov  <[email protected]>

	* desktop.el (desktop-auto-save-timeout): New option.
	(desktop-file-checksum): New variable.
	(desktop-save): Add optional arg `auto-save' and don't auto-save
	if nothing changed.
	(desktop-auto-save-timer): New variable.
	(desktop-auto-save, desktop-auto-save-set-timer): New functions.
	(after-init-hook): Call `desktop-auto-save-set-timer'.
	Suggested by Reuben Thomas <[email protected]> in
	<http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.

2013-04-27  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-function-file-p)
	(octave-skip-comment-forward, octave-function-file-comment)
	(octave-update-function-file-comment): New functions.
	(octave-mode-map): Bind C-c ; to
	octave-update-function-file-comment.
	(octave-mode-menu): Add octave-update-function-file-comment.
	(octave-mode, inferior-octave-mode): Fix doc-string.
	(octave-insert-defun): Conform to Octave's coding convention.
	(Bug#14285)

	* files.el (basic-save-buffer): Don't let errors in
	before-save-hook prevent saving buffer.

2013-04-20  Roland Winkler  <[email protected]>

	* faces.el (read-face-name): Use completing-read if arg multiple
	is nil.

2013-04-27  Ingo Lohmar  <[email protected]>  (tiny change)

	* ls-lisp.el (ls-lisp-insert-directory): If no files are
	displayed, move point to after the totals line.
	See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
	for the details.

2013-04-27  Stefan Monnier  <[email protected]>

	* emacs-lisp/package.el (package-autoload-ensure-default-file):
	Add current dir to the load-path.
	(package-generate-autoloads): Don't rely on
	autoload-ensure-default-file.

2013-04-26  Reuben Thomas  <[email protected]>

	* textmodes/remember.el (remember-store-in-files): Document that
	the file name format is passed to `format-time-string'.

2013-04-26  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-sync-function-file-names): New function.
	(octave-mode): Use it in before-save-hook.

2013-04-26  Stefan Monnier  <[email protected]>

	* emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
	(bug#14274).

	* progmodes/octave.el (octave-smie-forward-token): Properly skip
	\n and comment, even if it's not an implicit ; (bug#14218).

2013-04-26  Glenn Morris  <[email protected]>

	* subr.el (read-number): Once more use `read' rather than
	`string-to-number', to trap non-numeric input.  (Bug#14254)

2013-04-26  Erik Charlebois  <[email protected]>

	* emacs-lisp/syntax.el (syntax-propertize-multiline):
	Use `syntax-multiline' text property consistently instead of
	`font-lock-multiline'.  (Bug#14237)

2013-04-26  Glenn Morris  <[email protected]>

	* emacs-lisp/shadow.el (list-load-path-shadows):
	No longer necessary to check for duplicate simple.el, since
	2012-07-07 change to init_lread to not include installation lisp
	directories in load-path when running uninstalled.  (Bug#14270)

2013-04-26  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-submit-bug-report): Obsolete.
	(octave-mode, inferior-octave-mode): Use setq-local.
	(octave-not-in-string-or-comment-p): Rename to
	octave-in-string-or-comment-p.
	(octave-in-comment-p, octave-in-string-p)
	(octave-in-string-or-comment-p): Replace defsubst with defun.

2013-04-25  Paul Eggert  <[email protected]>

	* Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.

2013-04-25  Bastien Guerry  <[email protected]>

	* textmodes/remember.el (remember-data-directory)
	(remember-directory-file-name-format): Fix custom types.

2013-04-25  Leo Liu  <[email protected]>

	* progmodes/octave.el (octave-completion-at-point-function):
	Make use of inferior octave process.
	(octave-initialize-completions): Remove.
	(inferior-octave-completion-table): New function.
	(inferior-octave-completion-at-point): Use it.
	(octave-completion-alist): Remove.

2013-04-25  Stefan Monnier  <[email protected]>

	* progmodes/opascal.el: Use font-lock and syntax-propertize.
	(opascal-mode-syntax-table): New var.
	(opascal-literal-kind, opascal-is-literal-end)
	(opascal-literal-token-at): Rewrite.
	(opascal--literal-start-re, opascal-font-lock-keywords)
	(opascal--syntax-propertize): New constants.
	(opascal-font-lock-defaults): Adjust.
	(opascal-mode): Use them.  Set comment-<foo> variables as well.
	(delphi-comment-face, opascal-comment-face, delphi-string-face)
	(opascal-string-face, delphi-keyword-face, opascal-keyword-face)
	(delphi-other-face, opascal-other-face): Remove face variables.
	(opascal-save-state): Remove macro.
	(opascal-fontifying-progress-step): Remove constant.
	(opascal--ignore-changes): Remove var.
	(opascal-set-token-property, opascal-parse-next-literal)
	(opascal-is-stable-literal, opascal-complete-literal)
	(opascal-is-literal-start, opascal-face-of)
	(opascal-parse-region, opascal-parse-region-until-stable)
	(opascal-fontify-region, opascal-after-change)
	(opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
	(opascal-debug-parse-region, opascal-debug-parse-window)
	(opascal-debug-parse-buffer, opascal-debug-fontify-window)
	(opascal-debug-fontify-buffer): Remove.
	(opascal-debug-mode-map): Adjust accordingly.

2013-04-25  Leo Liu  <[email protected]>

	Merge octave-mod.el and octave-inf.el into octave.el with some
	cleanups.
	* progmodes/octave.el: New file renamed from octave-mod.el.
	* progmodes/octave-inf.el: Merged into octave.el.
	* progmodes/octave-mod.el: Renamed to octave.el.

2013-04-25  Tassilo Horn  <[email protected]>

	* textmodes/reftex-vars.el
	(reftex-label-ignored-macros-and-environments): New defcustom.

	* textmodes/reftex-parse.el (reftex-parse-from-file): Use it.

2013-04-25  Stefan Monnier  <[email protected]>

	* emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
	(smie-indent-keyword): Improve the check to ensure that the next
	comment is really on the same line.
	(smie-indent-comment): Don't align with a subsequent closer (or eob).

	* progmodes/octave-mod.el (octave-smie-forward-token): Only emit
	semi-colons if the line is not otherwise empty (bug#14218).

2013-04-25  Glenn Morris  <[email protected]>

	* vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.

2013-04-24  Stefan Monnier  <[email protected]>

	* progmodes/opascal.el (opascal-set-token-property): Rename from
	opascal-set-text-properties and only set `token' (bug#14134).
	Suggested by Erik Knowles <[email protected]>.
	(opascal-literal-text-properties): Remove.
	(opascal-parse-next-literal, opascal-debug-unparse-buffer):
	Adjust callers.

2013-04-24  Reuben Thomas  <[email protected]>

	* textmodes/remember.el (remember-handler-functions): Add an
	option for a new handler `remember-store-in-files'.
	(remember-data-directory, remember-directory-file-name-format):
	New options.
	(remember-store-in-files): New function to store remember notes
	as separate files within a directory.

2013-04-24  Magnus Henoch  <[email protected]>

	* progmodes/compile.el (compilation-next-error-function):
	Pass "formats" to compilation-find-file (bug#11777).

2013-04-24  Glenn Morris  <[email protected]>

	* vc/vc-bzr.el (vc-bzr-print-log):
	* vc/vc-hg.el (vc-hg-print-log):
	* vc/vc-svn.el (vc-svn-print-log):
	Fix START-REVISION with LIMIT != 1.  (Bug#14168)

	* vc/vc-bzr.el (vc-bzr-print-log):
	* vc/vc-cvs.el (vc-cvs-print-log):
	* vc/vc-git.el (vc-git-print-log):
	* vc/vc-hg.el (vc-hg-print-log):
	* vc/vc-mtn.el (vc-mtn-print-log):
	* vc/vc-rcs.el (vc-rcs-print-log):
	* vc/vc-sccs.el (vc-sccs-print-log):
	* vc/vc-svn.el (vc-svn-print-log):
	* vc/vc.el (vc-print-log-internal): Doc fixes.

2013-04-23  Glenn Morris  <[email protected]>

	* startup.el (normal-no-mouse-startup-screen, normal-about-screen):
	Remove venerable code attempting to avoid substitute-command-keys.

2013-04-23  Tassilo Horn  <[email protected]>

	* textmodes/reftex-vars.el (reftex-label-regexps):
	Call `reftex-compile-variables' after changes to this variable.

2013-04-23  Stefan Monnier  <[email protected]>

	* jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
	Use lexical-binding.
	(jit-lock-force-redisplay): Use markers, check buffer's continued
	existence and beware narrowed buffers.
	(jit-lock-fontify-now): Adjust call accordingly.

2013-04-22  Stefan Monnier  <[email protected]>

	* minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
	to avoid misleading the user.

2013-04-22  Leo Liu  <[email protected]>

	* info-look.el: Prefer latex2e.info.  (Bug#14240)

2013-04-22  Michael Albinus  <[email protected]>

	Fix pack/unpack coding.  Reported by David Smith <[email protected]>.

	* net/tramp-compat.el (tramp-compat-call-process): Move function ...
	* net/tramp.el (tramp-call-process): ... here.
	(tramp-set-completion-function, tramp-parse-putty):
	* net/tramp-adb.el (tramp-adb-execute-adb-command):
	* net/tramp-gvfs.el (tramp-gvfs-send-command):
	* net/tramp-sh.el (tramp-sh-handle-set-file-times)
	(tramp-set-file-uid-gid, tramp-sh-handle-write-region)
	(tramp-call-local-coding-command): Use `tramp-call-process'
	instead of `tramp-compat-call-process'.

	* net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
	(tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
	(tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
	(tramp-find-inline-compress): Improve traces.
	(tramp-maybe-send-script): Check for Perl binary.
	(tramp-get-inline-coding): Do not redirect STDOUT for local decoding.

2013-04-22  Daiki Ueno  <[email protected]>

	* epg.el (epg-context-pinentry-mode): New function.
	(epg-context-set-pinentry-mode): New function.
	(epg--start): Pass --pinentry-mode option to gpg command.

2013-04-21  Xue Fuqiao  <[email protected]>

	* comint.el (comint-dynamic-complete-functions, comint-mode-map):
	`comint-dynamic-complete' is obsolete since 24.1, replaced by
	`completion-at-point'.  (Bug#13774)

	* startup.el (normal-no-mouse-startup-screen): Bug fix, the
	default key binding for `describe-distribution' has been moved to
	`C-h C-o'.  (Bug#13970)

2013-04-21  Glenn Morris  <[email protected]>

	* vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
	Add doc strings.
	(vc-print-log): Clarify interactive prompt.

2013-04-20  Glenn Morris  <[email protected]>

	* emacs-lisp/bytecomp.el (byte-compile-insert-header):
	No longer include timestamp etc information.

2013-04-20  Roland Winkler  <[email protected]>

	* faces.el (read-face-name): Bug fix, return just one face if arg
	multiple is nil.  (Bug#14209)

2013-04-20  Stefan Monnier  <[email protected]>

	* emacs-lisp/nadvice.el (advice--where-alist): Add :override.
	(remove-function): Autoload.

	* comint.el (comint-redirect-original-filter-function): Remove.
	(comint-redirect-cleanup, comint-redirect-send-command-to-process):
	* vc/vc-cvs.el (vc-cvs-annotate-process-filter)
	(vc-cvs-annotate-command):
	* progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
	* progmodes/prolog.el (prolog-consult-compile):
	* progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
	Use add/remove-function instead.
	* progmodes/gud.el (gud-tooltip-original-filter): Remove.
	(gud-tooltip-process-output, gud-tooltip-tips):
	Use add/remove-function instead.
	* progmodes/xscheme.el (xscheme-previous-process-state): Remove.
	(scheme-interaction-mode, exit-scheme-interaction-mode):
	Use add/remove-function instead.

	* vc/vc-dispatcher.el: Use lexical-binding.
	(vc--process-sentinel): Rename from vc-process-sentinel.
	Change last arg to be the code to run.  Don't use vc-previous-sentinel
	and vc-sentinel-commands any more.
	(vc-exec-after): Allow code to be a function.  Use add/remove-function.
	(compilation-error-regexp-alist, view-old-buffer-read-only): Declare.

2013-04-19 Masatake YAMATO  <[email protected]>

	* progmodes/sh-script.el (sh-imenu-generic-expression):
	Handle function names with a single character.   (Bug#14111)

2013-04-19  Dima Kogan  <[email protected]>    (tiny change)

	* progmodes/gud.el (gud-perldb-marker-filter): Understand position info
	for subroutines defined in an eval (bug#14182).

2013-04-19  Thierry Volpiatto  <[email protected]>

	* bookmark.el (bookmark-completing-read): Improve handling of empty
	string (bug#14176).

2013-04-19  Stefan Monnier  <[email protected]>

	* vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.

2013-04-19  Fabián Ezequiel Gallina  <[email protected]>

	New faster Imenu implementation (bug#14058).
	* progmodes/python.el:
	(python-imenu-prev-index-position):
	(python-imenu-format-item-label-function)
	(python-imenu-format-parent-item-label-function)
	(python-imenu-format-parent-item-jump-label-function):
	New vars.
	(python-imenu-format-item-label)
	(python-imenu-format-parent-item-label)
	(python-imenu-format-parent-item-jump-label)
	(python-imenu--put-parent, python-imenu--build-tree)
	(python-imenu-create-index, python-imenu-create-flat-index)
	(python-util-popn): New functions.
	(python-mode): Set imenu-create-index-function to
	python-imenu-create-index.

2013-04-18  Stefan Monnier  <[email protected]>

	* winner.el (winner-active-region): Use region-active-p, activate-mark
	and deactivate-mark (bug#14225).

	* simple.el (deactivate-mark): Don't inline it.

2013-04-18  Michael Albinus  <[email protected]>

	* net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".

2013-04-18  Tassilo Horn  <[email protected]>

	* files.el (auto-mode-alist): Delete OpenDocument and StarOffice
	file extensions from the archive-mode entry in order to prefer
	doc-view-mode-maybe with archive-mode as fallback (bug#14188).

2013-04-18  Leo Liu  <[email protected]>

	* bindings.el (help-event-list): Add ?\?.

2013-04-18  Stefan Monnier  <[email protected]>

	* subr.el (with-wrapper-hook): Declare obsolete.
	* simple.el (filter-buffer-substring-function): New hook.
	(filter-buffer-substring): Use it.
	(filter-buffer-substring-functions): Mark obsolete.
	* minibuffer.el (completion-in-region-function): New hook.
	(completion-in-region): Use it.
	(completion-in-region-functions): Mark obsolete.
	* mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
	* abbrev.el (abbrev-expand-function): New hook.
	(expand-abbrev): Use it.
	(abbrev-expand-functions): Mark obsolete.
	* emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
	and :filter-return.

2013-04-17  Fabián Ezequiel Gallina  <[email protected]>

	* progmodes/python.el (python-nav--syntactically): Fix cornercases
	and do not care about match data.

2013-04-17  Stefan Monnier  <[email protected]>

	* emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
	completion tables when completing error conditions and
	`declare' arguments.
	(lisp-complete-symbol, field-complete): Mark as obsolete.
	(check-parens): Unmatched parens are user errors.
	* minibuffer.el (minibuffer-completion-contents): Mark as obsolete.

2013-04-17  Michal Nazarewicz  <[email protected]>

	* textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
	command changed buffer (ie. `flyspell-pre-buffer' is not current
	buffer), which prevents making decisions based on invalid value of
	`flyspell-pre-point' in the wrong buffer.  Most notably, this used to
	cause an error when `flyspell-pre-point' was nil after switching
	buffers.
	(flyspell-post-command-hook): No longer needs to change buffers when
	checking pre-word.  While at it remove unnecessary progn.

2013-04-17  Nicolas Richard  <[email protected]>  (tiny change)

	* textmodes/ispell.el (ispell-add-per-file-word-list):
	Fix `flyspell-correct-word-before-point' error when accepting
	words and `coment-padding' is an integer by using
	`comment-normalize-vars' (Bug #14214).

2013-04-17  Fabián Ezequiel Gallina  <[email protected]>

	New defun movement commands.
	* progmodes/python.el (python-nav--syntactically)
	(python-nav--forward-defun, python-nav-backward-defun)
	(python-nav-forward-defun): New functions.

2013-04-17  Fabián Ezequiel Gallina  <[email protected]>

	* progmodes/python.el (python-syntax--context-compiler-macro): New defun.
	(python-syntax-context): Use named compiler-macro for backwards
	compatibility with Emacs 24.x.

2013-04-17  Leo Liu  <[email protected]>

	* progmodes/octave-mod.el (octave-mode-map): Fix key binding to
	octave-hide-process-buffer.

2013-04-17  Stefan Monnier  <[email protected]>

	* vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
	(bug#14216).

2013-04-17  Jean-Philippe Gravel  <[email protected]>

	* progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
	Fix adjustment of offset when receiving incomplete responses from GDB
	(bug#14129).

2013-04-16  Stefan Monnier  <[email protected]>

	* progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
	python-mode-abbrev-table.
	(python-skeleton-define): Adjust accordingly.
	(python-mode-abbrev-table): New table that inherits from it so that
	python-skeleton-autoinsert does not affect non-skeleton abbrevs.

	* abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
	(abbrev-symbol): Use it.
	(abbrev--before-point): Use it since we already handle inheritance.

2013-04-16  Leo Liu  <[email protected]>

	* progmodes/octave-mod.el (octave-mode-map): Remove redundant key
	binding to info-lookup-symbol.

2013-04-16  Juanma Barranquero  <[email protected]>

	* minibuffer.el (completion--twq-all):
	* term/ns-win.el (ns-initialize-window-system):
	* term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.

2013-04-16  Stefan Monnier  <[email protected]>

	* emacs-lisp/nadvice.el (add-function): Default simple vars to their
	global bindings.

	* doc-view.el (doc-view-start-process): Handle url-handler directories.

2013-04-15  Dmitry Gutov  <[email protected]>

	* progmodes/ruby-mode.el (ruby-beginning-of-defun)
	(ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
	to nil.
	(ruby-end-of-defun): Remove the unused arg, change the docstring
	to reflect that this function is only used as the value of
	`end-of-defun-function'.
	(ruby-beginning-of-defun): Remove "top-level" from the docstring,
	to reflect an earlier change that beginning/end-of-defun functions
	jump between methods in a class definition, as well as top-level
	functions.

2013-04-15  Stefan Monnier  <[email protected]>

	* minibuffer.el (minibuffer-complete): Don't just scroll
	a *Completions* that's been iconified.
	(minibuffer-force-complete): Make sure repetitions do cycle when going
	through completion-in-region -> minibuffer-complete.

2013-04-15  Alan Mackenzie  <[email protected]>

	Correct the placement of c-cpp-delimiters when there're #s not at
	col 0.

	* progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
	place a submatch around the #.
	* progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
	Start a search at BOL.  Put the c-cpp-delimiter category text propertiy
	on the #, not BOL.

2013-04-15  Stefan Monnier  <[email protected]>

	* emacs-lisp/nadvice.el: Properly test names when adding advice.
	(advice--member-p): New arg `name'.
	(advice--add-function, advice-member-p): Use it (bug#14202).

2013-04-15  Filipp Gunbin  <[email protected]>

	Reformulate java imenu-generic-expression.
	The old expression contained ill formed regexps.

	* progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
	(cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
	(cc-imenu-java-method-arg-regexp): New defconsts.
	(cc-imenu-java-build-type-args-regex): New defun.
	(cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
	handling of spaces in the regexp.

2013-03-15  Agustín Martín Domingo  <[email protected]>

	* textmodes/ispell.el (ispell-command-loop): Remove
	flyspell highlight of a word when ispell accepts it (bug #14178).

2013-04-15  Michael Albinus  <[email protected]>

	* net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
	uses code from the previous `ange-ftp-run-real-handler'.
	(ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
	only in case that function exist.  This is needed for proper
	unloading of Tramp.

2013-04-15  Tassilo Horn  <[email protected]>

	* textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.

	* textmodes/reftex.el (reftex-compile-variables): Use it.

2013-04-14  Stefan Monnier  <[email protected]>

	* files.el (normal-mode): Only use default major-mode if no other mode
	was specified.

	* emacs-lisp/trace.el (trace-values): New function.

	* files.el: Allow : in local variables (bug#14089).
	(hack-local-variable-regexp): New var.
	(hack-local-variables-prop-line, hack-local-variables): Use it.

2013-04-13  Roland Winkler  <[email protected]>

	* textmodes/bibtex.el (bibtex-search-entries): Bug fix.  Use match
	data before it gets modified by bibtex-beginning-of-entry.

2013-04-13  Roland Winkler  <[email protected]>

	* textmodes/bibtex.el (bibtex-url): Doc fix.

2013-04-13  Roland Winkler  <[email protected]>

	* textmodes/bibtex.el (bibtex-initialize): If the current buffer
	does not visit a BibTeX file, exclude it from the list of buffers
	returned by bibtex-initialize.

2013-04-13  Stephen Berman  <[email protected]>

	* window.el (split-window): Remove interactive form, since as a
	command this function is a special case of split-window-below.
	Correct doc string.

2013-04-12  Roland Winkler  <[email protected]>

	* faces.el (read-face-name): Do not override value of arg default.
	Allow single faces and strings as default values.  Remove those
	elements from return value that are not faces.
	(describe-face): Simplify.
	(face-at-point): New optional args thing and multiple so that this
	function can provide the same functionality previously provided by
	read-face-name.
	(make-face-bold, make-face-unbold, make-face-italic)
	(make-face-unitalic, make-face-bold-italic, invert-face)
	(modify-face, read-face-and-attribute): Use face-at-point.

	* cus-edit.el (customize-face, customize-face-other-window)
	* cus-theme.el (custom-theme-add-face)
	* face-remap.el (buffer-face-set)
	* facemenu.el (facemenu-set-face): Use face-at-point.

2013-04-12  Michael Albinus  <[email protected]>

	* info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".

2013-04-10  Tassilo Horn  <[email protected]>

	* textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
	off leading { and trailing } from field values.

2013-04-10  Stefan Monnier  <[email protected]>

	* emacs-lisp/timer.el (timer--check): New function.
	(timer--time, timer-set-function, timer-event-handler): Use it.
	(timer-set-idle-time): Simplify.
	(timer--activate): CSE.
	(timer-event-handler): Give more info in error message.
	(internal-timer-start-idle): New function, moved from C.

	* mpc.el (mpc-proc): Add `restart' argument.
	(mpc-proc-cmd): Use it.
	(mpc--status-timer-run): Also catch signals from `mpc-proc'.
	(mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
	less often.

2013-04-10  Masatake YAMATO  <[email protected]>

	* progmodes/sh-script.el: Implement `sh-mode' own
	`add-log-current-defun-function' (bug#14112).
	(sh-current-defun-name): New function.
	(sh-mode): Use the function.

2013-04-09  Bastien Guerry  <[email protected]>

	* simple.el (choose-completion-string): Fix docstring (bug#14163).

2013-04-08  Stefan Monnier  <[email protected]>

	* emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).

	* emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
	timer (bug#14156).

2013-04-07  Nic Ferrier  <[email protected]>

	* emacs-lisp/ert.el (should, should-not, should-error): Add edebug
	declaration.

2013-04-07  Leo Liu  <[email protected]>

	* pcmpl-x.el: New file.

2013-04-06  Dmitry Antipov  <[email protected]>

	Do not set x-display-name until X connection is established.
	This is needed to prevent from weird situation described at
	<http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
	* frame.el (make-frame): Set x-display-name after call to
	window system initialization function, not before.
	* term/x-win.el (x-initialize-window-system): Add optional
	display argument and use it.
	* term/w32-win.el (w32-initialize-window-system):
	* term/ns-win.el (ns-initialize-window-system):
	* term/pc-win.el (msdos-initialize-window-system):
	Add compatible optional display argument.

2013-04-06  Eli Zaretskii  <[email protected]>

	* files.el (normal-backup-enable-predicate): On MS-Windows and
	MS-DOS compare truenames of temporary-file-directory and of the
	file, so that 8+3 aliases (usually found in $TEMP on Windows)
	don't fail comparison by compare-strings.  Also, compare file
	names case-insensitively on MS-Windows and MS-DOS.

2013-04-05  Stefan Monnier  <[email protected]>

	* emacs-lisp/package.el (package-compute-transaction): Fix last fix.
	Suggested by Donald Curtis <[email protected]> (bug#14082).

2013-04-05  Dmitry Gutov  <[email protected]>

	* whitespace.el (whitespace-color-on, whitespace-color-off):
	Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.

2013-04-05  Jacek Chrząszcz  <[email protected]>  (tiny change)

	* ispell.el (ispell-set-spellchecker-params):
	Really set `ispell-args' for all equivs.

2013-04-05  Stefan Monnier  <[email protected]>

	* ido.el (ido-completions): Use extra elements of ido-decorations
	(bug#14143).
	(ido-decorations): Update docstring.

2013-04-05  Michael Albinus  <[email protected]>

	* autorevert.el (auto-revert-mode, auto-revert-tail-mode)
	(global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
	nil during initialization, in order not to miss changes since the
	file was opened.  (Bug#14140)

2013-04-05  Leo Liu  <[email protected]>

	* kmacro.el (kmacro-call-macro): Fix bug#14135.

2013-04-05  Jay Belanger  <[email protected]>

	* calc/calc-units.el (calc-convert-units): Rewrite conditional.

2013-04-04  Glenn Morris  <[email protected]>

	* electric.el (electric-pair-inhibit-predicate): Add :version.

2013-04-04  Stefan Monnier  <[email protected]>

	* emacs-lisp/package.el (package-compute-transaction): Fix ordering
	when a package is required several times (bug#14082).

2013-04-04  Roland Winkler  <[email protected]>

	* faces.el (read-face-name): Behave as promised by the docstring.
	Assume that arg default is a list of faces.
	(describe-face): Call read-face-name with list of default faces.

2013-04-04  Thierry Volpiatto  <[email protected]>

	* bookmark.el: Fix deletion of bookmarks (bug#13972).
	(bookmark-bmenu-list): Don't toggle filenames if alist is empty.
	(bookmark-bmenu-execute-deletions): Only skip first line if it's
	the header.
	(bookmark-exit-hook-internal): Save even if list is empty.

2013-04-04  Yann Hodique  <[email protected]>  (tiny change)

	* emacs-lisp/package.el (package-pinned-packages): New var.
	(package--add-to-archive-contents): Obey it (bug#14118).

2013-04-03  Alan Mackenzie  <[email protected]>

	Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
	Also adapt to the new values of element 7 of a parse state.

	* progmodes/cc-engine.el (c-state-pp-to-literal): New optional
	parameter `not-in-delimiter'.  Handle being inside comment opener.
	(c-invalidate-state-cache-1): Reckon with an extra "invalid"
	character in case we're typing a '*' after a '/'.
	(c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
	instead by passing the parameter to c-state-pp-to-literal.

	* progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
	for elt. 7 of a parse state.

2013-04-01  Paul Eggert  <[email protected]>

	Use UTF-8 for most files with non-ASCII characters (Bug#13936).
	* international/latin1-disp.el, international/mule-util.el:
	* language/cyril-util.el, language/european.el, language/ind-util.el:
	* language/lao-util.el, language/thai.el, language/tibet-util.el:
	* language/tibetan.el, language/viet-util.el:
	Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.

2013-04-01  Stefan Monnier  <[email protected]>

	* electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
	(electric-pair-post-self-insert-function): Use it.
	(electric-pair-default-inhibit): New function, extracted from
	electric-pair-post-self-insert-function.

2013-03-31  Roland Winkler  <[email protected]>

	* emacs-lisp/crm.el (completing-read-multiple): Doc fix.

2013-03-31  Stefan Monnier  <[email protected]>

	* hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).

2013-03-30  Fabián Ezequiel Gallina  <[email protected]>

	Un-indent after "pass" and "return" statements (Bug#13888)
	* progmodes/python.el (python-indent-block-enders): New var.
	(python-indent-calculate-indentation): Use it.

2013-03-30  Michael Albinus  <[email protected]>

	* net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
	defun.  Defining it as defalias could introduce too eager
	byte-compiler optimization.  (Bug#14030)

2013-03-30  Chong Yidong  <[email protected]>

	* iswitchb.el (iswitchb-read-buffer): Fix typo.

2013-03-30  Leo Liu  <[email protected]>

	* kmacro.el (kmacro-call-macro): Add optional arg MACRO.
	(kmacro-execute-from-register): Pass the keyboard macro to
	kmacro-call-macro or repeating won't work correctly.

2013-03-30  Teodor Zlatanov  <[email protected]>

	* progmodes/subword.el: Back to using `forward-symbol'.

	* subr.el (forward-whitespace, forward-symbol)
	(forward-same-syntax): Move from thingatpt.el.

2013-03-29  Leo Liu  <[email protected]>

	* kmacro.el (kmacro-to-register): New command.
	(kmacro-execute-from-register): New function.
	(kmacro-keymap): Bind to 'x'.  (Bug#14071)

2013-03-29  Stefan Monnier  <[email protected]>

	* mpc.el: Use defvar-local and setq-local.
	(mpc--proc-connect): Connection failures are not bugs.
	(mpc-mode-map): `follow-link' only applies to the buffer's content.
	(mpc-volume-map): Bind to the up-events.

2013-03-29  Teodor Zlatanov  <[email protected]>

	* progmodes/subword.el (superword-mode): Use `forward-sexp'
	instead of `forward-symbol'.

2013-03-28  Stefan Monnier  <[email protected]>

	* emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
	(edebug--recursive-edit): Use it.
	(edebug-kill-buffer): Don't let-bind kill-buffer-hook.
	(edebug-temp-display-freq-count): Don't let-bind buffer-read-only.

2013-03-28  Leo Liu  <[email protected]>

	* vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)

2013-03-27  Eli Zaretskii  <[email protected]>

	* facemenu.el (list-colors-callback): New defvar.
	(list-colors-redisplay): New function.
	(list-colors-display): Install list-colors-redisplay as the
	revert-buffer-function.  (Bug#14063)

2013-03-27  Stefan Monnier  <[email protected]>

	* minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
	and suffixes don't overlap (bug#14061).

	* case-table.el: Use lexical-binding.
	(case-table-get-table): New function.
	(get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.

2013-03-27  Teodor Zlatanov  <[email protected]>

	* progmodes/subword.el: Add `superword-mode' to do word motion
	over symbol_words (parallels and leverages `subword-mode' which
	does word motion inside MixedCaseWords).

2013-03-27  Aidan Gauland  <[email protected]>

	* eshell/em-unix.el: Move su and sudo to...
	* eshell/em-tramp.el: ...Eshell tramp module.

2013-03-26  Stefan Monnier  <[email protected]>

	* desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
	Change return value to be a sexp.  Delay `get-buffer' to after
	restoring the desktop (bug#13951).

2013-03-26  Leo Liu  <[email protected]>

	* register.el: Move semantic tag handling back to
	cedet/semantic/senator.el.  (Bug#14052)

2013-03-26  Stefan Monnier  <[email protected]>

	* eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
	into the prompt either (bug#13963).

2013-03-25  Stefan Monnier  <[email protected]>

	* font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
	part of "(error-foo)".

2013-03-24  Juri Linkov  <[email protected]>

	* replace.el (list-matching-lines-prefix-face): New defcustom.
	(occur-1): Pass `list-matching-lines-prefix-face' to the function
	`occur-engine' if `face-differs-from-default-p' returns t.
	(occur-engine): Add `,' inside backquote construct to evaluate
	`prefix-face'.  Propertize the prefix with the `prefix-face' face.
	Pass `prefix-face' to the functions `occur-context-lines' and
	`occur-engine-add-prefix'.
	(occur-engine-add-prefix, occur-context-lines): Add optional arg
	`prefix-face' and propertize the prefix with `prefix-face'.
	(Bug#14017)

2013-03-24  Leo Liu  <[email protected]>

	* nxml/rng-valid.el (rng-validate-while-idle)
	(rng-validate-quick-while-idle): Guard against deleted buffer.
	(Bug#13999)

	* emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
	is the last entry in kill-buffer-hook.

	* files.el (kill-buffer-hook): Doc fix.

2013-03-23  Dmitry Gutov  <[email protected]>

	* emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
	Make it safe-local.

	* vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).

2013-03-23  Leo Liu  <[email protected]>

	* nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
	Remove.

	* nxml/rng-valid.el (rng-validate-mode)
	(rng-after-change-function, rng-do-some-validation):
	* nxml/rng-maint.el (rng-validate-buffer):
	* nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
	* nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
	* nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
	(nxml-extend-after-change-region): Use with-silent-modifications.

	* nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
	timer-idle-list.

	* nxml/rng-valid.el (rng-validate-while-idle-continue-p)
	(rng-next-error-1, rng-previous-error-1): Do not let-bind
	timer-idle-list.  (Bug#13999)

2013-03-23  Juri Linkov  <[email protected]>

	* info.el (info-index-match): New face.
	(Info-index, Info-apropos-matches): Add a nested subgroup to the
	main pattern and add text properties with the new face to matches
	in index entries relative to the beginning of the index entry.
	(Bug#14015)

2013-03-21  Eric Ludlam  <[email protected]>

	* eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
	Inhibit read only while inserting objects.

2013-03-22  Teodor Zlatanov  <[email protected]>

	* progmodes/cfengine.el: Update docs to mention
	`cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
	symbol motion.  Remove "_" from the word syntax.

2013-03-21  Teodor Zlatanov  <[email protected]>

	* progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
	syntax for both `cfengine2-mode' and `cfengine3-mode'.

2013-03-20  Juri Linkov  <[email protected]>

	* info.el (Info-next-reference-or-link)
	(Info-prev-reference-or-link): New functions.
	(Info-next-reference, Info-prev-reference): Use them.
	(Info-try-follow-nearest-node): Handle footnote navigation.
	(Info-fontify-node): Fontify footnotes.  (Bug#13989)

2013-03-20  Stefan Monnier  <[email protected]>

	* subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
	* mouse.el (mouse-on-link-p): Undo scroll-bar fix.

2013-03-20  Paul Eggert  <[email protected]>

	Suppress unnecessary non-ASCII chatter during build process.
	* international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
	(batch-skkdic-convert): Suppress most of the chatter.
	It's not needed so much now that machines are faster,
	and its non-ASCII component was confusing; see Dmitry Gutov in
	<http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.

2013-03-20  Leo Liu  <[email protected]>

	* ido.el (ido-chop): Fix bug#10994.

2013-03-19  Dmitry Gutov  <[email protected]>

	* whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
	Remove vars.
	(whitespace-color-on, whitespace-color-off):
	Use `font-lock-fontify-buffer' (Bug#13817).

2013-03-19  Stefan Monnier  <[email protected]>

	* mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
	remapping in mode-line.
	(mouse-on-link-p): Also check [mode-line follow-link] bindings.

2013-03-19  Dmitry Gutov  <[email protected]>

	* whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
	value for `whitespace-line' face (Bug#13875).
	(whitespace-font-lock-keywords): Change description.
	(whitespace-color-on): Don't save `font-lock-keywords' value, save
	the constructed keywords instead.
	(whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).

2013-03-19  Leo Liu  <[email protected]>

	* progmodes/compile.el (compilation-display-error): New command.
	(compilation-mode-map, compilation-minor-mode-map): Bind it to
	C-o.  (Bug#13992)

2013-03-18  Paul Eggert  <[email protected]>

	* term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).

2013-03-18  Jan Djärv  <[email protected]>

	* mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).

2013-03-18  Michael Albinus  <[email protected]>

	* net/tramp-compat.el (tramp-compat-user-error): New defun.

	* net/tramp-adb.el (tramp-adb-handle-shell-command):
	* net/tramp-gvfs.el (top):
	* net/tramp.el (tramp-find-method, tramp-dissect-file-name)
	(tramp-handle-shell-command): Use it.
	(tramp-dissect-file-name): Raise an error when hostname is a
	method name, and neither method nor user is specified.

	* net/trampver.el: Update release number.

2013-03-18  Leo Liu  <[email protected]>

	Make sure eldoc can be turned off properly.
	* emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
	eldoc-mode.
	(eldoc-display-message-p): Revert last change.
	(eldoc-display-message-no-interference-p)
	(eldoc-print-current-symbol-info): Tweak.

2013-03-18  Tassilo Horn  <[email protected]>

	* doc-view.el (doc-view-new-window-function): Check the new window
	overlay's display property instead the char property of the
	buffer's first char.  Use `with-selected-window' instead of
	`save-window-excursion' with `select-window'.
	(doc-view-document->bitmap): Check the current doc-view overlay's
	display property instead the char property of the buffer's first char.

2013-03-18  Paul Eggert  <[email protected]>

	Automate the build of ja-dic.el (Bug#13984).
	* international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
	from the input, rather than assume that it's been done for us by the
	SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
	the current date into a ja-dic.el comment, as that complicates
	regression testing.

2013-03-18  Stefan Monnier  <[email protected]>

	* whitespace.el: Fix double evaluation.
	(whitespace-space, whitespace-hspace, whitespace-tab)
	(whitespace-newline, whitespace-trailing, whitespace-line)
	(whitespace-space-before-tab, whitespace-indentation)
	(whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
	obsolete defvars.
	(whitespace-hspace-regexp): Fix regexp for emacs-unicode.
	(whitespace-color-on): Use a single font-lock-add-keywords call.
	Fix double-evaluation of face variables.

2013-03-17  Michael Albinus  <[email protected]>

	* net/tramp-adb.el (tramp-adb-parse-device-names):
	Use `start-process' instead of `call-process'.  Otherwise, the
	function might be blocked under MS Windows.  (Bug#13299)

2013-03-17  Leo Liu  <[email protected]>

	Extend eldoc to display info in the mode-line.  (Bug#13978)
	* emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
	(eldoc-mode-line-string): New variable.
	(eldoc-minibuffer-message): New function.
	(eldoc-message-function): New variable.
	(eldoc-message): Use it.
	(eldoc-display-message-p)
	(eldoc-display-message-no-interference-p):
	Support eldoc-post-insert-mode.

	* simple.el (eval-expression-minibuffer-setup-hook): New hook.
	(eval-expression): Run it.

2013-03-17  Roland Winkler  <[email protected]>

	* emacs-lisp/crm.el (completing-read-multiple): Ignore empty
	strings in the list of return values.

2013-03-17  Jay Belanger  <[email protected]>

	* calc/calc-ext.el (math-read-number-fancy): Check for an explicit
	radix before checking for HMS forms.

2013-03-16  Leo Liu  <[email protected]>

	* progmodes/scheme.el: Add indentation and font-locking for λ.
	(Bug#13975)

2013-03-16  Stefan Monnier  <[email protected]>

	* emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
	token before point (bug#13942).

2013-03-16  Leo Liu  <[email protected]>

	* thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.

2013-03-16  Eli Zaretskii  <[email protected]>

	* startup.el (command-line-normalize-file-name): Fix handling of
	backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
	<[email protected]> in
	http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.

2013-03-15  Michael Albinus  <[email protected]>

	Sync with Tramp 2.2.7.

	* net/trampver.el: Update release number.

2013-03-14  Tassilo Horn  <[email protected]>

	* doc-view.el Fix bug#13887.
	(doc-view-insert-image): Don't modify overlay associated to
	non-live windows, and implement horizontal centering of image in
	case it's smaller than the window.
	(doc-view-new-window-function): Force redisplay of new windows on
	doc-view buffers.

2013-03-13  Karl Fogel  <[email protected]>

	* saveplace.el (save-place-alist-to-file): Don't sort
	`save-place-alist', just pretty-print it (bug#13882).

2013-03-13  Michael Albinus  <[email protected]>

	* net/tramp-sh.el (tramp-sh-handle-insert-directory):
	Check whether `default-file-name-coding-system' is bound.
	It isn't in XEmacs.

2013-03-13  Stefan Monnier  <[email protected]>

	* emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
	backquotes for `obsolete' (bug#13929).

	* international/mule.el (find-auto-coding): Include file name in
	obsolescence warning (bug#13922).

2013-03-12  Teodor Zlatanov  <[email protected]>

	* progmodes/cfengine.el (cfengine-parameters-indent): New variable
	for CFEngine 3-specific indentation.
	(cfengine3-indent-line): Use it.  Fix up category regex.
	(cfengine3-font-lock-keywords): Add bundle and namespace characters.

2013-03-12  Stefan Monnier  <[email protected]>

	* type-break.el (type-break-file-name):
	* textmodes/remember.el (remember-data-file):
	* strokes.el (strokes-file):
	* shadowfile.el (shadow-initialize):
	* saveplace.el (save-place-file):
	* ps-bdf.el (bdf-cache-file):
	* progmodes/idlwave.el (idlwave-config-directory):
	* net/quickurl.el (quickurl-url-file):
	* international/kkc.el (kkc-init-file-name):
	* ido.el (ido-save-directory-list-file):
	* emulation/viper.el (viper-custom-file-name):
	* emulation/vip.el (vip-startup-file):
	* calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
	* calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.

2013-03-12  Paul Eggert  <[email protected]>

	Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
	* language/thai-word.el: Switch to UTF-8.

See ChangeLog.16 for earlier changes.

;; Local Variables:
;; coding: utf-8
;; End:

  Copyright (C) 2011-2013 Free Software Foundation, Inc.

  This file is part of GNU Emacs.

  GNU Emacs is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  GNU Emacs is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.