aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
blob: c3e98e8cd115466bd891cdc330babef6a97c407f (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
2004-01-29 Tue  Jari Aalto  <jari.aalto <AT> poboxes.com>

        * progmodes/executable.el (executable-command-find-posix-p):
        New.  Check if find handles arguments Posix-style.

        * progmodes/grep.el (grep-compute-defaults):
	Use executable-command-find-posix-p.
        (grep-find): Check `grep-find-command'.

	* filecache.el (file-cache-find-posix-p): Deleted.
	(file-cache-add-directory-using-find):
	Use `executable-command-find-posix-p' 

2004-01-29  Dave Love  <[email protected]>

	* emacs-lisp/lisp.el (beginning-of-defun-raw, end-of-defun):
	Iterate the hook function if arg is given.
	(mark-defun, narrow-to-defun): Change order of finding the limits.

	* emacs-lisp/bytecomp.el (byte-compile-compatibility): Doc fix.
	(byte-compile-format-warn): New.
	(byte-compile-callargs-warn): Use it.
	(Format, message, error): Add byte-compile-format-like property.
	(byte-compile-maybe-guarded): New.
	(byte-compile-if, byte-compile-cond): Use it.
	(byte-compile-lambda): Compile interactive forms,
	just to make warnings about them.

2004-01-29  Jonathan Yavner  <[email protected]>

	* ses.el (ses-initial-column-width): Increase to 14, so it will
	work well with the default printer of "%.7g" for extreme values
	like "-1.234567e+07".

2004-01-29  Kenichi Handa  <[email protected]>

	* term/x-win.el (x-selection-value): Optimize for ASCII only case.

2004-01-28  Peter 'Luna' Runestig  <[email protected]>

	* dos-w32.el: Added support for the `default-printer-name' function.

2004-01-27  Stefan Monnier  <[email protected]>

	* server.el (server-socket-name): Don't use the hostname in the
	socket name since /tmp is local to the host anyway.

	* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Use a more
	robust check of widening and fix var-naming.

2004-01-27  Eli Tziperman  <[email protected]>

	* rmail-spam-filter.el: Change rmail-spam-filter- or spam-filter-
	or rmail-spam- to rsf- in all function and variable names.
	(rsf-min-region-to-spam-list): New variable.
	(rsf-bbdb-auto-delete-spam-entries): Rename from
	rmail-bbdb-auto-delete-spam-bbdb-entries.  The cc: field is
	scanned together with the recipients field for spam testing; Don't
	delete spam message if rmail-delete-after-output is non-nil;
	(rsf-check-field): New function, extracted from code in
	rmail-spam-filter to ease addition of header fields like
	content-type:;
	(message-content-type): New variable.  The content-type: field was
	added also in defcustom of rsf-definitions-alist;
	(rmail-spam-filter): Replace repeated test code for header fields
	by calls to check-field; change the call to
	rmail-output-to-rmail-file such that rmail-current-message stays
	the same to avoid wrong deletion of unseen flags.
	(rmail-use-spam-filter): Add autoload cookie.

2004-01-27  Jari Aalto  <[email protected]>

	* filecache.el (file-cache-find-posix-p): New function.  Detect Cygwin.
	(file-cache-add-directory-using-find): Add Cygwin support.
	(file-cache-find-command-posix-flag): New user variable.

	* filecache.el (file-cache-add-directory): Check for
	directories an remove them from dir-files.

2004-01-27  Richard M. Stallman  <[email protected]>

	* man.el (Man-fontify-manpage): Clean up message.

2004-01-27  Kenichi Handa  <[email protected]>

	* textmodes/paragraphs.el (sentence-end-without-space): New variable.
	(sentence-end): Define using sentence-end-without-space.

	* textmodes/fill.el (fill-delete-newlines): Don't add a space if
	a sentence ends with one of a character in sentence-end-without-space.

2004-01-26  Stefan Monnier  <[email protected]>

	* font-lock.el (font-lock): Add jit-lock as explicit group member.
	(jit-lock): Group declaration moved to jit-lock.el.
	(toplevel): Don't explicitly require jit-lock, since it's autoloaded
	when necessary.

	* jit-lock.el (jit-lock): Move group declaration from font-lock.el.
	(jit-lock-context-unfontify-pos): Rename from
	jit-lock-first-unfontify-pos.
	(jit-lock-defer-buffers): Rename from jit-lock-buffers.

2004-01-25  Glenn Morris  <[email protected]>

	* progmodes/fortran.el (fortran-break-before-delimiters): Doc fix.
	(fortran-break-delimiters-re, fortran-no-break-re): New consts.
	(fortran-fill): When filling a string, adjust re-search-backward
	argument for special case of string just on fill-column.
	When filling non-string, allow one extra char if
	fortran-break-before-delimiters is non-nil.
	Suggested by Michael Hagemann <[email protected]>.
	Use fortran-break-delimiters-re and fortran-no-break-re to
	correctly handle cases such as "**".

	* progmodes/f90.el (f90-break-delimiters): Doc fix.
	(f90-no-break-re): Add some extra tokens.  Doc fix.

2004-01-24  Thien-Thi Nguyen  <[email protected]>

	* mail/rmail-spam-filter.el:
	Use two semicolons as Commentary line prefix.
	Add ";;; Code:" stylized comment.
	Delete end-of-line whitespace.
	Wrap (require 'cl) with `eval-when-compile'.

2004-01-23  Benjamin Rutt  <[email protected]>

	* vc.el (vc-annotate): Fix improper use of `make-local-variable'
	at the top level of vc.el.

2004-01-23  Andre Spiegel  <[email protected]>

	* vc.el (vc-current-line): Function removed.  This is now done by
	the new function line-at-pos in simple.el.
	(vc-annotate-warp-version): Use line-at-pos instead of
	vc-current-line.

2004-01-22  Kim F. Storm  <[email protected]>

	* simple.el (line-at-pos): New defun.
	(what-line): Use it.  Optimize by only counting lines in narrowed
	region once.

2004-01-22  Kenichi Handa  <[email protected]>

	* language/cyrillic.el (ccl-encode-windows-1251-font): Rearrange code
	point (register r1) only for charset mule-unicode-0100-24ff.

2004-01-21  Markus Rost  <[email protected]>

	* mail/rmail.el (rmail-convert-to-babyl-format): Avoid deleting
	trailing white space and ensure a final newline.

	* mail/rmail-spam-filter.el (rmail-use-spam-filter):
	Add autoload cookie.

2004-01-21  Benjamin Rutt  <[email protected]>

	* vc.el (vc-annotate-mode): Inherit from fundamental-mode and
	activate view-mode explicitly.

2004-01-21  Jan Dj,Ad(Brv  <[email protected]>

	* term/x-win.el: Call menu-bar-enable-clipboard and make Paste
	use clipboard first.

2004-01-20  Stefan Monnier  <[email protected]>

	* vc-mcvs.el (vc-mcvs-mode-line-string): Remove.  Does not work.
	(vc-mcvs-workfile-version): Manually macro expand vc-mcvs-cvs.
	(vc-mcvs-cvs): Remove.
	(vc-mcvs-command): Remove use of assert.

	* outline.el (outline-insert-heading): Tighten up match.
	(outline-demote, outline-move-subtree-down): Don't assume anything
	about outline-regexp.

	* textmodes/texinfo.el (texinfo-mode): Remove ^ from outline-regexp.
	(texinfo-show-structure): Explicitly add ^, and simplify.

2004-01-20  Glenn Morris  <[email protected]>

	* calendar/appt.el (appt-check): Restore usage of
	appt-issue-message deleted in previous change.
	(top-level): Activate package when loaded (needed for backwards
	compatibility).

2004-01-20  Jesper Harder  <[email protected]>

	* mail/smtpmail.el (smtpmail-via-smtp): No need to add two bytes
	following previous change to smtpmail-send-data.

2004-01-20  Benjamin Rutt  <[email protected]>

	* vc.el (vc-default-previous-version): Doc enhancement.
	(vc-default-next-version): New function.
	(vc-print-log): New arg FOCUS-REV.
	(vc-annotate-mode): Derive from view-mode.
	(vc-annotate): New args REVISION, DISPLAY-MODE.
	(vc-annotate-workfile-version, vc-annotate-extract-revision-at-line)
	(vc-annotate-revision-at-line, vc-annotate-revision-previous-to-line)
	(vc-annotate-show-log-revision-at-line, vc-annotate-warp-version)
	(vc-annotate-show-diff-revision-at-line, vc-current-line)
	(vc-annotate-prev-version, vc-annotate-next-version): New functions.

	* vc-cvs.el (vc-cvs-annotate-extract-revision-at-line): New function.

2004-01-19  Karl Berry  <[email protected]>

	* textmodes/texinfo.el: Use "Texinfo" consistently, no "TeXinfo"
	or "TexInfo".

2004-01-19  Luc Teirlinck  <[email protected]>

	* subr.el (delete-dups): New function.

2004-01-19  Karl Berry  <[email protected]>

	* textmodes/texinfo.el (texinfo-mode): Define outline-regexp to start
	with ^, since that's what texinfo-show-structure
	documentation says (plus it works much better in texinfo.txi).

2004-01-18  Jesper Harder  <[email protected]>

	* mail/smtpmail.el (smtpmail-send-data): Don't append spurious newline.

2004-01-18   David Ponce  <[email protected]>  (tiny change)

	* progmodes/which-func.el (which-function-mode): Don't cancel
	which-func-update-timer if not set.

2004-01-17  Thien-Thi Nguyen  <[email protected]>

	* calendar/diary-lib.el (diary-entry-time): Fix typo/bug:
	Remove spurious left square bracket in XX:XXam regexp.

2004-01-16  Luc Teirlinck  <[email protected]>

	* progmodes/cc-defs.el: Do not require cl at run time.

2004-01-16  Richard M. Stallman  <[email protected]>

	* emacs-lisp/cl.el (cl-cannot-unload): New function.
	(cl-unload-hook): Defvar this to run cl-cannot-unload.

	* mail/rmail.el (rmail-get-new-mail): New local rsf-number-of-spam.
	Call rmail-spam-filter.  Delete and expunge spam.
	Print number of spam messages deleted.
	Save and restore the deletion status of old messages when reading
	new mail with spam filter, so that expunging spam does not expunge
	msgs deleted by the user.
	(rmail-only-expunge): Add an optional argument dont-show to
	prevent showing message after expunge.

2004-01-15  Luc Teirlinck  <[email protected]>

	* emacs-lisp/cl.el (declare): Add `fmakunbound' for `declare'.
	* subr.el (declare): New macro.

2004-01-15  Thien-Thi Nguyen  <[email protected]>

	* progmodes/scheme.el (scheme-font-lock-keywords-2): Add "force".

2004-01-14  Stefan Monnier  <[email protected]>

	* mwheel.el (mouse-wheel-down-event, mouse-wheel-up-event):
	Test window-system rather than system-type (for X11/Mac).

2004-01-12  Luc Teirlinck  <[email protected]>

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

2004-01-12  Richard M. Stallman  <[email protected]>

	* mail/rmail.el (rmail-convert-to-babyl-format):
	Use mail-unquote-printable-region.
	(rmail-hex-string-to-integer, rmail-decode-quoted-printable):
	(rmail-hex-char-to-integer): Functions deleted.

	* mail/mail-utils.el (mail-unquote-printable-hexdigit): Upcase CHAR.
	(mail-unquote-printable-region): New arg NOERROR.
	For invalid encoding, either signal an error to just return nil.

2004-01-11  Glenn Morris  <[email protected]>

	* calendar/appt.el: Update copyright and commentary.
	(appt-issue-message): Make obsolete.
	(appt-visible, appt-msg-window): Make obsolete, in favour of
	appt-display-format.
	(appt-display-mode-line, appt-display-duration)
	(appt-display-diary, appt-time-msg-list, appt-mode-string)
	(appt-prev-comp-time, appt-display-count, appt-timer)
	(appt-convert-time): Doc change.
	(appt-disp-window-function, appt-delete-window-function):
	Use defcustom rather than defvar.
	(appt-display-format): New variable.
	(appt-display-message): New function with display code from appt-check.
	(appt-check): Add optional FORCE argument.  Doc change.
	Add appt-make-list to diary-hook if displaying diary.
	Remove checking of view-diary-entries-initially.
	Message display section removed to new function appt-display-message.
	(appt-display-window): Doc change.  Remove unused internal var
	this-buffer.  Do not beep, since appt-display-message does that.
	(appt-make-list): Doc change.  Use caar.
	(appt-sort-list): Simplify by using builtin sort function.
	(appt-update-list): New function for updating appts when diary is
	saved.
	(appt-activate): New autoloaded function to toggle package
	functionality.

	* calendar/cal-x.el: (calendar-one-frame-setup)
	(calendar-only-one-frame-setup, calendar-two-frame-setup): Doc change.

	* calendar/calendar.el: Update copyright.
	(view-diary-entries-initially, european-calendar-style): Doc change.
	(calendar-setup): Make defcustom rather than defvar.
	(mark-visible-calendar-date): Initialize temp-face and faceinfo
	in let binding so local to function.

	* calendar/diary-lib.el: Update copyright.
	(diary, diary-entry-time): Doc change.
	(list-diary-entries): Doc change.  Trivial logic change.
	(fancy-diary-display): Restore make-face command mistakenly
	deleted 2003-05-08.
	(show-all-diary-entries): Allow to pop-up frame if needed.

2004-01-09  John Paul Wallington  <[email protected]>

	* bindings.el (mode-line-change-eol): Add EVENT parameter.
	Temporarily select EVENT's window for changing eol type.

2004-01-09  Deepak Goel  <[email protected]>

	* calendar/diary-lib.el (diary-entry-time):
	Also accept time in the form XX[.XX][am/pm/AM/PM].
	(fancy-diary-font-lock-keywords): Likewise.
	(diary-font-lock-keywords): Likewise.
	* calendar/appt.el (appt-add): Likewise.
	(appt-make-list): Likewise.
	(appt-convert-time): Likewise.

2004-01-08  Nick Roberts  <[email protected]>

	* gdb-ui.el (gdb-ann3): Revert previous change.
	(gdb-source-info): Allow for case of where compilation directory
	is not recorded.

2004-01-08  John Paul Wallington  <[email protected]>

	* emerge.el (emerge-restore-buffer-characteristics): Doc fix.

2004-01-07  Nick Roberts  <[email protected]>

	* progmodes/gud.el (gdb-first-prompt): Rename from gdb-first-pre-prompt

	* gdb-ui.el (gdba): Avoid duplication, use gdb-ann3.
	(gdb-ann3): Use GDB command "set width 0" to prevent word wrapping
	problems.
	(gdb-prompt): Set (renamed) gdb-first-prompt to nil in gdb-ann3.

2004-01-07  Luc Teirlinck  <[email protected]>

	* files.el (write-file-functions, write-contents-functions):
	Clarify docstrings.

2004-01-07  Kenichi Handa  <[email protected]>

	* international/mule.el (set-auto-coding): Fix for the case that
	end-of-line is only CR.

2004-01-07  Kim F. Storm  <[email protected]>

	* subr.el (event-start, event-end): Doc fix.
	(posn-string, posn-image): New defuns.
	(posn-object): Return either image or string object.
	(posn-object-x-y): Return 8th element of position.
	(posn-object-width-height): New defun.

2004-01-06  Andreas Schwab  <[email protected]>

	* gdb-ui.el (gdb-frame-handler): Handle word wrapping anywhere in
	output.

2004-01-05  Karl Berry  <[email protected]>

	* emacs-lisp/copyright.el (copyright-regexp): might as well allow
	/ and *, too.

2003-12-31  Simon Josefsson  <[email protected]>

	* files.el (before-save-hook): Add.
	(basic-save-buffer): Use before-save-hook.

	* emacs-lisp/copyright.el: Fix comment to recommend
	before-save-hook instead of write-file-functions.

2004-01-05  Richard M. Stallman  <[email protected]>

	* finder.el (finder-commentary): Call delete-other-windows.

	* net/ange-ftp.el (ange-ftp-file-attributes):
	Pass 2 args to ange-ftp-real-file-attributes only if ID-FORMAT non-nil.

2004-01-04  Karl Berry  <[email protected]>

	* emacs-lisp/copyright.el (copyright-regexp): allow the common
	comment characters % and # in the copyright year notice,
	as well as ;.

2004-01-04  Per Abrahamsen  <[email protected]>

	* wid-edit.el (default): Define dummy :value-delete.
	Reported by Jesper Harder <[email protected]>.

2004-01-03  Richard M. Stallman  <[email protected]>

	* progmodes/compile.el (compile-internal): Use point, not point-min,
	for set-window-point.

	* textmodes/tex-mode.el (latex-find-indent): Avoid error at end of buf.

	* emacs-lisp/lisp-mnt.el (lm-section-end): Require outline.

	* progmodes/grep.el (grep-mode-map):
	Don't remap next-line, previous-line.

2004-01-03  Eric M. Ludlam  <[email protected]>

	* speedbar.el (speedbar-edit-line): Change regexp to position
	the cursor on the first character of this line's button.

2004-01-03  Luc Teirlinck  <[email protected]>

	* subr.el (functionp): Doc fix.

2004-01-03  Jesper Harder  <[email protected]>  (tiny change)

	* progmodes/idlwave.el (idlwave-make-tags):
	* textmodes/flyspell.el (flyspell-large-region):.
	* progmodes/make-mode.el (makefile-query-by-make-minus-q):
	* emulation/viper-util.el (viper-glob-unix-files):
	* emacs-lisp/shadow.el (shadow-same-file-or-nonexistent):
	* man.el (Man-init-defvars):
	* jka-compr.el (jka-compr-call-process):
	* files.el (get-free-disk-space,insert-directory):
	* ediff-ptch.el (ediff-test-patch-utility):
	* ediff-diff.el (ediff-test-utility):
	* dired-aux.el (dired-check-process):
	* mail/sendmail.el (sendmail-send-it): Don't use = or zerop to
	test the return value of call-process, because it can be a string.

2003-12-31  John Paul Wallington  <[email protected]>

	* bindings.el (completion-ignored-extensions): Add .pfsl.

2003-12-31  Kim F. Storm  <[email protected]>

	* ido.el (ido-nonreadable-directory-p): New defun to check for
	nonreadable directory without activating tramp (to avoid problems
	with checking incomplete tramp paths.
	(ido-set-current-directory, ido-file-internal)
	(ido-file-name-all-completions1): Use it.

2003-12-30  Luc Teirlinck  <[email protected]>

	* help-mode.el (help-xref-info-regexp): Make hyperlinks to Info
	documentation if the anchor (or node) name is preceded by `info
	anchor' or `Info anchor' in addition to earlier `info node' and
	`Info node'.
	(help-make-xrefs): Adapt to new value of `help-xref-info-regexp'.

2003-12-30  Eli Zaretskii  <[email protected]>

	* mail/rmail.el (rmail-convert-to-babyl-format): Fix off-by-one
	error in arguments to base64-decode-region.  Remove ^M characters
	after decoding base64.

2003-12-30  Simon Josefsson  <[email protected]>

	* textmodes/texinfo.el: Change maintainer to FSF.  Suggested by
	[email protected] (Karl Berry), since the Texinfo Elisp files
	have only been distributed with Emacs for some years.
	(texinfo-mode-hook): Customize.

2003-12-30  Eli Zaretskii  <[email protected]>

	* mail/rmail.el (rmail-convert-to-babyl-format): Make the code
	cleaner (suggested by Richard Stallman).

	* progmodes/gud.el (gud-tool-bar-map): Modify names of icon files
	for gud-next, gud-nexti, gud-step and gud-stepi to prevent
	file-name clashes on 8+3 DOS filesystems.

	* toolbar/gud-next.pbm, toolbar/gud-next.xpm
	* toolbar/gud-nexti.pbm, toolbar/gud-nexti.xpm
	* toolbar/gud-step.pbm, toolbar/gud-step.xpm
	* toolbar/gud-stepi.pbm, toolbar/gud-stepi.xpm: Renamed to
	gud-n.*, gud-ni.*, gud-s.*, and gud-si.*, respectively, to avoid
	file-name clashes on 8+3 filesystems.

	* emacs-lisp/tcover-unsafep.el, emacs-lisp/tcover-ses.el:
	Renamed from testcover-unsafep.el and testcover-ses.el to avoid
	file-name clashes on 8+3 DOS filesystems.

2003-12-29  Richard M. Stallman  <[email protected]>

	* mail/mail-utils.el (mail-unquote-printable-hexdigit):
	Upcase the character.

	* textmodes/flyspell.el (mail-mode-flyspell-verify):
	Search for header separator alone on a line, literally,
	and search for it backward, not forward.
	(flyspell-abbrev-table): Always use global-abbrev-table
	if there is no local one.

	* progmodes/sh-script.el (sh-get-indent-info):
	Don't move point back if at bob.

	* progmodes/antlr-mode.el (save-buffer-state-x): Use with-no-warnings.

	* play/handwrite.el (handwrite): Make the handwrite credit message
	a comment rather than an output command.

	* obsolete/sc.el: Display message that this file is obsolete.

	* net/ange-ftp.el (ange-ftp-start-process): Copy the environment.

	* mail/rfc822.el (rfc822-address-start): Declare variable.
	Renamed from address-start.  All uses changed.

	* term.el (term-exec): Set up sentinel.
	(term-sentinel): New function.
	(term-handle-exit): New function.

	* subr.el (assoc-ignore-case, assoc-ignore-representation):
	Use assoc-string, and mark them obsolete.
	(delay-mode-hooks): Mark as permanent local.

	* simple.el (sendmail-user-agent-compose): Use assoc-string.

	* register.el (copy-rectangle-to-register): Doc fix.

	* info.el (Info-insert-dir): Use assoc-string.

	* info-look.el (info-lookup): Use assoc-string.

	* frame.el (pop-up-frame-function): Use quote, not `function'.
	(frame-notice-user-settings): Calculate ADJUSTED-TOP
	copying with lists as coordinate values.

	* font-lock.el (font-lock-after-change-function): Bind inhibit-quit.

	* find-dired.el (kill-find): New command.
	(find-dired): Make buffer read-only.
	Set up a keymap with C-c C-k running kill-find.
	(find-dired-filter, find-dired-sentinel): Bind inhibit-read-only.

	* files.el (backup-buffer-copy): If MODES is nil, don't set modes.

	* filecache.el (file-cache-ignore-case): New variable.
	(file-cache-assoc-function): Var deleted.  Use assoc-string instead.

	* comint.el (comint-arguments): Set COUNT after ARGS is complete.
	(comint-dynamic-complete-as-filename): Rename local vars.
	(comint-dynamic-list-filename-completions): Likewise.

	* comint.el (comint-dynamic-list-completions-config): New var.
	(comint-dynamic-list-completions): Handle both SPC and TAB right.

	* comint.el (comint-file-name-chars): Add [].
	(comint-word): Use skip-chars-backward, not search.

	* shell.el (shell-file-name-chars): Add [].

	* shell.el (shell-dynamic-complete-as-command): Rename local vars.

	* bookmark.el (bookmark-get-bookmark): Use assoc-string.

	* generic.el (define-generic-mode): Doc fix.

2003-12-29  Eli Zaretskii  <[email protected]>

	* files.el (kill-some-buffers): Doc fix.

2003-12-29  David Herring <[email protected]>  (tiny change)

	* comint.el (comint-watch-for-password-prompt): Pass `string' as
	arg to send-invisible
	(send-invisible): Doc fix.  The argument is now a prompt, not the
	string to send.
	(comint-read-noecho): Doc fix.

2003-12-29  Michael R. Wolf  <[email protected]>  (tiny change)

	* net/ange-ftp.el (ange-ftp-name-format): Allow USER to contain
	"@", as required by some ISP hosting service.  Fix defcustom
	argument syntax errors that prevented use of customization.

2003-12-29  Eli Zaretskii  <[email protected]>

	* xml.el (xml-get-attribute-or-nil): Doc fix.

2003-12-29  Peter 'Luna' Runestig <[email protected]>

	* net/zone-mode.el (zone-mode): Use write-file-functions, not
	write-file-hooks.

2003-12-29  Eric Hanchrow <[email protected]>  (tiny change)

	* autorevert.el (auto-revert-interval): Doc fix.

2003-12-29  Mark A. Hershberger <[email protected]>

	* xml.el (xml-get-attribute-or-nil): New function, like
	xml-get-attribute, but returns nil if the attribute was not found.
	(xml-get-attribute): Convert to defsubst, uses
	xml-get-attribute-or-nil.

2003-12-29  Eli Zaretskii  <[email protected]>

	* emacs-lisp/easymenu.el (easy-menu-define): Doc fix.

2003-12-29  Alex Schroeder <[email protected]>  (tiny change)

	* custom.el (custom-declare-theme): Use `value' when putting
	properties on `theme'.

2003-12-29  Takaaki Ota <[email protected]>

	* subr.el (insert-for-yank): Call insert-for-yank-1 repetitively
	for each yank-handler segment.
	(insert-for-yank-1): New function, with the body of the previous
	insert-for-yank.

	* textmodes/table.el (table-yank-handler): New defcustom.
	(table--put-cell-indicator-property): Put yank-handler property
	that indicates the yank handler for the table cell.

2003-12-29  Jesper Harder <[email protected]>  (tiny change)

	* generic-x.el (etc-modules-conf-generic-mode): A more complete
	set of keywords.

2003-12-29  Eli Zaretskii  <[email protected]>

	* international/mule-cmds.el (reset-language-environment)
	(set-language-environment): Don't invoke fontset-related functions
	if fontset-list is not fboundp.

2003-12-29  Kenichi Handa  <[email protected]>

	* international/mule-cmds.el (reset-language-environment):
	Call set-overriding-fontspec-internal with nil.
	(set-language-environment): Call set-overriding-fontspec-internal
	if the language environment specify `overriding-fontspec'.
	(language-info-alist): Doc added.

	* language/cyrillic.el (ccl-encode-koi8-font): Make it work for
	characters of mule-unicode-0100-24ff.
	(ccl-encode-windows-1251-font): New CCL program.
	("Bulgarian"): Specify overriding-fontspec.
	("Belarusian"): Likewise.

2003-12-28  Sam Steingold  <[email protected]>

	* net/ange-ftp.el (ange-ftp-file-attributes): Add new optional
	parameter ID-FORMAT to conform with the 2003-11-30 patch.

2003-12-28  Nick Roberts  <[email protected]>

	* progmodes/gud.el (gud-gdb-command-name): Set default to
	"gdb --annotate=3".
	(gud-gdb-marker-filter): Look out for annotations.
	(gdb-first-pre-prompt): New variable.
	Remove trailing white space.

	* gdb-ui.el (gdb-prompt): Change filter for level 3 annotations,
	if necessary.
	(gdb-ann3): New function. Initialise M-x gdb as for M-x gdba if
	annotations are detected.
	(gud-gdba-marker-filter): Use global variable gud-marker-acc
	instead of a local one to allow transition from
	gud-gdb-marker-filter.
	Remove trailing white space.

2003-12-27  Kim F. Storm  <[email protected]>

	* ido.el: Handle non-readable directories.
	(ido-decorations): Add 9th element for non-readable directory.
	(ido-directory-nonreadable): New dynamic var.
	(ido-set-current-directory): Set it.
	(ido-read-buffer, ido-file-internal):
	(ido-read-file-name, ido-read-directory-name): Let-bind it.
	(ido-file-name-all-completions1): Return empty list for
	non-readable directory.
	(ido-exhibit): Print [Not readable] if directory is not readable.
	(ido-expand-directory): New defun (based on tiny fix from Karl Chen).
	(ido-read-file-name, ido-file-internal, ido-read-directory-name):
	Use it.

2003-12-27  Lars Hansen  <[email protected]>

	* ls-lisp.el (ls-lisp-insert-directory): Add parameter 'string in
	calls to directory-files-and-attributes and file-attributes.
	(ls-lisp-format): Remove system dependent handling of user and
	group id's.

2003-12-25  Luc Teirlinck  <[email protected]>

	* ffap.el (ffap-read-file-or-url): Revert previous change.

2003-12-25  Robert J. Chassell <[email protected]>

	* textmodes/texnfo-upd.el (texinfo-multi-file-update): Create a
	new list of included files called `files-with-node-lines', that
	only have node lines.  This way @include commands can include any
	file, such as version and update files without node lines, not
	just files that are chapters.

2003-12-25  Andreas Schwab  <[email protected]>

	* jka-compr.el (jka-compr-insert-file-contents): Avoid error when
	file not found.

2003-12-08  Miles Bader  <[email protected]>

	* dired.el (dired-between-files): Always use dired-move-to-filename,
	which is more robust in non-english locales.

2003-12-25  Markus Rost  <[email protected]>

	* vc.el (vc-dired-purge): Avoid error from `kill-line'.

2003-12-24  Andreas Schwab  <[email protected]>

	* shell.el (shell-file-name-quote-list): Add backslash.

	* comint.el (comint-quote-filename): Correctly handle backslash
	in comint-file-name-quote-list.

2003-12-24  Kenichi Handa  <[email protected]>

	* international/mule-cmds.el (set-default-coding-systems):
	Call ucs-set-table-for-input for all buffers that don't have local
	value of buffer-file-coding-system.

	* international/ucs-tables.el (ucs-set-table-for-input):
	If translation-table-for-encode is a symbol, get its
	translation-table property.

2003-12-23  Luc Teirlinck  <[email protected]>

	* ffap.el (ffap-read-file-or-url): Eliminate reliance of the call
	to `completing-read' on a recently fixed bug.

	* fringe.el (fringe-query-style): Suggest `?' in minibuffer prompt,
	instead of SPACE, to get the list of possible fringe modes.
	SPACE only works if both `partial-completion-mode' and
	`completion-auto-help' are nil.

	* complete.el (PC-is-complete-p): Delete.
	(PC-do-completion): Replace all calls to `PC-is-complete-p' with
	calls to `test-completion'.

2003-12-23  Nick Roberts  <[email protected]>

	* progmodes/gud.el (gud-speedbar-buttons): Use speed-bar-edit-line
	to edit values when there are no children.

	* gdb-ui.el (gdba, gdb-assembler-mode): Call the mode "Machine" as
	a mode called "Assembler" already exists.
	(gdb-use-colon-colon-notation, gdb-show-changed-values): New options.
	(gud-watch): Use format option. Remove font properties from string.
	(gdb-var-create-handler, gdb-var-list-children-handler):
	Don't bother about properties as there are none.
	(gdb-var-create-handler, gdb-var-list-children-handler)
	(gdb-var-update-handler): Call gdb-var-evaluate-expression-handler
	with two arguments.
	(gdb-var-evaluate-expression-handler, gdb-post-prompt):
	Let speedbar show value changes with a different font.
	(gdb-edit-value): New defun.
	(gdb-clear-partial-output, gdb-clear-inferior-io)
	(def-gdb-auto-update-handler): Use erase-buffer.
	(gdb-frame-handler): Display watch expressions in
	FUNCTION::VARIABLE format if required.

2003-12-23  John Paul Wallington  <[email protected]>

	* info.el (Info-unescape-quotes, Info-split-parameter-string)
	(Info-goto-emacs-command-node): Doc fixes.

2003-12-12  Jesper Harder <[email protected]>

	* cus-edit.el (custom-add-parent-links): Define "many".

2003-12-08  Per Abrahamsen  <[email protected]>

	* wid-edit.el (widget-child-value-get, widget-child-value-inline)
	(widget-child-validate, widget-type-value-create)
	(widget-type-default-get, widget-type-match): New functions.
	(lazy): New widget.
	(menu-choice, checklist, radio-button-choice, editable-list)
	(group, documentation-string): Remove redundant (per 2003-10-25
	change) calls to `widget-children-value-delete'.
	(widget-choice-value-get, widget-choice-value-inline): Remove.
	(menu-choice): Update widget.

2003-12-03  Kenichi Handa  <[email protected]>

	* language/cyrillic.el: Register "microsoft-cp1251" in
	ctext-non-standard-encodings-alist.
	("Bulgarian"): Add ctext-non-standard-encodings.
	("Belarusian"): Likewise.

	* international/mule-conf.el (compound-text-with-extensions):
	Change the type to 2 (iso-2022 base).

	* international/mule.el (ctext-non-standard-encodings-alist):
	Change the format.
	(ctext-non-standard-encodings): New variable.
	(ctext-post-read-conversion): Fully re-written.
	(ctext-non-standard-designations-alist): Delete it.
	(ctext-non-standard-encodings-table): New function.
	(ctext-pre-write-conversion): Fully re-written.

2003-11-30  Per Abrahamsen  <[email protected]>

	* cus-edit.el (custom-add-parent-links): Add documentation links
	for parent, if the item has none of its own.

2003-11-30  Richard M. Stallman  <[email protected]>

	* dired-aux.el (dired-do-query-replace-regexp):
	Report files visited read-only.

2003-11-30  Juri Linkov  <[email protected]>

	* dired-aux.el (dired-compare-directories): New command.
	(dired-file-set-difference, dired-files-attributes): New functions.

2003-11-30  Kai Grossjohann  <[email protected]>
	Version 2.0.38 of Tramp released.

	* net/tramp.el (tramp-chunksize): Extend docstring.  Suggested by
	Charles Curley <[email protected]>.
	(tramp-multi-connection-function-alist): Add ssht entry which adds
	"-e none -t -t" to the list of ssh args.  Suggested by Adrian
	Aichner.
	(tramp-get-method-parameter): New function to retrieve a method
	parameter.  This allows for omission of method parameters.
	Callers adjusted.

2003-11-30  Michael Albinus  <[email protected]>

	* net/tramp.el: Add new optional parameter ID-FORMAT to
	`file-attributes'.  Calls of `file-attributes' won't use this
	parameter for backward compatibility reasons.
	(tramp-perl-file-attributes): Add a new parameter to Perl script
	in order to handle uid/gid as strings, if desired.
	(tramp-handle-file-truename, tramp-handle-file-symlink-p):
	Apply `file-attributes' instead of `tramp-handle-file-attributes' in
	order to make the function more general.
	(tramp-handle-file-attributes): Replace proprietary optional
	parameter NONNUMERIC by the recently (Emacs 21.4) introduced ID-FORMAT.
	(tramp-handle-file-attributes-with-perl): Handle parameter
	NONNUMERIC if set. This wasn't done in the past.
	(tramp-post-connection): Apply second parameter "$2" if
	`tramp-remote-perl' is called.

	* net/tramp-smb.el (tramp-smb-handle-delete-file):
	Correct cut'n'waste error (`filename' instead of `directory').
	(tramp-smb-handle-directory-files-and-attributes)
	(tramp-smb-handle-file-attributes): Add recently (Emacs 21.4)
	introduced parameter ID-FORMAT.
	(tramp-smb-handle-make-directory-internal): Correct cut'n'waste
	error (`directory' instead of `ldir').

	* net/tramp-vc.el (tramp-handle-vc-user-login-name): Check if
	`file-attributes' has a second parameter.  If yes, apply it with
	value "'integer".  Otherwise, don't use that parameter (default is
	integer format).


2003-11-30  Luc Teirlinck  <[email protected]>

	* help.el (help-map): Bind `display-local-help' to `C-h .'.
	(help-for-help): Add `C-h .' to the listed Help options.
	Remove trailing whitespace.

	* help-at-pt.el: New file.

2003-11-30  Jonathan Yavner  <[email protected]>

	* subr.el (noreturn, 1value): New macros for test coverage.
	See `testcover.el'.

	* emacs-lisp/edebug.el: Add def-edebug-spec for `noreturn' and `1value'.

	* emacs-lisp/testcover.el (testcover-reinstrument): Special case
	for macro `1value'.
	(testcover-1value): New function.  Checks that a 1value form
	actually returns only one value.  Requested by RMS.

2003-11-29  Nick Roberts  <[email protected]>

	* gdb-ui.el (gud-watch, gdb-var-create-handler)
	(gdb-var-list-children, gdb-var-list-children-handler)
	(gdb-var-update-handler, gdb-var-delete): Add server prefix to the
	gdb commands that use mi to keep them out of the command history.

2003-11-29  Jan Dj,Ad(Brv  <[email protected]>

	* cus-start.el (all): Add use-file-dialog.

2003-11-27  Stefan Monnier  <[email protected]>

	* textmodes/tex-mode.el (latex-mode): `tex-trailer' is not a regexp.

2003-11-27  Kim F. Storm  <[email protected]>

	* subr.el (posn-object-x-y): New defun.

2003-11-26  Stefan Monnier  <[email protected]>

	* progmodes/make-mode.el (makefile-font-lock-syntactic-keywords):
	Don't use `space' for \\\n.
	Be more selective as to which # are comment-starters.

2003-11-26  Luc Teirlinck  <[email protected]>

	* subr.el (number-sequence): Improve handling of floating point
	arguments (suggested by Kim Storm).  Allow negative arguments.

2003-11-26  Kenichi Handa  <[email protected]>

	* international/mule-cmds.el (standard-display-european-internal):
	Cancel the standard-display-table setting for ` and '.

2003-11-26  Kim F. Storm  <[email protected]>

	* ido.el (ido-use-filename-at-point, ido-use-url-at-point):
	New defcustoms to add ffap-like functionality to ido.
	(ido-saved-vc-hb): Rename from ido-saved-vc-mt.  Uses changed.
	(ido-no-final-slash): New defun.
	(ido-make-prompt, ido-file-internal, ido-toggle-vc)
	(ido-read-file-name): ): Toggle VC checking via
	vc-handled-backends instead of vc-master-templates.
	(ido-file-internal): Handle ido-use-url-at-point and
	ido-use-filename-at-point via code borrowed from ffap-guesser.
	Handle new ido-exit code ffap.
	(ido-sort-list): Ignore final slash when sorting file names.

2003-11-25  Kim F. Storm  <[email protected]>

	* emulation/cua-base.el (cua--standard-movement-commands):
	Add forward-sentence and backward-sentence.

2003-11-25  Stephen Eglen  <[email protected]>

	* iswitchb.el (iswitchb-read-buffer,iswitchb-exit-minibuffer):
	iswitchb-exit is set to 'usefirst when user selects buffer at head
	of list using RET.  (Selecting buffers at the head of the list was
	broken if the substring was also a complete buffername.)

2003-11-23  Kim F. Storm  <[email protected]>

	* progmodes/compile.el (grep-command, grep-use-null-device)
	(grep-find-command, grep-tree-command, grep-tree-files-aliases)
	(grep-tree-ignore-case, grep-tree-ignore-CVS-directories)
	(grep-regexp-alist, grep-program, find-program)
	(grep-find-use-xargs, grep-history, grep-find-history)
	(grep-process-setup, grep-compute-defaults)
	(grep-default-command, grep, grep-tag-default, grep-find)
	(grep-expand-command-macros, grep-tree-last-regexp)
	(grep-tree-last-files, grep-tree): Move grep variables, functions
	and commands to new file grep.el.
	(compilation-mode-map): Remove grep commands from Compile sub-menu.
	(compilation-process-setup-function): Doc fix.
	(compilation-highlight-regexp, compilation-highlight-overlay): New
	defvars used for highlighting current compile error in source buffer.
	(compile-internal): New optional args HIGHLIGHT-REGEXP and
	LOCAL-MAP which overrides compilation-highlight-regexp and
	compilation-mode-map for this compilation.
	Delay calling compilation-set-window-height until after running
	compilation-process-setup-function so it can buffer-local override
	compilation-window-height.
	Check buffer-local value of compilation-scroll-output.
	(compilation-set-window-height): Use buffer-local value of
	compilation-window-height.
	(compilation-revert-buffer): Don't pass (undefined)
	preserve-modes arg to revert-buffer.
	(next-error-no-select, previous-error-no-select): New commands.
	(compilation-goto-locus): Temporarily highlight current match in
	source buffer using compilation-highlight-regexp.

	* progmodes/grep.el: New file with grep code from compile.el.
	(grep): New defcustom group.
	(grep-window-height): New defcustom, like compilation-window-height.
	(grep-auto-highlight): New defcustom, like compile-auto-highlight.
	(grep-scroll-output): New defcustom, like compilation-scroll-output.
	(grep-command, grep-use-null-device, grep-find-command)
	(grep-tree-files-aliases, grep-tree-ignore-case)
	(grep-tree-ignore-CVS-directories): Move to grep custom group.
	(grep-setup-hook): New hook variable.
	(grep-mode-map): New keymap for grep commands.  Add Grep menu.
	(grep-last-buffer): New defvar, override compilation-last-buffer.
	(grep): Add optional arg HIGHLIGHT-REGEXP.  Doc fix.
	Call compile-internal with args highlight-regexp and grep-mode-map.

2003-11-23  Kim F. Storm  <[email protected]>

	* subr.el (event-start, event-end): Doc fix.
	(posn-window, posn-x-y, posn-timestamp): Simplify doc.
	(posn-area, posn-actual-col-row, posn-object): New defuns.
	(posn-col-row): Simplify doc.  Rewrite to use cond.
	(posn-point): Also return buffer position for events outside text
	area (that info is now present in the event position).

	* mouse.el: Bind mouse-1 on left-fringe and right-fringe to
	mouse-set-point so that hscroll still works now that clicks on
	fringes generate specific mouse events.
	(mouse-set-point): Note that it now works in fringes and margins
	too due to new semantics of posn-point in fringes and margins.

	* gdb-ui.el (gdb-mouse-toggle-breakpoint): New defun.
	(gdba): Bind it to [left-margin mouse-1] and [left-fringe mouse-1].

2003-11-20  Kim F. Storm  <[email protected]>

	* gdb-ui.el (gud-gdba-command-name): Find gdb command via PATH.
	(breakpoint-xpm-data, breakpoint-enabled-pbm-data): Make smoother.
	(breakpoint-enabled-icon, breakpoint-disabled-icon): Set :ascent
	to 100 for icons to avoid increasing line height when shown.

2003-11-17  Jesper Harder  <[email protected]>  (tiny change)

	* newcomment.el (comment-normalize-vars): Initialize properly if
	comment-start was nil.

2003-11-19  Andreas Schwab  <[email protected]>

	* simple.el (set-variable): Fix indentation.

2003-11-17  Kenichi Handa  <[email protected]>

	* international/latin1-disp.el (latin1-display-ucs-per-lynx):
	Fix docstring.

2003-11-17  Jesper Harder  <[email protected]>  (tiny change)

	* international/latin1-disp.el (latin1-display): Fix docstring.

2003-11-16  John Wiegley  <[email protected]>

	* eshell/em-ls.el (eshell-ls-file): There are times with
	size-width is nil and uncomputed (when directories are created in
	dired, for example); in this case, 4 is reasonable default value,
	although it may caused skewed new entries (which could be avoided
	by returning the original value of 8 in all cases, but 99% of the
	time this is a waste of whitespace).

2003-11-16  Martin Stjernholm  <[email protected]>

	* cc-engine.el (c-guess-continued-construct)
	(c-guess-basic-syntax): Check a little more carefully if it's a
	function declaration when an unknown construct followed by a block
	is found inside a statement context.  This avoids macros followed
	by blocks to be taken as function declarations.

	(c-guess-continued-construct): Change the analysis of a statement
	continuation with a brace open to `substatement-block', for
	consistency with recognized statements.

	(c-add-stmt-syntax): Don't continue to the surrounding sexp if the
	start is in a position so that `c-beginning-of-statement-1' jumped
	to the beginning of the same statement.

	* cc-fonts.el, cc-engine.el (c-forward-<>-arglist-recur):
	Don't accept binary operators in the arglist if we're in a function
	call context, i.e. if `c-restricted-<>-arglists' is set.  That avoids
	template recognition in cases like "if (a < b || c > d)".

	(c-restricted-<>-arglists): New more appropriate name for
	`c-disallow-comma-in-<>-arglists'.

	Accessing functions updated for the variable name change.

	* cc-engine.el (c-syntactic-re-search-forward): Fix bug where the
	match data could get clobbered if NOT-INSIDE-TOKEN is used.

	* cc-engine.el (c-beginning-of-statement-1): Don't allow parens in
	labels.

	(c-backward-to-decl-anchor): Use `c-beginning-of-statement-1'
	instead of duplicating parts of it.  This fixes bogus label
	recognition.

	* cc-align.el (c-gnu-impose-minimum): Revert to the old method
	of checking the context in which to apply the minimum indentation,
	so that it isn't enforced in e.g. namespace blocks.

	* cc-vars.el (c-inside-block-syms): New constant used by
	`c-gnu-impose-minimum'.  It's defined close to `c-offsets-alist'
	to somewhat reduce the risk of becoming stale.

	* cc-cmds.el, cc-engine.el (c-shift-line-indentation): Move from
	cc-cmds to cc-engine to allow use from cc-align.

	* cc-engine.el (c-beginning-of-inheritance-list): Cope with fully
	qualified identifiers containing "::".

	* cc-defs.el (c-make-keywords-re): Add kludge for bug in
	`regexp-opt' in Emacs 20 and XEmacs when strings contain newlines.

	* cc-vars.el (c-emacs-features): Use a space in front of the name
	of the temporary buffer.  That also avoids dumping problems in
	XEmacs due to undo info being left around after the buffer is killed.

	* cc-engine.el (c-in-knr-argdecl): Look closer at the function
	arglist to see if it's a K&R style declaration.

	(c-guess-basic-syntax): CASE 5B.2: Check with `c-in-knr-argdecl'
	before returning `knr-argdecl-intro'.

2003-11-16  John Wiegley  <[email protected]>

	* eshell/em-ls.el (eshell-ls-file): Instead of making the size
	field in a long-listing always 8 characters, use `size-width',
	which has already been computed.

2003-11-15  Thien-Thi Nguyen  <[email protected]>

	* subr.el (minor-mode-list): Add `hs-minor-mode'.

2003-11-14  Thien-Thi Nguyen  <[email protected]>

	* diff-mode.el (diff-hunk-prev, diff-hunk-next):
	Support operation while narrowed, with `diff-restrict-view'.

2003-11-14  Thien-Thi Nguyen  <[email protected]>

	* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
	Take additional optional arg NARROWFUN.  For the generated functions:
	Add local var `was-narrowed-p'.  Also, if NARROWFUN is specified,
	include frags that arrange to check for and save narrowing state before
	the move and then conditionally call NARROWFUN after the move.

2003-11-14  John Wiegley  <[email protected]>

	* eshell/esh-var.el (eshell-parse-variable-ref): Add a backslash
	that was optional, but obviously missing based on surrounding code.

	* eshell/esh-cmd.el (eshell-lisp-command): Do not late-convert
	string arguments to numbers unless the whole argument was seen as
	a number.

2003-11-14  Kenichi Handa  <[email protected]>

	* international/mule.el (ctext-non-standard-encodings-alist):
	Fix coding systems.

2003-11-10  Kenichi Handa  <[email protected]>

	* language/kannada.el ("Kannada"): Add sample-text.

	* language/knd-util.el (kannada-compose-region)
	(kannada-compose-string, kannada-post-read-conversion):
	Add autoload cookie.

	* international/quail.el (quail-completion): Change the message
	"corresponding translations" to "corresponding characters".

2003-11-09  Markus Rost  <[email protected]>

	* descr-text.el (describe-char): Fix typo.

2003-11-08  Kailash C. Chowksey <[email protected]>

	These changes are to support Kannada language/script.

	* Makefile.in (DONTCOMPILE): Add kannada.el.

	* makefile.w32-in (DONTCOMPILE): Add kannada.el.

	* loadup.el: Preload kannada.el.

	* language/ind-util.el (ucs-kannada-to-is13194-alist)
	(is13194-to-ucs-kannada-hashtbl, is13194-to-ucs-kannada-regexp):
	New variables.

	* language/kannada.el: New file.

	* language/knd-util.el: New file.

2003-11-07  Andreas Schwab  <[email protected]>

	* progmodes/autoconf.el (autoconf-font-lock-keywords):
	Also highlight AH_*.

	* xml.el (xml-parse-dtd): Fix misplaced paren.

2003-11-07  Kenichi Handa  <[email protected]>

	* language/european.el (windows-1252): Fix table (0x8F and 0x9E).

2003-11-05  Juri Linkov  <[email protected]>

	* desktop.el (desktop-locals-to-save): Add buffer-file-coding-system.
	(desktop-buffer-file): Use saved buffer-file-coding-system
	for file reading.  Set auto-insert to nil to prevent automatic
	insertion into restored empty files.

2003-11-04  Luc Teirlinck  <[email protected]>

	* files.el (risky-local-variable-p): Make second argument optional.

2003-11-03  Stefan Monnier  <[email protected]>

	* subr.el (add-hook): Fix last change.

2003-11-03  Eli Zaretskii  <[email protected]>

	* mail/rmail.el (rmail-convert-to-babyl-format):
	If base64-decode-region signals an error, catch it and silently
	ignore it.

2003-11-01  Mark A. Hershberger  <[email protected]>

	* xml.el (xml-parse-region): Allow comments to appear after the
	topmost element has closed.
	(xml-ns-parse-ns-attrs, xml-ns-expand-el)
	(xml-ns-expand-attr): New functions to do namespace handling.
	(xml-intern-attrlist): Back-compatible handling of attribute names.
	(xml-parse-tag): Move namespace handling to seperate functions.
	Now produces elements in the form ((:ns . "element") (attr-list)
	children) instead of ('ns:element (attr-list) children).
	(xml-parse-attlist): Fix attribute parsing.
	(xml-parse-dtd): Change parsing so that it produces strings
	instead of interned symbols.

2003-11-01  [email protected]  <[email protected]>  (tiny change)

	* dired.el (dired-ls-sorting-switches): Doc fix.

2003-11-01  Oliver Scholz  <[email protected]>

	* emacs-lisp/rx.el (rx-or): Fix the case of
	"(rx (and ?a (or ?b ?c) ?d))".

2003-11-01  Christoph Wedler  <[email protected]>  (tiny change)

	* textmodes/texinfmt.el (texinfo-pre-format-hook): New variable.
	(texinfo-format-region): Use it.
	(texinfo-format-buffer-1): Ditto.

2003-11-01  Alan Mackenzie  <[email protected]>

	Changes to allow scrolling whilst in isearch mode:
	* isearch.el (isearch-unread-key-sequence): New function,
	extracted from isearch-other-meta-char.
	(top level): (put 'foo 'isearch-scroll) on all Emacs's
	"scrollable" standard functions.
	(isearch-allow-scroll): New customizable variable.
	(isearch-string-out-of-window, isearch-back-into-window)
	(isearch-reread-key-sequence-naturally)
	(isearch-lookup-scroll-key): New functions.
	(isearch-other-meta-char): Doc string and functionality enhanced.
	Now accepts a prefix argument.
	(isearch-lazy-highlight-window-end): New variable.
	(isearch-lazy-highlight-new-loop): Pay attention to the window's
	end (thru isearch-lazy-highlight-window-end), not only its start.

	* simple.el (overriding-map-is-bound, saved-overriding-map): New vars.
	(ensure-overriding-map-is-bound, restore-overriding-map): New funs.
	(universal-argument, universal-argument-more, negative-argument)
	(digit-argument, universal-argument-other-key): Minor changes.

2003-11-01  Alexander Pohoyda  <[email protected]>  (tiny change)

	* mail/rmailsum.el (rmail-summary-goto-msg): Don't call itself
	recursively if the last message is deleted, thus avoiding an
	infinite loop.

2003-10-30  Stefan Monnier  <[email protected]>

	* textmodes/tex-mode.el (tex-compile-commands): Add `yap' and `ps2pdf'.
	(tex-main-file): Don't add .tex if the extension is already present.
	(tex-uptodate-p): Don't recurse indefinitely with symlinks.

2003-10-29  Lute Kamstra  <[email protected]>

	* progmodes/octave-inf.el (inferior-octave-prompt):
	Recognize version number in prompt.

2003-10-28  Dave Love  <[email protected]>

	* international/characters.el: Fix some Unicode ranges.

2003-10-28  Kenichi Handa  <[email protected]>

	* disp-table.el (standard-display-8bit)
	(standard-display-default, standard-display-ascii)
	(standard-display-g1, standard-display-graphic)
	(standard-display-underline): Assure that standard-display-table
	is a display table.

2003-10-27  Stefan Monnier  <[email protected]>

	* simple.el (reindent-then-newline-and-indent): Delete space *after*
	reindenting the first line.

2003-10-25  Per Abrahamsen  <[email protected]>

	* wid-edit.el (widget-default-delete): Always delete child widgets.

2003-10-24  Stefan Monnier  <[email protected]>

	* newcomment.el (comment-indent): Don't call indent-according-to-mode
	if the line has code.
	Don't try to line up with something that's too far left.

	* progmodes/octave-mod.el (octave-comment-start): Simplify.
	(octave-mode-syntax-table): Add % as a comment starter.
	(octave-point): Remove.
	(octave-in-comment-p, octave-in-string-p)
	(octave-not-in-string-or-comment-p, calculate-octave-indent)
	(octave-blink-matching-block-open, octave-auto-fill):
	Use line-(beginning|end)-position instead.

2003-10-23  Francesco Potort,Al(B  <[email protected]>

	* emacs-lisp/authors.el (authors-aliases): Add correct realname
	for Francesco Potort,Al(B.

2003-10-23  Dave Love  <[email protected]>

	* international/mule-cmds.el (locale-charset-to-coding-system):
	Don't rely on nil being a coding system.

	* mail/mail-extr.el (mail-extr-ignore-single-names): Add :version.
	(mail-extr-address-syntax-table): Remove non-ASCII unibyte chars.
	(mail-extr-voodoo): Use char classes in regexps (for non-ASCII).

2003-10-21  Nick Roberts  <[email protected]>

	* gdb-ui.el (gdb-current-language): New variable.
	(gdb-update-flag): Remove variable.
	(gud-watch, gdb-frame-handler): Adapt for other languages (Fortran).
	(gdb-take-last-elt): Remove function.
	(gdb-dequeue-input): Avoid recursion by not using gdb-take-last-elt.
	(gdb-post-prompt): Check for variable object changes here.

	* progmodes/gud.el (gud-speedbar-buttons): Check for variable
	object changes in gdb-ui.el.

2003-10-21  Richard M. Stallman  <[email protected]>

	* emacs-lisp/edebug.el (edebug-display-freq-count): Doc fix.

	* ls-lisp.el (ls-lisp-insert-directory): Arg is now wildcard-regexp.
	Don't check for foo*/ wildcard form here.
	(insert-directory): Recognize foo*/ as a wildcard.
	Separate wildcard-regexp variable from the arg, wildcard.

	* subr.el (add-hook): Correctly detect when make-local-hook was used.
	(remove-hook): Correctly handle strange cases about local hooks.

2003-10-21  David Ponce  <[email protected]>

	* ruler-mode.el (ruler-mode-left-fringe-cols): Add new optional
	argument REAL, to return a real number instead of a rounded
	integer value.  Define as inline function.
	(ruler-mode-right-fringe-cols): Likewise.
	(ruler-mode-scroll-bar-cols): New function.
	(ruler-mode-left-scroll-bar-cols): Use it.  Define as macro.
	(ruler-mode-right-scroll-bar-cols): Likewise.
	(ruler-mode-space): New function.
	(ruler-mode-ruler): Use it.  Handle variations of fringe style,
	scroll bar mode and margins in a more robust way.

2003-10-21  Christoph Wedler  <[email protected]>

	* progmodes/antlr-mode.el: Make major mode work with cc-mode-5.30+.
	(antlr-c-init-language-vars): New function.
	(antlr-mode): Use it with cc-mode before v5.29.
	(antlr-c-common-init): Don't set some local vars here.
	(antlr-mode): Set them here.
	(antlr-c-forward-sws): New function alias.
	(antlr-mode): Redefine with cc-mode before v5.30.
	(antlr-skip-sexps): Use it.
	(antlr-skip-exception-part): Ditto.
	(antlr-skip-file-prelude): Ditto.
	(antlr-outside-rule-p): Ditto.
	(antlr-end-of-body): Ditto.
	(antlr-option-kind): Ditto.
	(antlr-insert-option-area): Ditto.
	(antlr-file-dependencies): Ditto.

2003-10-21  Roland Winkler  <[email protected]>

	* textmodes/bibtex.el (bibtex-move-outside-of-entry):
	Move backward only if point was not inside an entry.

2003-10-21  Richard M. Stallman  <[email protected]>

	* progmodes/compile.el (compile-auto-highlight): Undo July 7 change.

2003-10-21  Juri Linkov  <[email protected]>

	* compare-w.el: Automatically skip non-matching text to resync.
	(compare-windows-whitespace): Doc fix.
	(compare-windows-sync, compare-windows-sync-string-size)
	(compare-windows-recenter, compare-ignore-whitespace)
	(compare-windows-highlight, compare-windows-face): New variables.
	(compare-windows): Use compare-windows-sync.
	(compare-windows-highlight, compare-windows-dehighlight)
	(compare-windows-sync-regexp)
	(compare-windows-sync-default-function): New functions.

2003-10-21  Juri Linkov  <[email protected]>

	* diff.el (diff-parse-differences): Don't visit the files now;
	instead, just record the error locus.

2003-10-21  Dave Love  <[email protected]>

	* progmodes/cfengine.el: New file.

2003-10-20  Stefan Monnier  <[email protected]>

	* complete.el (PC-do-completion): Do not forget to use `pred' as the
	default-directory when completing file names.

2003-10-20  Luc Teirlinck  <[email protected]>

	* help-mode.el (help-make-xrefs): Make sure that if a symbol is
	followed by the word `face', it gets treated as a face, even if
	it is also defined as a variable or a function.

2003-10-20  Dave Love  <[email protected]>

	* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
	Avoid incf in macro expansion.

2003-10-20  John Paul Wallington  <[email protected]>

	* emacs-lisp/elint.el (elint-check-defcustom-form): Don't use
	`evenp'	so we don't implicitly require cl library at runtime.

2003-10-18  Luc Teirlinck  <[email protected]>

	* help-mode.el (help-xref-symbol-regexp): Treat newlines as whitespace.
	(help-make-xrefs): Only make cross-references for faces if
	preceded or followed by the word `face'.  Do not make a
	cross-reference for variables without variable documentation,
	unless preceded by the word `variable' or `option'.  Update doc
	string accordingly.

2003-10-18  Thien-Thi Nguyen  <[email protected]>

	* progmodes/hideshow.el: Rewrite one-armed `if'
	constructs using either `when' or `unless'.
	(hs-grok-mode-type): Elide superfluous `progn'; nfc.

2003-10-16  Nick Roberts  <[email protected]>

	* gdb-ui.el (breakpoint-xpm-data, breakpoint-enabled-pbm-data)
	(breakpoint-disabled-pbm-data): Make breakpoint icons 10x10
	instead of 12x12.

2003-10-16  Eli Zaretskii  <[email protected]>

	* mail/rmail.el (rmail-convert-to-babyl-format): Display a
	message while converting to Babyl.

2003-10-16  Vadim Nasardinov  <[email protected]>  (tiny change)

	* allout.el (allout-mode): Doc fix.

2003-10-16  Lute Kamstra  <[email protected]>

	* subr.el (force-mode-line-update): Fix docstring.

2003-10-14  Dave Love  <[email protected]>

	* international/mule-cmds.el (find-multibyte-characters): Doc fix.
	(default-input-method): Add :link, improve :type.
	(locale-charset-language-names): Fix utf-8 pattern.
	(locale-charset-match-p, locale-charset-alist)
	(locale-charset-to-coding-system): New.
	(set-locale-environment): Deal with codeset part of locale specs.

2003-10-14  Lute Kamstra  <[email protected]>

	* fringe.el (fringe-mode): Use active voice in docstring.
	(set-fringe-style): Ditto.

2003-10-13  Lute Kamstra  <[email protected]>

	* fringe.el (fringe-mode): Fix docstring.
	(set-fringe-style): Ditto.

2003-10-12  Michael Kifer  <[email protected]>

	* ediff-mult.el (ediff-filegroup-action):
	Use ediff-default-filtering-regexp.

	* ediff-util.el (ediff-recenter): Don't call
	ediff-restore-highlighting twice.
	(ediff-select-difference): Set current difference.
	(ediff-unselect-and-select-difference): Add comment.

	* ediff.el (ediff-directories,ediff-directory-revisions)
	(ediff-directories3,ediff-merge-directories)
	(ediff-merge-directories-with-ancestor)
	(ediff-merge-directory-revisions)
	(ediff-merge-directory-revisions-with-ancestor):
	Use ediff-default-filtering-regexp.

2003-10-12  Andreas Schwab  <[email protected]>

	* international/mule-cmds.el (locale-charset-language-names):
	Simplify regex by removing unused grouping.

2003-10-10  Dave Love  <[email protected]>

	* bindings.el: Don't bind stop.

2003-10-08  Miles Bader  <[email protected]>

	* gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
	face instead of attempting to emulate it.

2003-10-07  Kenichi Handa  <[email protected]>

	* international/mule-diag.el (list-coding-systems-1): List coding
	systems that are loaded automatically.

	* international/code-pages.el (iso-8859-11): Add autoload cookie.

	* international/mule.el (autoload-coding-system): New function.

2003-10-07  Andreas Schwab  <[email protected]>

	* log-edit.el (log-edit-changelog-entries): Prefer local value of
	change-log-default-name in the buffer visiting the file.

2003-10-06  Dave Love  <[email protected]>

	* files.el (find-file-hook): Customize.
	(auto-mode-alist): Add .stk, .ss, .sch, .orig.

	* bindings.el (completion-ignored-extensions): Remove .log.
	(global-map): Add again, open, stop keys.

2003-10-05  Richard M. Stallman  <[email protected]>

	* progmodes/sh-script.el (sh-feature): Handle sh-modify like sh-append.
	(sh-for, sh-indexed-loop, sh-function, sh-while, sh-while-getopts):
	Use sh-modify directly.
	(sh-select): Use sh-append, not eval.

	* mail/emacsbug.el (report-emacs-bug): Fix previous change.

	* info.el (Info-following-node-name): New function.

	* loadhist.el (unload-feature-special-hooks):
	Rename from loadhist-hook-functions.
	(loadhist-hook-functions): Now an alias.

2003-10-04  Eli Zaretskii  <[email protected]>

	* ldefs-boot.el: Renamed from loaddefs-boot.el, to prevent
	file-name clashes on 8+3 filesystems.

	* Makefile.in (DONTCOMPILE, bootstrap-clean):
	Rename loaddefs-boot.el to ldefs-boot.el

	* makefile.w32-in (DONTCOMPILE, bootstrap-clean-CMD)
	(bootstrap-clean-SH): Rename loaddefs-boot.el to ldefs-boot.el

2003-10-03  Lute Kamstra  <[email protected]>

	* info.el (Info-mode): Revert previous change.
	(Info-escape-percent): New function.
	(Info-fontify-node): Use it.

2003-10-02  Andreas Schwab  <[email protected]>

	* loaddefs-boot.el: Regenerated.

2003-10-01  Rajesh Vaidheeswarran  <[email protected]>

	* ffap.el: Remove defadvice related code from CVS since `complete'
	provides a `PC-completion-as-file-name-predicate' variable that
	ffap can override.

2003-10-02  Kenichi Handa  <[email protected]>

	* international/utf-8.el (ccl-decode-mule-utf-8):
	Lookup utf-subst-table-for-decode even for U+E000..U+FFFF.

	* international/subst-jis.el: Include U+FF00..U+FFEF in decode table.
	* international/subst-big5.el: Likewise.
	* international/subst-gb2312.el: Likewise.
	* international/subst-ksc.el: Likewise.

2003-10-01  Glenn Morris  <[email protected]>

	* calendar/calendar.el (increment-calendar-month)
	(calendar-leap-year-p, calendar-absolute-from-gregorian)
	(generate-calendar, calendar-read-date, calendar-interval)
	(calendar-day-of-week): Handle years BC.
	(generate-calendar-month, calendar-gregorian-from-absolute): Doc fix.

2003-10-01  Dave Love  <[email protected]>

	* language/cyrillic.el (cp1251): Alias for windows-1251.

	* vc-cvs.el (vc-cvs-parse-entry): Revert last change to allow
	bootstrap.

2003-10-01  Lute Kamstra  <[email protected]>

	* files.el: Fix typo.
	* imenu.el (imenu--generic-function): Docstring fix.

2003-09-30  Richard M. Stallman  <[email protected]>

	* dired.el (dired-mode): Handle dired-directory as a list.

2003-09-30  Nick Roberts  <[email protected]>

	* toolbar/gud-watch.xpm, toolbar/gud-watch.pbm: Add.

	* toolbar/gud-display.xpm, toolbar/gud-display.pbm: Remove.

	* progmodes/gud.el (gud-menu-map, gud-tool-bar-map):
	Replace gud-display with gud-watch.
	(gud-speedbar-buttons): Add stuff for watching expressions
	in the speedbar when using M-x gdba. Use dolist on old part
	of this function.

	* gdb-ui.el (gdb-var-list, gdb-var-changed, gdb-update-flag)
	(gdb-update-flag): New variables.
	(gdb-var-update, gdb-var-update-handler,gdb-var-delete)
	(gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
	(gud-watch, gdb-var-create-handler) : New functions.
	(gdb-var-list-children, gdb-var-list-children-handler)
	(gdb-var-create-regexp, gdb-var-update-regexp)
	(gdb-var-list-children-regexp): New constants.
	(gud-gdba-command-name): Don't specify -noasync so that GDB/MI works.
	(gdb-annotation-rules): Reduce annotation set (level 3).
	(gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
	(gdb-post-prompt): Don't update GDB buffers every time speedbar
	updates.
	(gdb-window-height, gdb-window-width, gdb-display-in-progress)
	(gdb-expression-buffer-name, gdb-display-number, gdb-point)
	(gdb-dive-display-number, gdb-nesting-level, gdb-expression)
	(gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
	(gdb-array-stop, gdb-array-slice-map, gdb-display-string)
	(gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
	(gdb-expressions-mode-menu, gdb-dive): Remove variables.
	(gud-display, gud-display1)
	(gdb-display-begin,gdb-display-number-end, gdb-delete-line)
	(gdb-display-end, gdb-display-go-back, gdb-array-section-end)
	(gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
	(gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
	(gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
	(gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
	(gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
	(gdb-display-display-buffer, gdb-toggle-display)
	(gdb-delete-display, gdb-expressions-popup-menu)
	(gdb-expressions-mode, gdb-array-visualise): Remove functions.
	(gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
	to display buffer.

2003-09-30  Richard M. Stallman  <[email protected]>

	* progmodes/ada-mode.el (ada-mode): Don't use advice.
	Instead, set which-func-functions.

	* progmodes/which-func.el (which-func-modes): Add ada-mode.
	(which-func-functions): New variable.
	(which-function): Use that.

	* info.el (Info-mode): Double each `%' in header line.

	* emacs-lisp/lisp-mnt.el (lm-with-file):
	When FILE is nil, run BODY in current buffer.

	* mail/emacsbug.el (report-emacs-bug): Mention major and minor modes.

	* help.el (describe-mode): Start with a brief list of minor modes.
	Find them thru minor-mode-list so as to find them all.
	Show them in alphabetical order.

	* mail/sendmail.el (mail-aliases): Doc fix.

	* progmodes/sh-script.el (sh-mode-syntax-table): Add defvar.

2003-09-30  Alexander Pohoyda  <[email protected]>  (tiny change)

	* mail/rmailsum.el (rmail-make-summary-line-1):
	Change comma after last label to a space.
	(rmail-summary-font-lock-keywords): Adapt to that change.

2003-09-30  Thien-Thi Nguyen  <[email protected]>

	* progmodes/scheme.el (scheme-mode-variables): When setting
	`font-lock-defaults', also specify that "#" should
	be interpreted with `word' syntax.
	(scheme-font-lock-keywords-2): Also interpret "#:foo" as keyword.

2003-09-30  Lars Hansen  <[email protected]>

	* desktop.el: A lot of comments updated.
	(desktop-save-mode): Minor mode introduced.
	(desktop-enable, desktop-clear-preserve-buffers): Make vars obsolete.
	(desktop-load-default): Function made obsolete.
	(desktop-locals-to-save): Variable made customizable.
	(desktop-read): Optional parameter `dirname' added.
	(desktop-change-dir, desktop-revert): Parameter `dirname' in
	`desktop-read' used.
	(desktop-save-in-load-dir): Rename to `desktop-save-in-desktop-dir'.

2003-09-29  Rajesh Vaidheeswarran  <[email protected]>

	* whitespace.el (whitespace-clean-msg): Add user customizable message
	for displaying ``clean'' output.
	(whitespace-buffer): Use `whitespace-clean-msg'.
	(whitespace-global-mode): Fix typo.

2003-09-29  Thien-Thi Nguyen  <[email protected]>

	* pcvs.el (cvs-mode-unmark-up): Move to goal column when done.

2003-09-29  Lute Kamstra  <[email protected]>

	* bindings.el (mode-line-modes): Remove superfluous :propertize
	construct in initialization.
	(mode-line-position): Change cons cell into proper list in
	initialization.

2003-09-29  SAITO Takuya <[email protected]>  (tiny change)

	* international/mule.el (decode-coding-inserted-region): Use car
	of the return value of find-operation-coding-system.

2003-09-29  Kenichi Handa  <[email protected]>

	* descr-text.el (describe-char): Fix previous change.

2003-09-28  Kenichi Handa  <[email protected]>

	* descr-text.el (describe-char-display): New function.
	(describe-char): Pay attention to display table on describing how
	a character is displayed.

	* international/mule-cmds.el (encoded-string-description):
	Prepend "0x" to each encoded byte.

2003-09-28  Andreas Schwab  <[email protected]>

	* find-file.el (ff-special-constructs): Add autoload cookie.

2003-09-28  Kevin Ryde  <[email protected]>

	* info.el (Info-find-index-name): Remove any "<n>" suffixes which
	makeinfo appends to duplicate index entries.

2003-09-28  Eli Zaretskii  <[email protected]>

	* dired-x.el (dired-clean-tex): Doc fix.

	* language/chinese.el ("Chinese-GB", "Chinese-BIG5"): Set up for
	using a Chinese tutorial.

2003-09-28  Jesper Harder  <[email protected]>  (tiny change)

	* mail/smtpmail.el (smtpmail-via-smtp): Don't insert a space
	between "MAIL FROM:" and "RCPT TO:" and the following address.

2003-09-28  Jesper Harder  <[email protected]>  (tiny change)

	* textmodes/text-mode.el (paragraph-indent-minor-mode): Doc fix.

2003-09-28  David Ponce  <[email protected]>

	* recentf.el (recentf-initialize-file-name-history): New defcustom.
	(recentf-load-list): When `recentf-initialize-file-name-history'
	is non-nil, initialize an empty `file-name-history' with the
	recent list.

2003-09-28  Evgeni Dobrev  <[email protected]> (tiny patch)

	* man.el (Man-default-man-entry): Remove the leading `*' from the
	word at point.

2003-09-26  Lute Kamstra  <[email protected]>

	* bindings.el (mode-line-position): Mention size indication in
	docstring.

2003-09-26  Andre Spiegel  <[email protected]>

	* calendar/parse-time.el (parse-time-string): Add autoload cookie.

	* vc-cvs.el (vc-cvs-parse-entry): Don't require parse-time,
	because it's autoloaded now.

2003-09-25  Glenn Morris  <[email protected]>

	* progmodes/sh-script.el (sh-builtins): Add bash `shopt' builtin.
	(sh-font-lock-keywords, sh-feature): Fix previous change of
	sh-feature to avoid infloop with sh-font-lock-keywords.

2003-09-25  Kim F. Storm  <[email protected]>

	* frame.el (frame-current-scroll-bars): New defun.

	* window.el (window-current-scroll-bars): New defun.

2003-09-24  Martin Stjernholm  <[email protected]>

	* progmodes/cc-engine.el (c-parse-state): Fix bug that could
	cause errors when the state cache contains info on parts that have
	been narrowed out.

2003-09-24  Martin Stjernholm  <[email protected]>

	* progmodes/cc-vars.el (c-comment-prefix-regexp): Document that
	`c-setup-paragraph-variables' has to be used when this variable is
	changed; it doesn't work to reinitialize the mode since that
	typically clobbers the variable.

	* progmodes/cc-styles.el (c-setup-paragraph-variables):
	Make it interactive.

2003-09-24  Martin Stjernholm  <[email protected]>

	* progmodes/cc-fonts.el (c-font-lock-declarations):
	Fix recognition of constructors and destructors for classes whose
	names are matched by `*-font-lock-extra-types'.

	* progmodes/cc-langs.el (c-type-list-kwds): If "operator" is
	followed by an identifier in C++ then it's a type.

2003-09-24  Martin Stjernholm  <[email protected]>

	* progmodes/cc-fonts.el (c-font-lock-invalid-string): Fix eob
	problem that primarily affected XEmacs.  Don't use faces to find
	unterminated strings since Emacs and XEmacs fontify strings
	differently - this function should now work better in XEmacs.

2003-09-24  Martin Stjernholm  <[email protected]>

	* progmodes/cc-cmds.el (c-electric-brace): Fix a bug in the
	`expand-abbrev' workaround which caused braces to misbehave inside
	macros.

	* progmodes/cc-engine.el (c-forward-keyword-clause): Fix error
	handling.  This bug could cause interactive font locking to bail out.

2003-09-24  Martin Stjernholm  <[email protected]>

	* progmodes/cc-engine.el (c-just-after-func-arglist-p):
	Handle paren-style types in Pike.  Also fixed some cases of
	insufficient handling of unbalanced parens.

2003-09-24  Rajesh Vaidheeswarran  <[email protected]>

	* ffap.el (ffap-shell-prompt-regexp): Add regexp to identify
	common shell prompts that are not common filename or URL characters.
	(ffap-file-at-point): Use the new regexp to strip the prompts from
	the file names. This is an issue mostly for user prompts that
	don't have a trailing space and find-file-at-point is invoked from
	within a shell inside emacs.

2003-09-24  Andre Spiegel  <[email protected]>

	* vc-cvs.el (vc-cvs-parse-entry): Restore the code to compare time
	stamps numerically, rather than textually.

2003-09-24  Kenichi Handa  <[email protected]>

	* language/devan-util.el (devanagari-post-read-conversion):
	* language/mlm-util.el (malayalam-post-read-conversion):
	* language/tml-util.el (tamil-post-read-conversion):
	Add autoload cookie.

	* international/utf-8.el (utf-8-post-read-conversion):
	Call post-read-conversion functions for Devanagari, Malayalam,
	and Tamil.

2003-09-23  Dave Love  <[email protected]>

	* Makefile.in (bootstrap-clean): Fix misplaced `!'.

2003-09-22  Nick Roberts  <[email protected]>

	* progmodes/gud.el (perldb): Add gud-until to list of commands.
	Update gud-remove.

2003-09-22  Richard M. Stallman  <[email protected]>

	* progmodes/sh-script.el (sh-mode-default-syntax-table):
	Rename from sh-mode-syntax-table.  Call sh-mode-syntax-table directly.
	(sh-mode-syntax-table-input): New variable.
	(sh-require-final-newline): Don't use eval.
	(sh-builtins, sh-leading-keywords, sh-other-keywords)
	(sh-variables, sh-font-lock-keywords): Don't use eval.
	(sh-set-shell): When setting require-final-newline,
	treat value = `require-final-newline' as don't change it.
	Set sh-mode-syntax-table locally based on
	sh-mode-syntax-table-input and sh-mode-default-syntax-table.

	* progmodes/compile.el (compile-internal):
	Call compilation-set-window-height before setting window start.

2003-09-22  Greg Hill  <[email protected]>  (tiny change)

	* emacs-lisp/bytecomp.el (byte-compile-log-file):
	Clear out byte-compile-last-warned-form.

2003-09-22  Richard M. Stallman  <[email protected]>

	* woman.el (woman-file-name, woman-follow-word):
	If current-word returns nil, use "".

	* simple.el (eval-expression): Bind standard-output in to-buffer case.

2003-09-22  Richard M. Stallman  <[email protected]>

	* emacs-lisp/lisp-mnt.el (lm-with-file):
	Don't visit the file, just use insert-file-contents in temp buffer.

2003-09-22  Jari Aalto  <[email protected]>

	* emacs-lisp/lisp-mnt.el (lm-get-header-re):
	Add surrounding \\( and \\) around the header, as in
	for lm-history-header 'Change Log\\|History'.

2003-09-22  John Paul Wallington  <[email protected]>

	* progmodes/ld-script.el: Add Commentary section,
	minor cleanup of file header.
	(ld-script-font-lock-keywords): Doc fix.
	(toplevel): Provide `ld-script' feature.

2003-09-21  Kim F. Storm  <[email protected]>

	* scroll-bar.el (set-scroll-bar-mode): Initialize to
	new built-in variable default-frame-scroll-bars.
	(scroll-bar-mode): Use default-frame-scroll-bars when enabling
	scroll-bar-mode; notably, use it instead of t when we toggle
	scroll-bars on.
	(toggle-scroll-bar): Use default-frame-scroll-bars.

2003-09-19  Masatake YAMATO  <[email protected]>

	* pcvs.el (cvs-do-removal): Change the prompt depending on
	`filter' value.

2003-09-19  Glenn Morris  <[email protected]>

	* startup.el (command-line-1): Stop startup-echo-area-message
	being hidden by "Loading image..." message.
	(use-fancy-splash-screens-p, display-splash-screen):
	Move display-graphic-p test from latter to former.

	* progmodes/sh-script.el (sh-font-lock-keywords):
	Highlight escaped EOLs differently from other backslash constructs.

2003-09-19  Richard M. Stallman  <[email protected]>

	* emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status):
	New functions.
	(edebug-enter, edebug-outside-excursion): Use them.

	* emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
	Fix the condition for whether to print "In WHERE".

2003-09-19  Jari Aalto  <[email protected]>

	* finder.el (finder-mode-hook): New variable.
	(finder-mode): Run hook finder-mode-hook

2003-09-18  Masatake YAMATO  <[email protected]>

	* progmodes/ebrowse.el: Fix broken magic autoload comments.

2003-09-17  Mario Lang  <[email protected]>

	* progmodes/gud.el (perldb): Change gud-print from just "%e" to
	"p %e" to actually print the value in the GUD buffer.

2003-09-16  Miles Bader  <[email protected]>

	From David Ponce <[email protected]>:
	* makefile.w32-in (DONTCOMPILE): Add loaddefs-boot.el.
	(bootstrap-clean-CMD, bootstrap-clean-SH): Recreate loaddefs.el
	from loaddefs-boot.el if necessary.

2003-09-15  Zoltan Kemenczy <[email protected]>

	* progmodes/gud.el (gud-find-class): Make jdb work again since
	cc-mode changed the syntactic information.

2003-09-15  David Ponce  <[email protected]>

	* recentf.el: (recentf-exclude): Accept predicates too.
	(recentf-file-readable-p): New function.
	(recentf-include-p): Handle predicates in recentf-exclude.
	(recentf-add-file): Doc fix.  Use recentf-file-readable-p.
	(recentf-cleanup): Likewise.
	(recentf-save-list): Use write-file to handle backup of
	recentf-save-file.

2003-09-15  Miles Bader  <[email protected]>

	* loaddefs-boot.el: Renamed from `loaddefs.el'
	* Makefile.in (DONTCOMPILE): Add loaddefs-boot.el.
	(bootstrap-clean): Recreate loaddefs.el from loaddefs-boot.el if
	necessary.

2003-09-13  Thien-Thi Nguyen  <[email protected]>

	* electric.el (Electric-pop-up-window): For the `one-window' case,
	no longer disconcertingly move point in the original buffer.

2003-09-12  Stefan Monnier  <[email protected]>

	* emacs-lisp/tq.el (tq-create): Fix mixed up unquote style.

2003-09-12  Eric Hanchrow <[email protected]>  (tiny change)

	* dired.el (dired-mode-map): Fix typo.

2003-09-11  Richard M. Stallman  <[email protected]>

	* dired.el (dired-mode-map): Bind M-g to dired-goto-file.

2003-09-11  Paul Pogonyshev  <[email protected]>  (tiny change)

	* window.el (kill-buffer-and-window): Remove `yes-or-no-p' so that
	the function is less noisy.  Now only `kill-buffer' can ask questions.

2003-09-10  Mario Lang  <[email protected]>

	* battery.el: Update Commentary and Copyright.
	(battery-linux-proc-acpi): Fix a bug in %b which made "!" never
	appear due to wrong ordering of the expressions in `or'.

2003-09-09  Lute Kamstra  <[email protected]>

	* misc.el (upcase-char): Fix docstring.
	(zap-up-to-char): New command.

2003-09-08  David Ponce  <[email protected]>

	Ensure that recentf correctly updates the menu bar.
	* recentf.el (recentf-menu-path,recentf-menu-before): Doc fix.
	(recentf-menu-bar): New function.
	(recentf-clear-data): Use it
	(recentf-update-menu): Likewise.  Use easy-menu-add-item instead
	of easy-menu-change.

2003-09-08  Lute Kamstra  <[email protected]>

	* simple.el (size-indication-mode): New.
	* bindings.el (mode-line-position): Add buffer size indicator.

2003-09-04  Mario Lang  <[email protected]>

	* battery.el (battery-linux-proc-acpi): New function.
	(battery-status-function): Modify default value calculation to also
	check for availability of ACPI.
	(battery-echo-area-format): Ditto.
	(battery-mode-line-format): Ditto.

2003-09-06  Dave Love  <[email protected]>

	* ielm.el (ielm-mode-hook): Add :options.

	* emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function): New.
	(eldoc-print-current-symbol-info): Use it.

2003-09-04  Nick Roberts  <[email protected]>

	* gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
	being displayed in GUD buffer.
	(gdb-idle-input-queue): Remove var. Use just one queue.
	(gdb-enqueue-idle-input,gdb-dequeue-idle-input):
	Remove functions.  Use just one queue.
	(gdb-prompt, gdb-subprompt, def-gdb-auto-update-trigger)
	(gdb-invalidate-assembler, gdb-get-current-frame):
	Modify functions.  Use just one queue.

2003-09-04  Dave Love  <[email protected]>

	* cus-start.el: Add blink-cursor-alist.

	* ruler-mode.el (ruler-mode-fill-column-char)
	(ruler-mode-current-column-char): Use char-displayable-p,
	not window-system.

	* international/codepage.el ("mule-diag"): Add eval-after-load clause.

	* language/european.el (windows-1252): Move from code-pages.

	* language/cyrillic.el ("Windows-1251"): Delete.
	("Bulgarian", "Belarusian"): Remove `features'.
	(windows-1251): Move from code-pages.

	* international/mule-diag.el (non-iso-charset-alist):
	Remove `codepage' stuff.
	(print-designation, list-coding-systems-1): Output fixes.

	* international/code-pages.el (cp-make-translation-table)
	(cp-valid-codes): Made defsubsts.
	(cp-fix-safe-chars): Delete.
	(mule-diag): Don't require.
	(windows-1251, windows-1252): Remove to cyrillic.el/european.el.
	(top-level): Check for defined coding system when defining
	cp... aliases.  Change w32-add-charset-info test to avoid warning.
	(non-iso-charset-alist): Defvar when compiling.
	(cp-make-coding-system): Doc fix.

2003-09-02  Jason Rumney  <[email protected]>

	* international/titdic-cnv.el (tsang-quick-converter): Fix broken
	line-ends from CVS before doing conversion.

2003-09-02  Glenn Morris  <[email protected]>

	* calendar/diary-lib.el (diary-header-line-flag)
	(diary-header-line-format): New variables.
	(list-diary-entries): Use them to set header line in simple diary.

	* progmodes/sh-script.el (sh-font-lock-keywords): Use something
	other than font-lock-string-face to highlight backslashes.

2003-09-01  Jason Rumney  <[email protected]>

	* international/titdic-cnv.el (tit-read-key-value): Include \r in
	regexp.

2003-09-01  Dave Love  <[email protected]>

	* mouse.el (mouse-popup-menubar, mouse-skip-word): Doc fix.

	* menu-bar.el (menu-bar-showhide-menu): Amend date and time label
	and :help; also line and column numbers labels.

	* international/mule-util.el (char-displayable-p): Move from
	latin1-disp, rename and autoload.

	* international/latin1-disp.el (latin1-char-displayable-p):
	Now obsolete alias.  Replace uses with char-displayable-p.
	(latin1-display-ucs-per-lynx): Fix last change.

	* international/mule-cmds.el (standard-display-european-internal):
	Don't use char code for Latin-1 NBSP.
	<XFree86 4>: Unfrob NBSP display table.  Set display table to use
	U+2018, U+2019 for `'.
	(select-safe-coding-system): Message fix.

2003-09-01  Kenichi Handa  <[email protected]>

	* international/fontset.el (setup-default-fontset): For Thai
	font, specify "*" family.

2003-09-01  Kevin Rodgers <[email protected]>  (tiny change)

	* progmodes/compile.el (previous-error): Accept a prefix
	argument, similarly to next-error.

2003-08-31  Masatake YAMATO  <[email protected]>

	* pcvs.el (cvs-do-removal): Use = instead of eq to check
	the number of files.  Bind the number of files to a local
	variable.  Suggested by Kevin Rodgers <[email protected]>.

2003-08-30  Eli Zaretskii  <[email protected]>

	* vc-hooks.el (vc-make-version-backup): Fix the change made on
	2003-07-26: msdos-long-file-names is a function, not a variable.

2003-08-29  Richard M. Stallman  <[email protected]>

	* mail/sendmail.el (sendmail-sync-aliases, mail-setup):
	Do nothing with mail-personal-alias-file if it is nil.

	* mail/mailabbrev.el (mail-abbrevs-sync-aliases):
	Do nothing if mail-personal-alias-file is nil.

	* term.el (term-exec-1): Bind coding-system-for-read.

	* dired.el (dired-mouse-find-file-other-window):
	Use dired-view-command-alist here, as in dired-view-file.
	(dired-view-command-alist): Use %s to substitute file name.
	Handle .ps_pages, .eps, .jpg, .gif, .png.

2003-08-29  Paul Pogonyshev  <[email protected]>  (tiny change)

	* info.el (Info-mode-map): Bind S-tab and <backtab> to
	`Info-prev-reference', instead of M-tab.

2003-08-29  Martin Stjernholm  <[email protected]>

	* simple.el (blink-matching-open): Work correctly on chars that
	are designated as parens through the syntax-table text property.

2003-08-29  Thierry Emery <[email protected]>  (tiny change)

	* kinsoku.el (kinsoku-longer, kinsoku-shorter): Do not choose a
	line break position in the middle of a non-kinsoku (e.g. latin)
	word, making it skip until either a space or a character with
	category "|".
	(kinsoku-longer): Test for end of buffer.

2003-08-28  Eli Zaretskii  <[email protected]>

	* mail/rmail.el (rmail-convert-to-babyl-format):
	Detect quoted-printable- and base64-encoded messages and decode them
	automatically.  Set the message's encoding from the charset=
	header, if any.  Decode base64-encoded messages in Mail format as well.

2003-08-26  Glenn Morris  <[email protected]>

	* mail/smtpmail.el Fix previous change:
	(smtpmail-send-queued-mail): Set smtpmail-mail-address before
	calling smtpmail-via-smtp.
	(smtpmail-via-smtp): Add fall-back values for envelope-from.

2003-08-26  John Paul Wallington  <[email protected]>

	* image.el (image-jpeg-p): Don't search beyond length of data.

2003-08-26  Martin Stjernholm  <[email protected]>

	* progmodes/cc-cmds.el (c-electric-brace): Work around for a
	misfeature in `expand-abbrev' which caused electric keywords like
	"else" to disappear if an open brace was typed directly afterwards.

2003-08-26  Martin Stjernholm  <[email protected]>

	* progmodes/cc-vars.el (c-extra-types-widget): The doc string is
	mandatory in `define-widget'.

	* progmodes/cc-align.el, progmodes/cc-langs.el (c-lineup-math):
	Don't align the operators "!=", "<=" and ">=" as assignment operators.

	(c-assignment-operators): New language constant that only contains
	the assignment operators.

	(c-assignment-op-regexp): New language var used by `c-lineup-math'.

2003-08-26  Martin Stjernholm  <[email protected]>

	* progmodes/cc-engine.el (c-just-after-func-arglist-p):
	Safeguard against unbalanced sexps.

2003-08-26  Terje Rosten <[email protected]>

	* version.el (emacs-version): Check for gtk.  Include gtk version info.

2003-08-25  John Paul Wallington  <[email protected]>

	* man.el (Man-default-man-entry): Don't whizz past the section
	number before looking for it.

2003-08-24  Nick Roberts  <[email protected]>

	* progmodes/gud.el (gud-display-line): Don't set window-point if
	source buffer is not visible. (Only happens with M-x gdba).

	* gdb-ui.el (gdba): Remove gdb-quit (previously removed) from
	documentation.
	(gdb-source, gdb-source-info): Update to assembler unnecessary
	as its done after each GDB command anyway.
	(gdb-pre-prompt): Use with-current-buffer.
	(gdb-insert-field): Add help-echo text.
	(gdb-invalidate-assembler): Re-display of assembler now done in
	gdb-info-breakpoints-custom.
	(gdb-info-breakpoints-custom): Force re-display of assembler to
	happen *after* update of breakpoints buffer.
	(gdb-display-source-buffer): Don't choke if gdb-source-window
	isn't visible.
	(gdb-put-string, gdb-put-arrow): Remove free variables.

2003-08-24  John Paul Wallington  <[email protected]>

	* ibuffer.el (ibuffer-formats): Make name and size columns wider.

	* man.el (Man-default-man-entry): Strip text properties when
	snarfing parts of entry because `format' preserves properties.

2003-08-24  Glenn Morris  <[email protected]>

	* files.el (file-newest-backup): Use `expand-file-name'.

	* calendar/diary-lib.el (simple-diary-display, make-diary-entry):
	Allow the diary to pop up a new frame, if needed.

	* mail/sendmail.el (mail-specify-envelope-from): Doc change.
	* mail/smtpmail.el (smtpmail-mail-address): Doc change.
	(smtpmail-send-it): Make treatment of envelope-from consistent with
	sendmail.el.

	* progmodes/sh-script.el (sh-builtins): Add some bash builtins.
	(sh-leading-keywords): Add the bash `time' reserved word.
	(sh-variables): Add some bash variables.
	(sh-add-completer): Fix nil branch of case statement.

2003-08-24  Masatake YAMATO  <[email protected]>

	* progmodes/ld-script.el: New file.

2003-08-23  Markus Rost  <[email protected]>

	* vc-hooks.el (vc-ignore-vc-files, vc-master-templates): Doc fix.

2003-08-23  Andre Spiegel  <[email protected]>

	* vc-hooks.el (vc-ignore-vc-files, vc-master-templates):
	Better explain obsolescence, and what to use instead.

2003-08-23  Masatake YAMATO  <[email protected]>

	* pcvs.el (cvs-do-removal): Show the deleted file name
	on the prompt.

2003-08-20  Dave Love  <[email protected]>

	* international/mule.el (make-coding-system)
	(set-buffer-file-coding-system): Doc fix.

	* emacs-lisp/lisp-mode.el (common-lisp-mode): New.

	* emacs-lisp/lisp.el (beginning-of-defun-function): Doc fix.

	* international/utf-8.el (ucs-unicode-to-mule-cjk): Use smaller :size.

	* international/utf-16.el: Add mime-text-unsuitable coding system
	properties.

	* international/latin1-disp.el (latin1-display): Add ?$,1s"(B.

	* cus-edit.el: Add some :links.
	(bib): Remove.

	* textmodes/bib-mode.el (bib): Add :group external.

2003-08-18  Luc Teirlinck  <[email protected]>

	* wid-edit.el (widget-echo-help): Make it handle expressions that
	evaluate to strings.

2003-08-18  Michael Mauger  <[email protected]>

	Version 1.8.0 of sql-mode.  (Patch submitted 2003-06-21)

	Simplify selection of SQL products to define highlighting and
	interactive mode.  Includes detailed instructions on adding
	support for new products.

	* progmodes/sql.el (sql-product): New variable.  Identifies SQL
	product for use in highlighting and interactive mode.
	(sql-interactive-product): New variable.  SQL product for
	sql-interactive-mode.
	(sql-product-support): New variable.  Specifies product-specific
	parameters to drive highlighting and interactive mode.
	(sql-imenu-generic-expression): Add more object types.
	(sql-sqlite-options): Correct comment.
	(sql-ms-program): Use "osql" rather than "isql".
	(sql-prompt-regexp, sql-prompt-length): Update comment.
	(sql-mode-menu): Add "Start SQLi session" entry.
	Replace Highlighting submenu with Product menu.  Fix Send Region entry.
	(sql-mode-abbrev-table): Add abbreviations.  Support of
	SYSTEM-FLAG on define-abbrev.  Support was removed with last
	check-in; it now handles older Emacsen without the SYSTEM-FLAG.
	(sql-mode-font-lock-object-name): Add font-lock pattern for object
	names.
	(sql-mode-ansi-font-lock-keywords): Set as default value.
	(sql-mode-oracle-font-lock-keywords): Set as default value.
	Support Oracle 9i keywords.
	(sql-mode-postgres-font-lock-keywords): Set as default value.
	(sql-mode-linter-font-lock-keywords): Set as default value.
	(sql-mode-ms-font-lock-keywords): New variable.  Support Microsoft
	SQLServer 2000.
	(sql-mode-sybase-font-lock-keywords)
	(sql-mode-interbase-font-lock-keywords)
	(sql-mode-sqlite-font-lock-keywords)
	(sql-mode-strong-font-lock-keywords)
	(sql-mode-mysql-font-lock-keywords)
	(sql-mode-db2-font-lock-keywords): New variables.  Default to ANSI
	keywords.
	(sql-mode-font-lock-defaults): Update comment.
	(sql-product-feature): New function.  Returns feature associated
	with a product from `sql-product-support' alist.
	(sql-product-font-lock): New function.  Set font-lock support
	based on `sql-product'.
	(sql-add-product-keywords): New function.  Add font-lock rules to
	product-specific keyword variables.
	(sql-set-product): New function.  Set `sql-product' and apply
	appropriate font-lock highlighting.
	(sql-highlight-product): New function.  Set font-lock support
	based on a product.  Also set mode name to include product name.
	(sql-highlight-ansi-keywords, sql-highlight-oracle-keywords)
	(sql-highlight-postgres-keywords, sql-highlight-linter-keywords):
	Use `sql-set-product'.
	(sql-highlight-ms-keywords)
	(sql-highlight-sybase-keywords)
	(sql-highlight-interbase-keywords)
	(sql-highlight-strong-keywords)
	(sql-highlight-mysql-keywords)
	(sql-highlight-sqlite-keywords)
	(sql-highlight-db2-keywords): New functions.  Use `sql-set-product'.
	(sql-get-login): Prompt in the same order as the tokens.
	(sql-mode): Uses `sql-product-highlight' and `sql-product-font-lock'.
	(sql-product-interactive): New function.  Common portions of
	product-specific interactive mode wrappers.
	(sql-interactive-mode): Rewritten to use product features.
	(sql-oracle, sql-sybase, sql-informix, sql-sqlite, sql-mysql)
	(sql-solid, sql-ingres, sql-ms, sql-postgres, sql-interbase)
	(sql-db2, sql-linter): Use `sql-product-interactive'.
	(sql-connect-oracle, sql-connect-sybase, sql-connect-informix)
	(sql-connect-sqlite, sql-connect-mysql, sql-connect-solid)
	(sql-connect-ingres, sql-connect-postgres)
	(sql-connect-interbase, sql-connect-db2, sql-connect-linter):
	New functions.  Format command line parameters and invoke comint on
	the appropriate interpreter.  Code was in the corresponding
	`sql-xyz' function before.
	(sql-connect-ms): New function.  Support -E argument to use
	operating system credentials for authentication.

2003-08-18  Kenichi Handa  <[email protected]>

	* international/mule.el (encode-char): Fix for the ASCII case.

2003-08-15  Kenichi Handa  <[email protected]>

	* international/fontset.el (setup-default-fontset): Change "*" to
	nil in the specifications of font family.

2003-08-18  Kim F. Storm  <[email protected]>

	* kmacro.el (kmacro-keymap): Group related bindings in
	initialization for clarity.  Bind C-s to start macro.
	Remove C-r binding.
	(kmacro-initial-counter-value): New defvar to hold initial counter
	value in case we set the value before defining a macro.
	(kmacro-insert-counter): Clear kmacro-initial-counter-value..
	(kmacro-set-counter): Set kmacro-initial-counter-value if we are
	not defining or executing macro.  Doc fix.
	(kmacro-add-counter): Clear kmacro-initial-counter-value.
	(kmacro-view-last-item, kmacro-view-item-no): New defvars used to
	temporarily view older elements on the macro ring without cycling
	the ring.
	(kmacro-display): Doc fix.
	(kmacro-exec-ring-item): New helper function.
	(kmacro-call-ring-2nd): Use it.
	(kmacro-call-ring-2nd-repeat): Doc fix.
	(kmacro-start-macro): Use (and clear) kmacro-initial-counter-value.
	(kmacro-end-or-call-macro): Execute last viewed macro (using
	kmacro-exec-ring-item) from ring if this follows
	kmacro-view-macro.  This allows us to find a macro on the ring
	with C-x C-k C-v C-v ... and execute it (with C-k) without cycling
	the ring to bring it to the head of the ring.
	(kmacro-bind-to-key): Doc fix (describe reserved bindings).
	Allow binding to reserved keys without specifying C-x C-k prefix.
	Ask for confirmation if entered key sequence is already bound to
	a non-macro command.
	(kmacro-view-macro): Repeating command will show older elements
	on the macro ring; C-k will execute the last viewed macro.
	(kmacro-view-macro-repeat): Doc fix.  Change its kmacro-repeat
	property from 'ring to 'head.

2003-08-17  Alan Shutko  <[email protected]>

	* calendar/calendar.el (calendar-make-alist): Correct off-by-one
	keeping December out of the alist.

2003-08-17  Edward M. Reingold  <[email protected]>

	* calendar/cal-move.el (calendar-goto-day-of-year): New function.
	* calendar/calendar.el (calendar-mode-map): Bind it to key.
	* calendar/cal-menu.el (calendar-mode-map): Add it to menu.
	(calendar-flatten): New function.
	(calendar-mouse-view-other-diary-entries)
	(calendar-mouse-view-diary-entries): Rewritten to put any holidays
	in the menu title and to show multi-line diary entries correctly
	in the menu.

2003-08-17  Luc Teirlinck  <[email protected]>

	* info.el (Info-scroll-prefer-subnodes): Add :version keyword to
	defcustom, because the default was recently changed.

2003-08-16  Richard M. Stallman  <[email protected]>

	* net/ange-ftp.el (ange-ftp-error): Add save-excursion.

	* emacs-lisp/lisp-mode.el (eval-last-sexp-print-value):
	New subroutine, broken out of eval-last-sexp-1.
	(eval-last-sexp-1): Use eval-last-sexp-print-value.

	* custom.el (custom-load-symbol): Load cus-load and cus-start first.

	* dabbrev.el (dabbrev--safe-replace-match): Use with-no-warnings.

	* simple.el (eval-expression): Use eval-last-sexp-print-value.

2003-08-14  Jari Aalto  <[email protected]>

	* progmodes/compile.el (compilation-error-regexp-alist):
	Add Java ANt error detection as described in document
	http://ant.apache.org/faq.html

2003-08-12  Juri Linkov  <[email protected]>  (tiny change)

	* simple.el (backward-word, forward-to-indentation)
	(backward-to-indentation):  Argument changed to optional.
	(next-line, previous-line): Use `or' instead of `unless'.

2003-08-12  Vinicius Jose Latorre  <[email protected]>

	* progmodes/ebnf-iso.el (ebnf-no-meta-identifier): Becomes a var
	instead of a constant.

2003-08-12  Markus Rost  <[email protected]>

	* shell.el (shell): With prefix-arg, suggest a new buffer name.

2003-08-12  Andre Spiegel  <[email protected]>

	* vc-sccs.el (vc-sccs-state-heuristic): Fix parentheses.
	(vc-sccs-workfile-version): Search the entire delta table, rather
	than just the first entry, because that might be a deleted version.

2003-08-11  Karl Fogel  <[email protected]>

	* menu-bar.el (menu-bar-options-menu): Supply a body for the
	[save-place] binding in the Options menu.  Have it require
	'saveplace' and then toggle the variable manually, to avoid an an
	unbound variable error.  Thanks to <[email protected]>
	for the bug report.

2003-08-11  Nick Roberts  <[email protected]>

	* gdb-ui.el (gdb-insert-field, gdb-array-format1)
	(gdb-info-breakpoints-custom, gdb-info-frames-custom)
	(gdb-info-threads-custom): Add help-echo text.
	(gdb-display-back): Don't use purecopy.
	(gdb-info-breakpoints-custom, gdb-reset)
	(gdb-assembler-custom): Use display-images-p to test if breakpoint
	icons can be displayed.

2003-08-11  Markus Rost  <[email protected]>

	* textmodes/reftex-vars.el (reftex-auto-recenter-toc): Fix typo.

2003-08-11  Stefan Monnier  <[email protected]>

	* bookmark.el (bookmark-completing-read):
	Return a string, instead of a list of one string.
	Use a popup menu if activated from the mouse.
	(bookmark-edit-annotation): Remove unused vars.
	(bookmark-jump, bookmark-relocate, bookmark-insert-location)
	(bookmark-rename, bookmark-insert, bookmark-delete): Adjust calls
	to bookmark-completing-read.
	(bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames)
	(bookmark-bmenu-mark, bookmark-bmenu-select, bookmark-bmenu-unmark)
	(bookmark-bmenu-delete, bookmark-bmenu-list): Use inhibit-read-only
	and erase-buffer.
	(bookmark-menu-delete, bookmark-menu-rename, bookmark-menu-locate)
	(bookmark-menu-jump, bookmark-menu-insert)
	(bookmark-popup-menu-and-apply-function)
	(bookmark-menu-popup-paned-bookmark-menu): Remove.
	(bookmark-menu-build-paned-menu): Remove by folding it into
	bookmark-menu-popup-paned-menu.
	(menu-bar-bookmark-map): Move the define-key statements here.
	Use the "non-menu" commands since they now pop up a menu if needed.
	(bookmark-exit-hook-internal): Simplify.

2003-08-11  Carsten Dominik  <[email protected]>

	* reftex-toc.el (reftex-toc-rename-label): New function.
	(reftex-toc-check-docstruct): New function.

	* reftex.el (reftex-region-active-p): New function.

	* reftex-parse.el (reftex-locate-bibliography-files): Improved the
	regexp to find the \bibliography macro.

	* reftex-vars.el (reftex-section-levels): Removed subsubparagraph,
	which does not exist in LaTeX.
	(reftex-cite-format-builtin): Added amsrefs support.
	(reftex-toc-confirm-promotion): New option

	* reftex-toc.el
	(reftex-toc): Use `reftex-toc-split-windows-fraction'.
	(reftex-toc-demote, reftex-toc-promote)
	(reftex-toc-do-promote, reftex-toc-promote-prepare)
	(reftex-toc-promote-action, reftex-toc-extract-section-number)
	(reftex-toc-newhead-from-alist)
	(reftex-toc-load-all-files-for-promotion): New functions.
	(reftex-toc-help): Added description of new keys.
	(reftex-toc-split-windows-fraction): New option.
	(reftex-recenter-toc-when-idle): Search *toc* window on all
	visible frames.
	(reftex-toc): Additional parameter REUSE
	(reftex-toc-recenter): Remember current frame.  Call `reftex-toc'
	with REUSE argument.
	(reftex-recenter-toc-when-idle): Reset `current-prefix-arg' for
	the call of `reftex-toc'.
	(reftex-make-separate-toc-frame): New function .
	(reftex-toc-recenter): When called with triple prefix arg, call
	`reftex-make-separate-toc-frame' first.
	(reftex-toc-toggle-dedicated-frame): New command.
	(reftex-toc-quit): Adapted to delete frame when called in
	dedicated frame.

	* reftex-index.el (reftex-index-phrase-match-is-indexed): Check
	all enclosing macros.


2003-08-08  Vinicius Jose Latorre  <[email protected]>

	* progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before
	first use.

2003-08-07  Vinicius Jose Latorre  <[email protected]>

	* progmodes/ebnf2ps.el (ebnf-begin-job): Code fix.

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

	* calendar/calendar.el (list-diary-entries-hook)
	(diary-display-hook, nongregorian-diary-listing-hook)
	(mark-diary-entries-hook, nongregorian-diary-marking-hook):
	Add some customize options for these hooks.
	(calendar-abbrev-construct): Don't try to take a substring longer
	than the original string.

2003-08-05  Richard M. Stallman  <[email protected]>

	* emacs-lisp/testcover.el (noreturn): Report error if does return.
	(testcover-reinstrument-clauses): Doc fix.

	* emacs-lisp/warnings.el: Doc fixes, args renamed.
	(warning-type-format): Rename from warning-group-format.

	* emacs-lisp/bytecomp.el (byte-compile-not-obsolete-var): New var.
	(byte-compile-variable-ref): Handle byte-compile-not-obsolete-var.
	(byte-compile-defvar): Bind byte-compile-not-obsolete-var
	to prevent warnings about defvar for an obsolete variable.

	* emacs-lisp/bytecomp.el (byte-compile-log-warning):
	warning-group-format renamed to warning-type-format.

	* subr.el (read-passwd): Use clear-string instead of fillarray.

	* edmacro.el (edmacro-format-keys): Use edmacro-sanitize-for-string.
	Use vconcat instead of concat.
	(edmacro-sanitize-for-string): New function.

2003-08-05  Dave Love  <[email protected]>

	* cus-start.el: Add open-paren-in-column-0-is-defun-start,
	line-number-display-limit-width.

	* textmodes/tex-mode.el (tex-dvi-view-command): Fix quoted quotes.

2003-08-05  Kenichi Handa  <[email protected]>

	* international/code-pages.el: Don't require mule-diag.

	* international/mule-diag.el (non-iso-charset-alist):
	Add autoload cookie.

	* language/devan-util.el (dev-glyph-order): Add an entry for the
	glyph code #xC4.

2003-08-03  Glenn Morris  <[email protected]>

	* calendar/calendar.el (diary-file, diary-file-name-prefix)
	(european-calendar-style, diary-date-forms)
	(calendar-day-name-array, calendar-month-name-array): Doc change.
	(generate-calendar-month): Adapt for new behaviour of
	`calendar-day-name' function.
	(calendar-abbrev-length, calendar-day-abbrev-array)
	(calendar-month-abbrev-array): New variables.
	(calendar-abbrev-construct): New function.
	(calendar-day-name, calendar-month-name): Use new abbrev arrays,
	rather than fixing abbrevs at some width.  Calling syntax change.
	(calendar-make-alist): Use abbrev arrays.  Calling syntax change.
	(calendar-date-string): Adapt for new behaviours of
	`calendar-day-name' and `calendar-month-name' functions.

	* calendar/diary-lib.el (list-diary-entries): Adapt for new
	behaviour of `calendar-day-name' and `calendar-month-name' functions.
	(diary-name-pattern): Use abbrev arrays, rather than fixing
	abbrevs at three chars.  Calling syntax change.
	(mark-diary-entries):  Adapt for new behaviours of
	`diary-name-pattern' and `calendar-make-alist' functions.
	(fancy-diary-font-lock-keywords): Adapt for new behaviour of
	`diary-name-pattern' function.
	(font-lock-diary-date-forms): Use abbrev arrays, rather than
	fixing abbrevs at three chars.  Calling syntax change.
	(cal-hebrew, cal-islam): Require when compiling.
	(diary-font-lock-keywords): Adapt for new behaviour of
	`font-lock-diary-date-forms' function.

	* calendar/cal-hebrew.el: Reposition some code so defined before used.
	(calendar-hebrew-month-name-array-common-year)
	(calendar-hebrew-month-name-array-leap-year): Add doc strings.
	(list-hebrew-diary-entries): Adapt for new behaviours of
	`calendar-day-name' and `add-to-diary-list' functions.
	(mark-hebrew-diary-entries): Adapt for new behaviours of
	`diary-name-pattern' and `calendar-make-alist' functions.

	* calendar/cal-islam.el (calendar-islamic-month-name-array):
	Add doc string.
	(list-islamic-diary-entries): Adapt for new behaviours of
	`calendar-day-name' and `add-to-diary-list' functions.
	(mark-islamic-diary-entries): Adapt for new behaviours of
	`diary-name-pattern' and `calendar-make-alist' functions.

	* calendar/cal-menu.el (cal-menu-update): Adapt for new behaviour of
	`calendar-month-name' function.

	* calendar/cal-coptic.el (coptic-name): defvar rather than defconst.

	* calendar/solar.el (solar-seasons-data): Move definition before use.

	* calendar/cal-tex.el (cal-tex-day-name-format): Doc fix.
	(cal-tex-LaTeX-hourbox): Move definition before use.

	* calendar/cal-china.el, cal-hebrew.el, cal-islam.el,
	cal-julian.el, cal-menu.el, cal-move.el, holidays.el,
	lunar.el, solar.el
	(displayed-month, displayed-year): Define for compiler.

2003-08-03  Martin Stjernholm  <[email protected]>

	* progmodes/cc-mode.el (c-init-language-vars-for): Add argument
	MODE.  Renamed from c-init-c-language-vars'.
	(c-initialize-cc-mode): Change accordingly.
	(c-common-init): Ditto.
	(c-mode): Ditto.
	(c++-mode): Use `c-init-language-vars-for'.
	(objc-mode): Ditto.
	(java-mode): Ditto.
	(idl-mode): Ditto.
	(pike-mode): Ditto.
	(awk-mode): Ditto.

2003-08-03  Martin Stjernholm  <[email protected]>

	* progmodes/cc-engine.el (c-end-of-current-token): Return whether
	or not the point moved.

	(c-search-decl-header-end): Don't trip up on operator identifiers
	in C++ and operators like == in all languages.

	* progmodes/cc-engine.el (c-backward-to-decl-anchor):
	Detect leading labels correctly.

2003-08-02  Andreas Schwab  <[email protected]>

	* textmodes/ispell.el: Don't redo key bindings on loading, put
	them only in loaddefs.el.
	* bookmark.el: Likewise.
	* dabbrev.el: Likewise.
	* emerge.el: Likewise.

	* apropos.el (apropos-words-to-regexp): Only add `wild' if `words'
	has more than one member.

	* progmodes/sh-script.el (sh-mode): Don't set mode-class property.

2003-08-01  Vinicius Jose Latorre  <[email protected]>

	* lpr.el (printify-region): It was ending conversion before the
	expected position.  Reported by Keiichi Suzuki <[email protected]>.

2003-07-31  John Paul Wallington  <[email protected]>

	* net/browse-url.el (browse-url-epiphany): Doc fix.

2003-07-30  Kenichi Handa  <[email protected]>

	* international/fontset.el (setup-default-fontset):
	Change registry names of Akurti fonts.

2003-07-29  Jesper Harder  <[email protected]>  (tiny change)

	* comint.el (comint-read-noecho): Use `clear-string' instead of
	`fillarray'.

2003-07-29  Thomas W Murphy  <[email protected]>  (tiny change)

	* outline.el (outline-mode-hook): Add defvar.

2003-07-28  Nick Roberts  <[email protected]>

	* gdb-ui.el (gdb-setup-windows, gdb-restore-windows):
	Restore assembler in source window if that is what has been selected.
	(menu): Add gdb-restore-windows to menu.  Make gdba
	specific menus only visible from gdba.

2003-07-28  Tak Ota  <[email protected]>  (tiny change)

	* progmodes/compile.el (compilation-environment): New user variable.
	(compile-internal): Respect it.

2003-07-23  Masatake YAMATO  <[email protected]>

	* progmodes/gud.el (gdb-script-font-lock-keywords):
	Put `font-lock-function-name-face' on a symbol which includes
	`-' like `hook-run'.  Put font-lock-variable-name-face
	on a symbol starting with $.

2003-07-27  Markus Rost  <[email protected]>

	* files.el (set-visited-file-name): Use truename for buffer-file-name.

2003-07-26  Markus Rost  <[email protected]>

	* vc-hooks.el (vc-file-not-found-hook): Doc fix.

2003-07-26  Andre Spiegel  <[email protected]>

	* vc-hooks.el (vc-default-registered, vc-make-version-backup):
	Use with-no-warnings.
	(vc-file-not-found-hook): Add this to find-file-not-found-functions,
	rather than to find-file-not-found-hook, which doesn't exist.

2003-07-26  Markus Rost  <[email protected]>

	* international/quail.el (quail-translate-key): Fix previous change.

2003-07-25  John Paul Wallington  <[email protected]>

	* server.el (server-start): Check `server-process' is non-nil
	before killing it to avoid killing current buffer's process.

	* simple.el (choose-completion-string): Use `minibufferp';
	test `completion-reference-buffer' if `buffer' arg is nil.
	(push-mark): Use `when' and `unless'.
	(pop-mark): Use `when'.

	* mouse-sel.el (mouse-sel-get-selection-function):
	Check `x-last-selected-text-primary'.  Don't barf if it or
	`x-last-selected-text' aren't bound.

2003-07-25  Kevin Rodgers  <[email protected]>  (tiny change)

	* menu-bar.el (menu-bar-tools-menu): Minor change in strings.

2003-07-23  Stefan Monnier  <[email protected]>

	* vc-svn.el (vc-svn-diff-switches): Don't default to vc-diff-switches.

2003-07-23  John Paul Wallington  <[email protected]>

	* tooltip.el (defface tooltip): Inherit from variable-pitch.

2003-07-23  Glenn Morris  <[email protected]>

	* emacs-lisp/derived.el (define-derived-mode): Mention hook in doc
	string.  Defvar the derived hook.

	* macros.el (insert-kbd-macro): Escape double quote character.
	From Thomas W Murphy <[email protected]>.

2003-07-22  Stefan Monnier  <[email protected]>

	* textmodes/fill.el (fill-comment-paragraph): Construct a regexp
	to match the specific mark rather than reusing comment-start-skip.

2003-07-22  Thien-Thi Nguyen  <[email protected]>

	* progmodes/hideshow.el (hs-special-modes-alist):
	Clarify MDATA-SELECTOR doc; nfc.  Thanks to Michael Ernst.

2003-07-21  Markus Rost  <[email protected]>

	* progmodes/idlwave.el (idlwave-comment-indent-char): Fix default
	value using ?\s.

2003-07-21  John Paul Wallington  <[email protected]>

	* subr.el (with-selected-window): Add closing paren.

2003-07-21  Richard M. Stallman  <[email protected]>

	* emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
	(lisp-mode): Likewise.

	* subr.el (with-selected-window): Copy code form save-selected-window
	so as to call select-window with norecord arg.
	(dynamic-completion-table): Doc fix.
	(lazy-completion-table): Doc fix.

	* international/mule-cmds.el (set-locale-environment):
	langinfo renamed to locale-info.

	* international/mule.el (auto-coding-functions): Doc fix.

2003-07-21  Kenichi Handa  <[email protected]>

	* international/quail.el (quail-translate-key):
	Update quail-current-str correctly.

2003-07-21  Andreas Schwab  <[email protected]>

	* progmodes/sh-script.el (sh-mode-syntax-table): Change syntax of
	?, to "_".

2003-07-20  Kai Gro,A_(Bjohann  <[email protected]>
	Version 2.0.36 of Tramp released.

	* net/tramp.el (tramp-default-password-end-of-line): Rename from
	tramp-password-end-of-line.
	(tramp-password-end-of-line): New method parameter.
	(tramp-get-password-end-of-line): Function to access method
	parameter `tramp-password-end-of-line', or variable
	`tramp-default-password-end-of-line' (default value).
	(tramp-methods): Add entries for new parameter
	tramp-password-end-of-line.
	(tramp-enter-password): Use new function
	`tramp-get-password-end-of-line'.
	(tramp-handle-insert-file-contents): Do not
	unconditionally inhibit the file operation file-local-copy, only
	do that when the inhibit-file-name-operation is currently
	insert-file-contents.  This fixes finding remote CVS-controlled
	files.  (It would barf on inserting the CVS/Entries file
	literally, because the file-local-copy handler wasn't called.)
	(tramp-handle-shell-command): Support optional third arg ERROR-BUFFER.
	(tramp-sh-extra-args): Adapt defcustom type to XEmacs.
	(tramp-initial-commands): New variable.
	(tramp-process-initial-commands): New function, using the variable.
	(tramp-open-connection-setup-interactive-shell): Call the new function.
	(tramp-buffer-name, tramp-debug-buffer-name): Always put the
	method into the buffer name, never use nil.  Reported by Hanak
	David <[email protected]>.
	(tramp-open-connection-setup-interactive-shell): Erase buffer
	before sending "stty -onlcr".

	* net/tramp-vc.el (vc-workfile-unchanged-p): Add comment.

2003-07-19  Markus Rost  <[email protected]>

	* textmodes/artist.el (artist-erase-char): Fix default value using ?\s.

2003-07-19  John Paul Wallington  <[email protected]>

	* textmodes/artist.el (artist-butlast-fn, artist-draw-sline)
	(artist-draw-rect, artist-draw-square): Doc fixes.

	* textmodes/enriched.el (enriched-decode-display-prop): Doc fix.

	* textmodes/two-column.el (2C-mode-line-format): Doc fix.

2003-07-19  Kenichi Handa  <[email protected]>

	* international/kkc.el (kkc-show-conversion-list-update):
	Highlight the correct candidate in the message.

2003-07-18  John Paul Wallington  <[email protected]>

	* simple.el (current-word): Don't include punctuation char when
	`really-word' arg is non-nil.

2003-07-17  Martin Stjernholm  <[email protected]>

	* progmodes/awk-mode.el: Obsoleted by the AWK support in CC Mode -
	moved to the directory obsolete.

2003-07-16  Stefan Monnier  <[email protected]>

	* info.el (Info-menu-entry-name-re): Allow newlines in
	menu entry names.

	* emacs-lisp/syntax.el (syntax-ppss-flush-cache): Rename from
	syntax-ppss-after-change-function.
	(syntax-ppss-after-change-function): New alias.  Update uses.
	(syntax-ppss): Catch the case where the buffer is narrowed.

2003-07-16  Martin Stjernholm  <[email protected]>

	* progmodes/cc-defs.el (c-langelem-sym, c-langelem-pos)
	(c-langelem-2nd-pos): Add accessor functions for syntactic elements.

2003-07-16  Martin Stjernholm  <[email protected]>

	* progmodes/cc-engine.el (c-literal-faces): Declare as a variable
	since it might be modified.

	* progmodes/cc-langs.el (c++-make-template-syntax-table)
	(c-syntactic-ws-start, c-syntactic-ws-end): Give more consistent
	names to these language constants.

2003-07-15  Kim F. Storm  <[email protected]>

	* apropos.el (apropos-sort-by-scores): Rename from apropos-show-scores.
	All uses changed.

2003-07-14  Mark A. Hershberger  <[email protected]>

	* xml.el (xml-parse-tag, xml-parse-file, xml-parse-region):
	Namespace support.

2003-07-13  Juanma Barranquero  <[email protected]>

	* frame.el (modify-all-frames-parameters): Reinstall (copyright
	papers received).

2003-07-13  Karl Eichwalder  <[email protected]>

	* textmodes/po.el (po-find-charset): White space at the start of the
	Content-Type field body is non-mandatory.

2003-07-13  Masayuki Ataka  <[email protected]>  (tiny change)

	* textmodes/texinfo.el (texinfo-section-list):
	Append appendixsection; a synonym for appendixsec.

2003-07-13  Jari Aalto  <[email protected]>

	* man.el (Man-translate-cleanup): New.
	(Man-translate-references): Call `Man-translate-cleanup' to clean
	leading, trailing and middle spaces.

2003-07-13  Lars Hansen  <[email protected]>

	* desktop.el (desktop-buffer-dired-misc-data, desktop-buffer-dired):
	Handle `dired-directory' being a list.

2003-07-13  Jesper Harder  <[email protected]>  (tiny change)

	* mail/smtpmail.el (smtpmail-send-it): Create smtpmail-queue-dir if
	it doesn't exist.

2003-07-12  Richard M. Stallman  <[email protected]>

	* progmodes/cc-engine.el (c-declare-lang-variables): Don't use mapcan.

	* progmodes/cc-defs.el (c-make-keywords-re):
	Don't use delete-duplicates.
	(c-lang-const): Don't use mapcan.

	* apropos.el (apropos-show-scores): Make it customizable.
	Document new meaning.
	(apropos): Compute scores from symbols.
	(apropos-print): Don't sort by scores if apropos-show-scores is nil.

2003-07-11  Vinicius Jose Latorre  <[email protected]>

	* ps-bdf.el: Fix copyright line.
	(bdf-directory-list): Fix initialization code.

2003-07-11  John Paul Wallington  <[email protected]>

	* emacs-lisp/ring.el (ring-empty-p): Use `zerop'.
	(ring-p, ring-plus1, ring-minus1, ring-length, ring-index)
	(ring-empty-p, ring-size, ring-copy, ring-ref): Doc fixes.

2003-07-11  NAKAJIMA Mikio  <[email protected]>  (tiny change)

	* emacs-lisp/ring.el (ring-elements): Doc fix.

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

	* calendar/timeclock.el (timeclock-relative)
	(timeclock-ask-before-exiting, timeclock-use-display-time):
	Doc changes.
	(timeclock-modeline-display): Give a message if
	`timeclock-use-display-time' is non-nil but `display-time-mode'
	is not active.

2003-07-11  Kenichi Handa  <[email protected]>

	* international/mule-cmds.el (set-language-environment):
	Set current-language-environment to the correct string.

2003-07-10  Vinicius Jose Latorre  <[email protected]>

	* ps-print.el: Print line number correctly in a region.  Reported by
	Tim Allen <[email protected]>
	(ps-print-version): New version number (6.6.2).
	(ps-printing-region): Code fix.

2003-07-10  John Paul Wallington  <[email protected]>

	* progmodes/etags.el (visit-tags-table-buffer): Add autoload cookie;
	this function can be called from `add-completions-from-tags-table'.

2003-07-10  Glenn Morris  <[email protected]>

	* calendar/timeclock.el (timeclock-use-display-time)
	(timeclock-day-over-hook, timeclock-workday-remaining)
	(timeclock-status-string, timeclock-when-to-leave)
	(timeclock-when-to-leave-string, timeclock-log-data)
	(timeclock-find-discrep, timeclock-day-base)
	(timeclock-generate-report, timeclock-visit-timelog): Doc fix.
	(timeclock-modeline-display): Set the variable
	`timeclock-modeline-display'.
	(timeclock-update-modeline): Doc fix.  Respect value of
	`timeclock-relative'.

2003-07-09  Richard M. Stallman  <[email protected]>

	* textmodes/reftex-parse.el (reftex-all-document-files):
	Add autoload cookie.

	* textmodes/reftex.el (reftex-all-document-files): Delete autoload.
	(reftex-scanning-info-available-p): Add autoload cookie.

	* international/mule-cmds.el
	(set-display-table-and-terminal-coding-system): Delete duplicate
	aset on standard-display-table.

	* view.el (view-file): If existing buffer's major mode is special,
	don't go into view mode.

	* dired.el (dired-move-to-filename-regexp): Allow quote in months.

2003-07-08  Martin Stjernholm  <[email protected]>

	* progmodes/cc-engine.el (c-guess-basic-syntax): Do not do hidden
	buffer changes; there's third party code that calls this function
	directly.

2003-07-08  Martin Stjernholm  <[email protected]>

	* progmodes/cc-fonts.el (javadoc-font-lock-keywords)
	(autodoc-font-lock-keywords): Don't byte compile on font lock
	initialization when running from byte compiled files.

2003-07-08  Alan Mackenzie  <[email protected]>

	* progmodes/cc-engine.el: Fix AWK mode indentation when previous
	statement ends with auto-increment "++".

2003-07-08  Martin Stjernholm  <[email protected]>

	* progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
	(c-lang-variable-inits, c-lang-variable-inits-tail): The values of
	these are changed, so declare them as variables and not constants.

2003-07-08  Markus Rost  <[email protected]>

	* subr.el (dolist, dotimes):  Doc fix.

2003-07-08  Kim F. Storm  <[email protected]>

	* international/mule-cmds.el
	(set-display-table-and-terminal-coding-system): Don't break
	bootstrap if standard-display-table isn't setup yet.

2003-07-07  Richard M. Stallman  <[email protected]>

	* ehelp.el (ehelp-command): Use defalias to define ehelp-command.
	Give it a doc string, and autoload it.

	* desktop.el (desktop-buffer-info, desktop-buffer-mh):
	Use with-no-warnings.

	* info.el (Info-search): If find invisible text, search again.

	* isearch.el (search-whitespace-regexp): Add a shy group around it.

	* man.el (Man-name-regexp): Match + as part of name.

	* simple.el (visible-mode): Rename from vis-mode.
	(vis-mode-saved-buffer-invisibility-spec): Doc fix.

	* simple.el (current-word): New arg REALLY-WORD specifies
	don't include punctuation chars.

	* emacs-lisp/debug.el (debug, debugger-env-macro):
	Use with-no-warnings while accessing and binding unread-command-char.

	* international/mule-cmds.el
	(set-display-table-and-terminal-coding-system): Use explicit loop
	instead of calling standard-display-default.

	* net/ange-ftp.el (ange-ftp-file-symlink-p):
	Use condition-case to catch error in ange-ftp-get-files.

	* net/browse-url.el (browse-url-browser-function):
	Add alternative for Epiphany.
	(browse-url-epiphany-program, browse-url-epiphany-arguments)
	(browse-url-epiphany-startup-arguments)
	(browse-url-epiphany-new-window-is-tab): New variables.
	(browse-url-epiphany, browse-url-epiphany-sentinel): New functions.

	* progmodes/compile.el (compile-auto-highlight): Default now t.
	(compile): Doc fix.
	(compilation-next-error): Fix previous change.

	* textmodes/tex-mode.el (tex-main-file): Use with-no-warnings.

	* textmodes/sgml-mode.el (xml-mode): Add autoload cookie.

2003-07-07  Nick Roberts  <[email protected]>

	* gdb-ui.el (gdb-source-info): Display current frame when
	attaching to an existing process.
	(gdb-setup-windows, gdb-source-info): Start with gud-comint-buffer
	while laying out windows when attaching to an existing process.

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

	* info.el (Info-menu): Use Info-menu-entry-name-re.

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

	* vc-hooks.el (vc-stay-local, vc-stay-local-p): Move from vc.el.
	* vc.el (vc-stay-local, vc-stay-local-p): Move to vc-hooks.el.

	* info.el (Info-menu-entry-name-re): Be careful to avoid multiple ways
	to match the same text.

2003-07-06  John Paul Wallington  <[email protected]>

	* vc.el (vc-annotate-offset): Move defvar up.

2003-07-06  Kim F. Storm  <[email protected]>

	* info.el (Info-menu-entry-name-re): Add `:' to second [] part.
	This should fix the infinite loop when extracting menu names.

2003-07-05  Martin Stjernholm  <[email protected]>

	* files.el (auto-mode-alist, interpreter-mode-alist):
	Remove entries to CC Mode modes to avoid duplicates; they are now added
	with autoload directives in cc-mode.el.

2003-07-05  Martin Stjernholm  <[email protected]>

	* progmodes/cc-langs.el, progmodes/cc-styles.el (c-style-alist)
	(c-lang-variable-inits, c-lang-variable-inits-tail): The values of
	these are changed, so declare them as variables and not constants.

	* progmodes/cc-mode.el: Fix some autoload problems: Try to
	ensure that the entry for ".c" extension comes before the one for
	".C" on `auto-mode-alist', to behave better on case insensitive OS:es.
	Fix incorrect entries that were added to `interpreter-mode-alist'.
	Move the autoload directives for AWK to the top level since they
	aren't recognized anywhere else.  Do not use the new AWK mode doc
	in the autoload form for the old AWK mode.

2003-06-30  Roland Winkler  <[email protected]>

	* textmodes/bibtex.el (bibtex-sort-entry-class): New entry catch-all.
	(bibtex-sort-ignore-string-entries): Default value t.
	(bibtex-entry-kill-ring-max): Reintroduce as it was removed
	erroneously in previous version.
	(bibtex-string-files): Docstring reflects new parsing scheme.
	(bibtex-autokey-transcriptions): Merge some rewrite entries, fix
	docstring, add # as one of the chars to crush
	(bibtex-autokey-prefix-string, bibtex-autokey-names)
	(bibtex-autokey-names-stretch, bibtex-autokey-additional-names)
	(bibtex-autokey-name-change-strings)
	(bibtex-autokey-name-case-convert, bibtex-autokey-name-length)
	(bibtex-autokey-name-separator, bibtex-autokey-year-length)
	(bibtex-autokey-use-crossref, bibtex-autokey-titlewords)
	(bibtex-autokey-title-terminators)
	(bibtex-autokey-titlewords-stretch)
	(bibtex-autokey-titleword-ignore)
	(bibtex-autokey-titleword-case-convert)
	(bibtex-autokey-titleword-abbrevs)
	(bibtex-autokey-titleword-abbrevs)
	(bibtex-autokey-titleword-change-strings)
	(bibtex-autokey-titleword-length)
	(bibtex-autokey-titleword-separator)
	(bibtex-autokey-name-year-separator)
	(bibtex-autokey-year-title-separator)
	(bibtex-autokey-before-presentation-function)
	(bibtex-entry-type-history, bibtex-entry-maybe-empty-head):
	Fix docstring.
	(bibtex-strings, bibtex-reference-keys):
	Use lazy-completion-table and make-variable-buffer-local.
	(bibtex-sort-entry-class-alist): Use downcase, account for catch-all.
	(bibtex-braced-string-syntax-table)
	(bibtex-quoted-string-syntax-table): New variables.
	(bibtex-parse-nested-braces): Remove.
	(bibtex-parse-field-string): Use syntax table and forward-sexp.
	(bibtex-parse-association): Simplify.
	(bibtex-parse-field-name): Obey bibtex-autoadd-commas.
	(bibtex-parse-field-text): Simplify.
	(bibtex-search-forward-field, bibtex-search-backward-field):
	argument BOUND can take value t.
	(bibtex-start-of-field, bibtex-start-of-name-in-field)
	(bibtex-end-of-name-in-field, bibtex-end-of-field)
	(bibtex-start-of-text-in-field, bibtex-end-of-text-in-field)
	(bibtex-start-of-text-in-string, bibtex-end-of-text-in-string)
	(bibtex-end-of-string, bibtex-type-in-head): Use defsubst.
	(bibtex-skip-to-valid-entry): Return buffer position of beginning
	and ending of entry.  Update for changes of bibtex-search-entry.
	Simplify.
	(bibtex-map-entries): FUN is called with three arguments.
	(bibtex-search-entry): Return a cons pair with buffer positions of
	beginning and end of entry.
	(bibtex-enclosing-field): Simplify.
	(bibtex-format-entry): Use booktitle to set a missing title.
	(bibtex-autokey-get-names): Fiddle with regexps.
	(bibtex-generate-autokey): Use identity.
	(bibtex-parse-keys): Use simplified parsing algorithm if
	bibtex-parse-keys-fast is non-nil. Simplify. Change order of
	arguments. Return alist of keys.
	(bibtex-parse-strings): Simplify. Return alist of strings.
	(bibtex-complete-string-cleanup): Fix docstring.
	(bibtex-read-key): New function.
	(bibtex-mode): Fix docstring. Do not parse for keys and
	strings when the mode is entered. Set fill-paragraph-function to
	bibtex-fill-field. Setup font-lock-mark-block-function the way
	font-lock intended.
	(bibtex-entry): Use bibtex-read-key. Obey bibtex-autofill-types.
	(bibtex-parse-entry, bibtex-autofill-entry): New functions.
	(bibtex-print-help-message, bibtex-remove-OPT-or-ALT)
	(bibtex-Preamble): Avoid hard coded constants.
	(bibtex-make-field): Fix docstring. Simplify.
	(bibtex-beginning-of-entry): Always return new position of point.
	(bibtex-end-of-entry): Rearrange cond clauses.
	(bibtex-count-entries, bibtex-validate, bibtex-reformat):
	Update for changes of bibtex-map-entries.
	(bibtex-ispell-abstract): Do not move point.
	(bibtex-entry-index): Use downcase. Simplify.
	(bibtex-lessp): Handle catch-all.
	(bibtex-find-crossref): Turn into a command.
	(bibtex-find-entry): Simplify. Use bibtex-read-key. Fix regexp.
	(bibtex-clean-entry): Use bibtex-read-key. Handle string and
	preamble entries.
	(bibtex-fill-field-bounds): New function.
	(bibtex-fill-field): New command. Bound to fill-paragraph-function.
	(bibtex-fill-entry): Use bibtex-fill-field-bounds
	(bibtex-String): Use bibtex-strings.  Always obey
	bibtex-sort-ignore-string-entries.

2003-07-05  John Paul Wallington  <[email protected]>

	* cus-theme.el (customize-create-theme):
	Call `customize-create-theme' in Reset widget's notify function.

	* ibuffer.el (ibuffer-backward-line, ibuffer-forward-line)
	(ibuffer-mark-interactive): Use `or' instead of `unless'.
	(define-ibuffer-column name): Add summarizer.
	(define-ibuffer-column size): Likewise.
	(define-ibuffer-column filename): Likewise.
	(define-ibuffer-column process): Likewise.  Change BODY's output too.
	(define-ibuffer-column filename-and-process): Likewise, likewise.
	(ibuffer): Remove local vars `already-in' and `need-update'.

	* ibuf-ext.el: Don't require `derived' at compile-time.

2003-07-05  Kim F. Storm  <[email protected]>

	* info.el: Disable paragraph refilling.
	(Info-refill-paragraphs): New defcustom.
	(Info-fontify-node): Use it.

2003-07-04  Stefan Monnier  <[email protected]>

	* emacs-lisp/cl-macs.el (cl-transform-lambda): Strip &cl-defs
	thingies from constructors created by defstruct.

	* emacs-lisp/bytecomp.el (byte-compile-defvar): Check and set
	the default value of the variable.
	(byte-code-meter): Move declaration to top level.

	* pcvs-parse.el (cvs-parse-status): Ignore extra fields from CVSNT.

	* info.el (Info-following-node-name-re): New fun.
	(Info-following-node-name): Remove.
	(Info-insert-dir): Use the new fun.
	(Info-extract-pointer): Don't save restriction; use new fun.
	(Info-menu-entry-name-re): New const.
	(Info-menu-entry-name-re): Use it along with new fun.
	(Info-node-spec-re): Use new fun.
	(Info-complete-menu-item, Info-fontify-node): Use new const.
	(Info-goto-node, Info-follow-reference, Info-menu-update):
	Use match-string.
	(Info-follow-reference): Use assoc-string.
	Use a list of strings for the completion table.
	(Info-fontify-node): Use match-string, line-end-position.
	Limit the search for `node:' to the first line.

	* newcomment.el (uncomment-region): Remove padding coming from
	comment-start rather than just from comment-padding.

	* vc-cvs.el (vc-cvs-repository-hostname): New operation.
	(vc-cvs-stay-local-p): Use vc-stay-local-p.
	(vc-cvs-rename-file): Remove (use the default).
	(vc-cvs-register): Register parent dir if needed.
	(vc-cvs-could-register): Return non-nil if parent can be registered.
	(vc-cvs-state, vc-cvs-dir-state, vc-cvs-print-log, vc-cvs-diff)
	(vc-cvs-diff-tree, vc-cvs-make-version-backups-p): Use vc-stay-local-p.

	* vc-svn.el (vc-svn-use-edit): Make it into a const.
	(vc-svn-update): Fix the arguments to `svn'.
	(vc-svn-diff-tree): Just use `vc-svn-diff'.
	(vc-svn-create-snapshot, vc-svn-retrieve-snapshot):
	Simple implementations, assuming `name' is a URL.

	* progmodes/sh-script.el (sh-font-lock-paren): Add [ and ] to the
	set of chars allowed unquoted in a case pattern.

	* font-core.el (font-lock-defaults-alist): Remove obsolete entries.

	* font-lock.el (font-lock-extra-types-widget)
	(c-font-lock-extra-types, c++-font-lock-extra-types)
	(objc-font-lock-extra-types, java-font-lock-extra-types)
	(c-font-lock-keywords-1, c-font-lock-keywords-2, c-font-lock-keywords)
	(c-font-lock-keywords-3, c-font-lock-syntactic-face-function)
	(font-lock-match-c++-style-declaration-item-and-skip-to-next)
	(font-lock-match-c++-structor-declaration)
	(c++-font-lock-keywords-1, c++-font-lock-keywords-2)
	(c++-font-lock-keywords-3, c++-font-lock-keywords)
	(objc-font-lock-keywords-1, objc-font-lock-keywords-2)
	(objc-font-lock-keywords-3, objc-font-lock-keywords)
	(java-font-lock-keywords-1, java-font-lock-keywords-2)
	(java-font-lock-keywords-3, java-font-lock-keywords)
	(java-font-lock-syntactic-face-function): Remove obsolete code
	and constants.  It's all in cc-fonts.el now.

2003-07-04  Glenn Morris  <[email protected]>

	* mail/sendmail.el (mail-specify-envelope-from)
	(mail-envelope-from): Doc fix.

2003-07-04  Martin Stjernholm  <[email protected]>

	* generic-x.el: Do away with the dependency on `c-emacs-features'
	when populating `rul-generic-mode-syntax-table'; we already know
	this isn't XEmacs.

See ChangeLog.10 for earlier changes.

;; Local Variables:
;; coding: iso-2022-7bit
;; End:

    Copyright (C) 2001, 2002 Free Software Foundation, Inc.
  Copying and distribution of this file, with or without modification,
  are permitted provided the copyright notice and this notice are preserved.

;;; arch-tag: e39939be-dab3-400e-86f5-0e2701a883c1