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

	* building.texi (Debugger Operation): Simplify last sentence. 

2005-05-23  Lute Kamstra  <lute@gnu.org>

	* emacs.texi: Update FSF's address throughout.
	(Preface): Use @cite.
	(Distrib): Add cross reference to the node "Copying".  Mention the
	FDL.  Don't refer to etc/{FTP,ORDERS}.  Mention the sale of
	printed manuals.
	(Intro): Use @xref for the Emacs Lisp Intro.

2005-05-21  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Storing variables): Mention that only most variables
	are void to begin with.

2005-05-21  Kevin Ryde  <user42@zip.com.au>

	* widget.texi (Basic Types): Update cross ref from "Enabling
	Mouse-1 to Follow Links" to "Links and Mouse-1" per recent
	lispref/text.texi change.

2005-05-20  Carsten Dominik  <dominik@science.uva.nl>

	* org.texi: Version 3.09

2005-05-18  Carsten Dominik  <dominik@science.uva.nl>

	* reftex.texi: Version 4.28

2005-05-18  Luc Teirlinck  <teirllm@auburn.edu>

	* buffers.texi (Select Buffer): Document `C-u M-g M-g'.

	* basic.texi (Moving Point): Mention default for `goto-line'.

	* programs.texi (Lisp Doc): Eldoc mode shows only the first line
	of a variable's docstring.

2005-05-18  Lute Kamstra  <lute@gnu.org>

	* maintaining.texi (Overview of Emerge): Add cross reference.
	Remove duplication.

	* emacs.texi (Top): Update to the current structure of the manual.
	* misc.texi (Emacs Server): Add menu description.
	* files.texi (Saving): Fix menu.
	* custom.texi (Customization): Fix menu.
	* mule.texi (International): Fix menu.
	* kmacro.texi (Keyboard Macros): Fix menu.

2005-05-16  Luc Teirlinck  <teirllm@auburn.edu>

	* display.texi:  Various minor changes.
	(Faces): Delete text that is repeated in the next section.

2005-05-16  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi (Debugger Operation): Mention GUD tooltips are
	disabled with GDB in text command mode.

2005-05-16  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Storing Variables): Mention `calc-copy-special-constant'.

2005-05-16  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi: Replace toolbar with "tool bar" for consistency.
	(Compilation Mode): Describe compilation-context-lines
	and use of arrow in compilation buffer.
	(Debugger Operation): Replace help text with variable's value.

	* frames.texi (Tooltips): Replace toolbar with "tool bar" for
	consistency.

2005-05-15  Luc Teirlinck  <teirllm@auburn.edu>

	* major.texi (Choosing Modes): normal-mode processes the -*- line.
	Add xref.

2005-05-14  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Default Simplifications): Insert missing ! (logical
	not operator).

2005-05-14  Michael Albinus  <michael.albinus@gmx.de>

	Sync with Tramp 2.0.49.

2005-05-14  Luc Teirlinck  <teirllm@auburn.edu>

	* basic.texi (Moving Point): Mention `M-g g' binding for `goto-line'.
	(Position Info): Delete discussion of `goto-line'.  It is already
	described in `Moving point'.

	* mini.texi (Completion Commands): Correct reference.
	(Completion Options): Fix typo.

	* killing.texi (Deletion): Complete description of `C-x C-o'.

2005-05-10  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Default Simplifications): Mention that 0^0 simplifies
	to 1.

2005-05-10  Richard M. Stallman  <rms@gnu.org>

	* building.texi (Compilation): Clarify recompile's directory choice.

	* frames.texi (Tooltips): Cleanups.

	* basic.texi (Arguments): Fix punctuation.

2005-05-09  Luc Teirlinck  <teirllm@auburn.edu>

	* screen.texi (Menu Bar): The up and down (not left and right)
	arrow keys move through a keyboard menu.

2005-05-08  Luc Teirlinck  <teirllm@auburn.edu>

	* basic.texi: Various typo and grammar fixes.
	(Moving Point): C-a now runs move-beginning-of-line.

2005-05-08  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi (Debugger Operation): Describe gud-tooltip-echo-area.

	* frames.texi (Tooltips): Describe help tooltips and GUD tooltips
	as different animals.

2005-05-07  Luc Teirlinck  <teirllm@auburn.edu>

	* frames.texi (Mouse References): Clarify `mouse-1-click-follows-link'.
	Correct index entry.

2005-05-07  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi (Debugger Operation): Update to reflect changes
	in GUD tooltips.

2005-04-30  Richard M. Stallman  <rms@gnu.org>

	* files.texi (Compressed Files): Auto Compression normally enabled.

	* building.texi (Debugger Operation): Clarify previous change.

2005-04-29  Carsten Dominik  <dominik@science.uva.nl>

	* org.texi: Version 3.08, structure reorganized.

2005-04-28  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi (Debugger Operation): Add description for
	GUD tooltips when program is not running.

2005-04-26  Luc Teirlinck  <teirllm@auburn.edu>

	* misc.texi (Shell): Add `Shell Prompts' to menu.
	(Shell Mode): Add xref to `Shell Prompts'.  Clarify `C-c C-u'
	description.  Delete remarks moved to new node.
	(Shell Prompts): New node.
	(History References): Replace remarks moved to `Shell Prompts'
	with xref to that node.
	(Remote Host): Clarify how to specify the terminal type when
	logging in to a different machine.

2005-04-26  Richard M. Stallman  <rms@gnu.org>

	* emacs.texi (Top): Update submenus from files.texi.

	* files.texi (Filesets): Clarify previous change.

	* dired.texi (Misc Dired Features): Clarify previous change.

2005-04-25  Chong Yidong  <cyd@stupidchicken.com>

	* ack.texi (Acknowledgments): Delete info about iso-acc.el

	* dired.texi (Misc Dired Features): Document
	dired-compare-directories.

	* files.texi (Filesets): New node.
	(File Conveniences): Document Image mode.

	* text.texi (TeX Print): Document tex-compile.

2005-04-25  Luc Teirlinck  <teirllm@auburn.edu>

	* frames.texi (Tooltips): Tooltip mode is enabled by default.
	Delete redundant reference to tooltip Custom group.   It is
	referred too again in the next paragraph.

2005-04-24  Richard M. Stallman  <rms@gnu.org>

	* ack.texi: Delete info about lazy-lock.el and fast-lock.el.

	* faq.texi: Delete info about lazy-lock.el and fast-lock.el.

2005-04-19  Kim F. Storm  <storm@cua.dk>

	* building.texi (Compilation Mode): Add M-g M-n and M-g M-p bindings.

2005-04-18  Lars Hansen  <larsh@math.ku.dk>

	* misc.texi (Saving Emacs Sessions): Add that "--no-desktop" now
	turns off desktop-save-mode.

2005-04-17  Luc Teirlinck  <teirllm@auburn.edu>

	* frames.texi (XTerm Mouse): Xterm Mouse mode is no longer enabled
	by default in terminals compatible with xterm.  Mention that
	xterm-mouse-mode is a minor mode and put in pxref to Minor Modes
	node.

2005-04-15  Carsten Dominik  <dominik@science.uva.nl>

	* org.texi: Update to version 3.06.

2005-04-13  Lute Kamstra  <lute@gnu.org>

	* cc-mode.texi: Prevent creating an unnecessary empty cc-mode.ss file.

2005-04-12  Luc Teirlinck  <teirllm@auburn.edu>

	* frames.texi (XTerm Mouse): Xterm Mouse mode is now enabled by
	default.

2005-04-12  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* xresources.texi (Table of Resources): Add cursorBlink.

2005-04-11  Luc Teirlinck  <teirllm@auburn.edu>

	* rmail.texi (Rmail Summary Edit): Explain numeric arguments to
	`d', `C-d' and `u'.

2005-04-11  Richard M. Stallman  <rms@gnu.org>

	* cmdargs.texi (Initial Options): -Q is now --quick, and does less.
	(Misc X): Add -D, --basic-display.

	* maintaining.texi (Change Log): Correct the description of
	the example.

	* major.texi (Choosing Modes): Document magic-mode-alist.

2005-04-10  Thien-Thi Nguyen  <ttn@gnu.org>

	* cl.texi (Porting Common Lisp): Fix typo.

2005-04-10  Luc Teirlinck  <teirllm@auburn.edu>

	* rmail.texi (Rmail Basics): Clarify description of `q' and `b'.
	(Rmail Deletion): `C-d' in RMAIL buffer does not accept a numeric
	argument.
	(Rmail Inbox): Give full name of `rmail-primary-inbox-list'.
	(Rmail Output): Clarify which statements apply to `o', `C-o' and
	`w', respectively.
	(Rmail Labels): Mention `l'.
	(Rmail Attributes): Correct pxref.  Mention `stored' attribute.
	(Rmail Summary Edit): Describe `j' and RET.

2005-04-10  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* xresources.texi (Lucid Resources): Added fonSet resource.

2005-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>

	* gnus.texi (RSS): Addition.

2005-04-09  Luc Teirlinck  <teirllm@auburn.edu>

	* display.texi (Useless Whitespace): `indicate-unused-lines' is
	now called `indicate-empty-lines'.

2005-04-06  Kim F. Storm  <storm@cua.dk>

	* cmdargs.texi (Initial Options): Add --bare-bones alias for -Q.

2005-04-04  Luc Teirlinck  <teirllm@auburn.edu>

	* dired.texi (Dired Visiting): `dired-view-command-alist' has been
	deleted.
	(Marks vs Flags): Add some convenient key bindings.
	(Hiding Subdirectories): Delete redundant and inaccurate sentence.
	(Misc Dired Features): Correct and expand description of `w' command.

	* frames.texi (XTerm Mouse): Delete apparently false info.
	The GNU/Linux console currently does not appear to support
	`xterm-mouse-mode'.

2005-04-04  Jay Belanger  <belanger@truman.edu>

	* calc.texi: Change Calc version number.
	(Customizable variables): Fix description of calc-language-alist.
	(Copying): Put in version 2 of GPL.

2005-04-03  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* calendar.texi (Diary): Mention shell utility `calendar'.

2005-04-01  Richard M. Stallman  <rms@gnu.org>

	* cmdargs.texi (Misc X): Explain horizontal scroll bars don't exist.

2005-04-01  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Troubleshooting Commands): Remove comment about
	installation.
	(Installation): Remove section.
	(Customizable Variables): New section.
	(Basic Embedded Mode, Customizing Embedded Mode, Graphics)
	(Graphical Devices): Add references to Customizable Variables.

2005-04-01  Lute Kamstra  <lute@gnu.org>

	* maintaining.texi (Change Log): add-change-log-entry uses
	add-log-mailing-address.

2005-03-31  Luc Teirlinck  <teirllm@auburn.edu>

	* files.texi (Reverting): Move `auto-revert-check-vc-info' to
	`VC Mode Line' and put in an xref to that node.
	(VC Mode Line): Move `auto-revert-check-vc-info' here and clarify
	its description.

2005-03-31  Paul Eggert  <eggert@cs.ucla.edu>

	* calendar.texi (Calendar Systems): Say that the Persian calendar
	implemented here is the arithmetical one championed by Birashk.

2005-03-30  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* programs.texi (Fortran Motion): Fix previous change.

2005-03-25  Katsumi Yamaoka  <yamaoka@jpl.org>

	* emacs-mime.texi (Display Customization): Markup fixes.
	(rfc2047): Update.

2005-03-23  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus-faq.texi: Replaced with auto-generated version.

2005-03-29  Richard M. Stallman  <rms@gnu.org>

	* mule.texi (Single-Byte Character Support): Reinstall the C-x 8 info.

2005-03-29  Chong Yidong  <cyd@stupidchicken.com>

	* text.texi (Refill): Refer to Long Lines Mode.
	(Longlines): New node.
	(Auto Fill): Don't index "word wrap" here.
	(Filling): Add Longlines to menu.

2005-03-29  Richard M. Stallman  <rms@gnu.org>

	* xresources.texi: Minor fixes.

	* misc.texi (Emacs Server): Fix Texinfo usage.

	* emacs.texi (Top): Don't use a real section heading for
	"Detailed Node Listing".  Fake it instead.

	* basic.texi (Position Info): Minor cleanup.

	* mule.texi (Input Methods): Minor cleanup.

2005-03-29  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* programs.texi (ForIndent Vars): `fortran-if-indent' does other
	constructs as well.
	(Fortran Motion): Add fortran-end-of-block,
	fortran-beginning-of-block.

2005-03-29  Kenichi Handa  <handa@m17n.org>

	* mule.texi (Input Methods): Refer to the command C-u C-x =.

	* basic.texi (Position Info): Update the description about the
	command C-u C-x =.

2005-03-28  Richard M. Stallman  <rms@gnu.org>

	* emacs.texi (Top): Use @section for the detailed node listing.

	* calendar.texi: Minor fixes to previous change.

	* programs.texi (Fortran): Small fixes to previous changes.

	* emacs.texi (Top): Update list of subnodes of Dired.
	Likewise for building.texi.

	* files.texi (File Conveniences): Delete Auto Image File mode.

2005-03-28  Chong Yidong  <cyd@stupidchicken.com>

	* building.texi (Flymake): New node.

	* custom.texi (Function Keys): Document kp- event types and
	keypad-setup package.

	* dired.texi (Wdired): New node.

	* files.texi (File Conveniences): Reorder entries.
	Explain how to turn on Auto-image-file mode.
	Document Thumbs mode.

	* mule.texi (Specify Coding): Document recode-region and
	recode-file-name.

	* programs.texi (Program Modes): Add Conf mode and DNS mode.

2005-03-27  Luc Teirlinck  <teirllm@auburn.edu>

	* commands.texi (Keys): M-o is now a prefix key.

2005-03-27  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* programs.texi: Reformat and update copyright years.
	(Fortran): Update section.

2005-03-26  Luc Teirlinck  <teirllm@auburn.edu>

	* files.texi: Several small changes in addition to:
	(Visiting): Change xref for Dialog Boxes to ref.
	(Version Headers): Replace references to obsolete var
	`vc-header-alist' with `vc-BACKEND-header'.
	(Customizing VC): Update value of `vc-handled-backends'.

2005-03-26  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* emacs-xtra.texi (Advanced Calendar/Diary Usage): New section;
	move here from Emacs Lisp Reference Manual.
	* calendar.texi (Calendar/Diary, Diary Commands)
	(Special Diary Entries, Importing Diary): Change some xrefs to
	point to emacs-xtra rather than elisp.

	* emacs-xtra.texi (Calendar Customizing): Move
	view-diary-entries-initially, view-calendar-holidays-initially,
	mark-diary-entries-in-calendar, mark-holidays-in-calendar to main
	Emacs Manual.
	(Appt Customizing): Merge entire section into main Emacs Manual.
	* calendar.texi (Holidays): Move view-calendar-holidays-initially,
	mark-holidays-in-calendar here from emacs-xtra.
	(Displaying the Diary): Move view-diary-entries-initially,
	mark-diary-entries-in-calendar here from emacs-xtra.
	(Appointments): Move appt-display-mode-line,
	appt-display-duration, appt-disp-window-function,
	appt-delete-window-function here from emacs-xtra.

	* calendar.texi: Update and reformat copyright.
	Change all @xrefs to the non-printing emacs-xtra to @inforefs.
	(Calendar/Diary): Menu now only on Mouse-3, not C-Mouse-3.
	(Diary): Refer to `diary-file' rather than ~/diary.
	(Diary Commands): Rename node to "Displaying the Diary".
	* emacs.texi (Top): Rename "Diary Commands" section.
	* misc.texi (Hardcopy): Rename "Diary Commands" xref.

2005-03-26  Eli Zaretskii  <eliz@gnu.org>

	* misc.texi (Emacs Server): Fix the command for setting
	server-name.  Add an xref to Invoking emacsclient.

	* help.texi (Help Summary): Clarify when "C-h ." will do something
	nontrivial.
	(Apropos): Add cindex entry for apropos-sort-by-scores.

	* display.texi (Text Display): Add index entries for how no-break
	characters are displayed.

2005-03-26  Stephan Stahl  <stahl@eos.franken.de>  (tiny change)

	* dired-x.texi (Multiple Dired Directories): default-directory was
	renamed to dired-default-directory.

2005-03-26  Eli Zaretskii  <eliz@gnu.org>

	* files.texi (Visiting): Fix cross-references introduced with the
	last change.

	* xresources.texi (GTK resources): Fix last change.

2005-03-26  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Simplifying Formulas, Rewrite Rules): Change
	description of top and bottom of fraction.
	(Modulo Forms): Move description of how to create modulo forms to
	earlier in the section.
	(Fraction Mode): Suggest using : to get a fraction by dividing.
	(Basic Arithmetic): Adjust placement of command name.
	(Truncating the Stack): Emphasize that "hidden" entries are still
	visible.
	(Installation): Move discussion of printing manual to "About This
	Manual".
	(About This Manual): Mention how to print the manual.
	(Reporting Bugs): Remove first person.
	(Building Vectors): Add algebraic version of append.
	(Manipulating Vectors): Fix algebraic version of calc-reverse-vector.
	(Grouping Digits): Fix typo.

2005-03-25  Chong Yidong  <cyd@stupidchicken.com>

	* xresources.texi (X Resources): GTK options documented too.
	(Resources): Clarify meaning of program name.
	(Table of Resources): Add visualClass.
	(GTK resources): Rewrite.
	(GTK widget names, GTK Names in Emacs, GTK styles): Cleanups.

	* display.texi (Text Display): Mention non-breaking spaces.

	* files.texi (Reverting): Document auto-revert-check-vc-info.

	* frames.texi (Mouse Commands): Document
	x-mouse-click-focus-ignore-position and mouse-drag-copy-region.

	* help.texi (Help Summary): Add `C-h .'.
	(Apropos): Apropos accepts a list of search terms.
	Document apropos-sort-by-scores.
	(Help Echo): Document display-local-help.

	* misc.texi (Emacs Server): Document server-name.
	(Invoking emacsclient): Document -s option for server names.

	* text.texi (Outline Visibility): Introduce "current heading
	line" (commands can be called with point on a body line).
	Re-order table to follow the sequence of discussion.
	hide-body won't hide lines before first header line.
	(TeX Mode): Add DocTeX mode.

2005-03-25  Werner Lemberg  <wl@gnu.org>

	* calc.texi, cl.texi, gnus.texi, idlwave.texi, reftex.texi: Replace
	`legal' with `valid'.

2005-03-25  Werner Lemberg  <wl@gnu.org>

	* calc.texi, reftex.texi: Replace `illegal' with `invalid'.

2005-03-24  Jay Belanger  <belanger@truman.edu>

	* calc.texi (General Mode Commands)
	(Mode Settings in Embedded Mode): Added some explanation of
	recording mode settings.

2005-03-24  Richard M. Stallman  <rms@gnu.org>

	* mule.texi (Single-Byte Character Support): Delete mention
	of iso-acc.el and iso-transl.el.

	* calc.texi: Remove praise of non-free software.

	* idlwave.texi: Don't say where to get IDL or its non-free manual.
	(Installation): Node deleted.

2005-03-23  Lute Kamstra  <lute@gnu.org>

	* search.texi (Non-ASCII Isearch): Rename from Non-Ascii Isearch.

2005-03-23  Richard M. Stallman  <rms@gnu.org>

	* url.texi (HTTP language/coding): Improve last change.

	* search.texi: Delete explicit node pointers.
	(Incremental Search): New menu.
	(Basic Isearch, Repeat Isearch, Error in Isearch)
	(Non-Ascii Isearch, Isearch Yank, Highlight Isearch, Isearch Scroll)
	(Slow Isearch): New subnodes.
	(Configuring Scrolling): Node deleted.
	(Search Case): Doc default-case-fold-search.
	(Regexp Replace): Move replace-regexp doc here.

	* rmail.texi (Movemail): Put commas inside closequotes.

	* picture.texi (Insert in Picture): Document C-c arrow combos.
	(Basic Picture): Clarify erasure.

	* display.texi (Font Lock): Put commas inside closequotes.

	* cmdargs.texi (General Variables): Put commas inside closequotes.

2005-03-23  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi (Stack Buffer): Mention reverse contrast for
	*selected* frame (might not be current frame).

2005-03-22  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Embedded Mode): Add new information on changing
	modes.

2005-03-21  Richard M. Stallman  <rms@gnu.org>

	* building.texi (Starting GUD): Add bashdb.

2005-03-20  Chong Yidong  <cyd@stupidchicken.com>

	* basic.texi (Moving Point): Add M-g M-g binding.
	(Undo): Document undo-only.
	(Position Info): Document M-g M-g and C-u M-g M-g.

	* building.texi (Building): Put Grep Searching after Compilation
	Shell.
	(Compilation Mode): Document M-n, M-p, M-}, M-{, and C-c C-f bindings.
	Document next-error-highlight.
	(Grep Searching): Document grep-highlight-matches.
	(Lisp Eval): Typing C-x C-e twice prints integers specially.

	* calendar.texi (Importing Diary): Rename node from iCalendar.
	Document diary-from-outlook.

	* dired.texi (Misc Dired Features): Rename node from Misc Dired
	Commands.
	Mention effect of X drag and drop on Dired buffers.

	* files.texi (Visiting): Document large-file-warning-threshold.
	Move paragraph on file-selection dialog.
	Mention visiting files using X drag and drop.
	(Reverting): Mention using Auto-Revert mode to tail files.
	Document auto-revert-tail-mode.
	(Version Systems): Minor correction.
	(Comparing Files): Diff-mode is no longer based on Compilation
	mode.
	Document compare-ignore-whitespace.
	(Misc File Ops): Explain passing a directory to rename-file.
	Likewise for copy-file and make-symbolic-link.

	* frames.texi (Wheeled Mice): Mouse wheel support on by default.
	Document mouse-wheel-progressive speed.

	* help.texi (Misc Help): Document numeric argument for C-h i.
	Correctly explain the effect of just C-u as argument.

	* killing.texi (Deletion): Document numeric argument for
	just-one-space.

	* mini.texi (Completion): Completion acts on text before point.

	* misc.texi (Saving Emacs Sessions): Document desktop-restore-eager.
	(Emulation): CUA mode replaces pc-bindings-mode,
	pc-selection-mode, and s-region.

	* mule.texi (Input Methods): Leim is now built-in.
	(Select Input Method): Document quail-show-key.
	(Specify Coding): Document revert-buffer-with-coding-system.

	* programs.texi (Fortran Motion): Document f90-next-statement,
	f90-previous-statement, f90-next-block, f90-previous-block,
	f90-end-of-block, and f90-beginning-of-block.

	* text.texi (Format Faces): Replace old M-g key prefix with M-o.

	* emacs.texi (Acknowledgments): Updated.

	* anti.texi: Total rewrite.

2005-03-20  Michael Albinus  <michael.albinus@gmx.de>

	Sync with Tramp 2.0.48.

	* trampver.texi.in: Replace "Emacs" by "GNU Emacs".

	* tramp.texi: Replace "Emacs" by "GNU Emacs".  Replace "Linux" by
	"GNU/Linux".  Change all addresses to .gnu.org.
	(Default Method): Offer shortened syntax for "su" and "sudo"
	methods.

2005-03-19  Chong Yidong  <cyd@stupidchicken.com>

	* ack.texi (Acknowledgments): Update.

2005-03-19  Eli Zaretskii  <eliz@gnu.org>

	* anti.texi (Antinews): Refer to Emacs 21.4, not 21.3.  Update
	copyright years.

2005-03-14  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi (Commands of GUD): Move paragraph on setting
	breakpoints with mouse to the GDB Graphical Interface node.

2005-03-07  Richard M. Stallman  <rms@gnu.org>

	* url.texi: Fix usage of "e.g.".
	(HTTP language/coding): Explain the rules for these strings.

	* misc.texi (Single Shell, Shell Options): Fix previous change.

	* building.texi (Debugger Operation): Update GUD tooltip enable info.

2005-03-06  Richard M. Stallman  <rms@gnu.org>

	* building.texi (Starting GUD): Don't explain text vs graphical
	GDB here.  Just mention it and xref.
	Delete "just one debugger process".
	(Debugger Operation): Move GUD tooltip info here.
	(GUD Tooltips): Node deleted.
	(GDB Graphical Interface): Explain the two GDB modes here.

	* woman.texi (Introduction): Minor cleanups.

	* url.texi (HTTP language/coding): Get rid of "Emacs 21".

	* sending.texi (Sending Mail): Minor cleanup.
	(Mail Aliases): Explain quoting conventions.
	Update key rebinding example.
	(Header Editing): C-M-i is like M-TAB.
	(Mail Mode Misc): mail-attach-file does not do MIME.

	* rmail.texi (Rmail Inbox): Move text from Remote Mailboxes
	that really belongs here.
	(Remote Mailboxes): Text moved to Rmail Inbox.
	(Rmail Display): Mention Mouse-1.
	(Movemail): Clarify two movemail versions.
	Clarify rmail-movemail-program.

	* pcl-cvs.texi (About PCL-CVS): Get rid of "Emacs 21".
	(Installation): Node deleted.

	* misc.texi (Single Shell): Replace uudecode example with gpg example.
	Document async shell commands.
	(Shell History): Clarify.
	(Shell Ring): Mention C-UP an C-DOWN.
	(Shell Options): Add comint-prompt-read-only.
	(Invoking emacsclient): Set EDITOR to run Emacs.
	(Sorting): No need to explain what region is.
	(Saving Emacs Sessions): Fix typo.
	(Recursive Edit): Fix punctuation.
	(Emulation): Don't mention "PC bindings" which are standard.
	(Hyperlinking): Explain Mouse-1 convention here.
	(Find Func): Node deleted.

	* mh-e.texi (Preface): Get rid of "Emacs 21".

	* help.texi (Name Help): Xref to Hyperlinking.

	* glossary.texi (Glossary):
	Rename "Balance Parentheses" to "Balancing...".
	Add "Byte Compilation".  Correct "Copyleft".
	New xref in "Customization".
	Clarify "Current Line", "Echoing", "Fringe", "Frame", "Speedbar".
	Add "Graphical Terminal" "Keybinding", "Margin", "Window System".
	Rename "Registers" to "Register".
	Replace "Selecting" with "Selected Frame",
	"Selected Window", and "Selecting a Buffer".

	* files.texi (Types of Log File): Explain how projects'
	methods can vary.

	* eshell.texi (Installation): Delete node (for Emacs 20).

	* display.texi (Faces): Delete "Emacs 21".

	* custom.texi (Changing a Variable): C-M-i like M-TAB.
	* fixit.texi (Spelling): C-M-i like M-TAB.
	* mini.texi (Completion Options): C-M-i like M-TAB.
	* programs.texi (Symbol Completion): C-M-i like M-TAB.
	* text.texi (Text Mode): C-M-i like M-TAB.

	* commands.texi (Keys): Mention F1 and F2 in list of prefixes.

	* calendar.texi (Specified Dates): Mention `g w'.
	(Appointments): appt-activate toggles with no arg.

2005-03-05  Thien-Thi Nguyen  <ttn@gnu.org>

	* flymake.texi: Refill and tweak style in @lisp blocks.

2005-03-05  Juri Linkov  <juri@jurta.org>

	* cmdargs.texi (Emacs Invocation): Add cindex
	"invocation (command line arguments)"
	(Misc X): Add -nbc, --no-blinking-cursor.

2005-03-04  Ulf Jasper  <ulf.jasper@web.de>

	* calendar.texi (iCalendar): No need to require it now.

2005-03-03  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus.texi (Slow/Expensive Connection): Don't abbreviate "very".

2005-03-03  Nick Roberts  <nickrob@snap.net.nz>

	* trouble.texi (Contributing): Mention Savannah. Direct users to
	emacs-devel.

2005-03-01  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* calendar.texi (Adding to Diary): Mention redrawing of calendar
	window.

2005-03-01  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Trigonometric and Hyperbolic Functions):
	Mention additional functions.
	(Algebraic Simplifications): Mention additional simplifications.

2005-02-27  Richard M. Stallman  <rms@gnu.org>

	* building.texi (Compilation): Update mode line status info.

2005-02-27  Matt Hodges  <MPHodges@member.fsf.org>

	* calendar.texi (General Calendar): Document binding of
	scroll-other-window-down.
	(Mayan Calendar): Fix earliest date.
	(Time Intervals): Document timeclock-change.  Fix
	timeclock-ask-before-exiting documentation.

2005-02-26  Kim F. Storm  <storm@cua.dk>

	* frames.texi (Mouse References):
	Add mouse-1-click-in-non-selected-windows.

2005-02-25  Richard M. Stallman  <rms@gnu.org>

	* screen.texi (Screen): Explain better about cursors and mode lines;
	don't presuppose text terminals.
	(Point): Don't assume just one cursor.
	Clarify explanation of cursors.
	(Echo Area, Menu Bar): Cleanups.

	* mini.texi (Minibuffer): Prompts are highlighted.
	(Minibuffer Edit): Newline = C-j only on text terminals.
	Clarify resize-mini-windows values.
	Mention M-PAGEUP and M-PAGEDOWN.
	(Completion Commands): Mouse-1 like Mouse-2.
	(Minibuffer History): Explain history commands better.
	(Repetition): Add xref to Incremental Search.

	* mark.texi (Setting Mark): Clarify info about displaying mark.
	Clarify explanation of C-@ and C-SPC.
	(Transient Mark): Mention Delete Selection mode.
	(Marking Objects): Clean up text about extending the region.

	* m-x.texi (M-x): One C-g doesn't always go to top level.
	No delay before suggest-key-bindings output.

	* fixit.texi (Fixit): Mention C-/ for undo.
	(Spelling): Mention ESC TAB like M-TAB.
	Replacement words with r and R are rechecked.
	Say where C-g leaves point.  Mention ? as input.

2005-02-23  Lute Kamstra  <lute@gnu.org>

	* cmdargs.texi (Initial Options): Add cross reference.

2005-02-18  Jonathan Yavner  <jyavner@member.fsf.org>

	* ses.texi: Add concept/function/variable indices (this work was
	donated by Brad Collins <brad@chenla.org>, copyright-assignment
	papers on file at FSF).

2005-02-16  Luc Teirlinck  <teirllm@auburn.edu>

	* emacs.texi (Top): Update menu for splitting of node in
	msdog.texi.
	* frames.texi (Frames): Update xref for splitting of node in
	msdog.texi.
	* trouble.texi (Quitting): Ditto.

2005-02-16  Richard M. Stallman  <rms@gnu.org>

	* windows.texi (Split Window): Simplify line truncation info
	and xref to Display Custom.

	* trouble.texi (Quitting): Emergency escape only for text terminal.
	(Screen Garbled): C-l for ungarbling is only for text terminal.

	* text.texi (Text Mode): ESC TAB alternative for M-TAB.

	* sending.texi (Header Editing): ESC TAB alternative for M-TAB.

	* programs.texi (Program Modes): Mention Python mode.
	(Moving by Defuns): Repeating C-M-h extends region.
	(Basic Indent): Clarify.
	(Custom C Indent): Clarify.
	(Expressions): Repeating C-M-@ extends region.
	(Info Lookup): Clarify for C-h S.
	(Symbol Completion): ESC TAB alternative for M-TAB.
	(Electric C): Clarify.

	* emacs.texi (Top): Update display.texi and frames.texi submenu data.

	* msdog.texi (MS-DOS Keyboard, MS-DOS Mouse): Split from
	MS-DOS Input node.
	(MS-DOS Keyboard): Start with explaining DEL and BREAK.
	(MS-DOS and MULE): Clarify.
	(MS-DOS Processes, Windows Processes): Fix typos.

	* major.texi (Choosing Modes): Clarify.

	* kmacro.texi (Basic Keyboard Macro): Doc F3, F4.
	(Keyboard Macro Step-Edit): Clarify.

	* indent.texi (Indentation): Clarifications.

	* help.texi (Help): Correct error about C-h in query-replace.
	Clarify apropos vs C-h a.  Fix how to search in FAQ.
	(Key Help): Describe C-h w here.
	(Name Help): Minor cleanup.  C-h w moved to Key Help.
	Clarify the "object" joke.
	(Apropos): Clarify.  Mouse-1 like Mouse-2.
	(Help Mode): Mouse-1 like Mouse-2.

	* fixit.texi (Spelling): Mention ESC TAB as alt. for M-TAB.

	* display.texi (Display): Reorder menu.
	(Faces): Cleanup.
	(Font Lock): Cleanup.  Mention Options menu.
	Delete obsolete text.
	(Scrolling): For C-l, don't presume text terminal.
	(Horizontal Scrolling): Simplify intro.
	(Follow Mode): Clarify.
	(Cursor Display): Moved before Display Custom.
	(Display Custom): Explain no-redraw-on-reenter is for text terminals.
	Doc default-tab-width.  Doc line truncation more thoroughly.

	* dired.texi (Dired Enter): C-x C-f can run Dired.
	(Dired Visiting): Comment out `a' command.
	Mouse-1 is like Mouse-2.
	(Shell Commands in Dired): ? can be used more than once.

	* basic.texi (Continuation Lines): Simplify description of truncation,
	and refer to Display Custom for the rest of it.

2005-02-10  Jay Belanger  <belanger@truman.edu>

	* calc.texi:  Change @LaTeX to La@TeX throughout.
	Redefine @expr as @math for TeX output.
	Redefine @texline as a no-op for TeX output.
	Define @tfn, replace @t by @tfn throughout.

2005-02-09  Jay Belanger  <belanger@truman.edu>

	* calc.texi:  Add macro for LaTeX for info output.

2005-02-08  Kim F. Storm  <storm@cua.dk>

	* texinfo.tex (LaTex): Add def.

2005-02-06  Jay Belanger  <belanger@truman.edu>

	* calc.texi (TeX Language Mode): Add mention of LaTeX mode, and
	change name to "TeX and LaTeX Language Modes."  Mention LaTeX mode
	throughout manual.

2005-02-06  Lute Kamstra  <lute@gnu.org>

	* basic.texi (Undo): Fix typo.

	* cmdargs.texi (Emacs Invocation): Fix typo.

	* custom.texi (Init Examples): Fix typo.

	* abbrevs.texi (Expanding Abbrevs): Fix typo.

2005-02-06  Richard M. Stallman  <rms@gnu.org>

	* regs.texi (Registers): Registers can hold numbers, too.

	* killing.texi (Other Kill Commands): Cleanup.
	Delete redundant explanation of kill in read-only buffer.
	(Yanking): Mention term "copying".
	(Accumulating Text): Fix typo.

	* entering.texi (Entering Emacs): Update rationale at start.
	(Exiting): Treat iconifying on a par with suspension.

	* custom.texi (Minor Modes): Fix typo.
	(Easy Customization): Fix menu style.
	(Variables): Add xref.
	(Examining): Setting for future sessions works through .emacs.
	(Keymaps): "Text terminals", not "Many".
	(Init Rebinding): Explain \C-.  Show example of \M-.
	Fix minor wording errors.
	(Function Keys): Explain vector syntax just once.
	(Named ASCII Chars): Clarify history of TAB/C-i connection.
	(Init File): Mention .emacs.d directory.
	(Init Examples): Add xref.
	(Find Init): Mention .emacs.d directory.

	* cmdargs.texi (Emacs Invocation): +LINENUM is also an option.
	(Action Arguments): Explain which kinds of -l args are found how.
	(Initial Options): --batch does not inhibit site-start.
	Add xrefs.
	(Command Example): Use --batch, not -batch.

	* basic.texi (Inserting Text): Cleanup wording.
	(Moving Point): Doc PRIOR, PAGEUP, NEXT, PAGEDOWN more systematically.
	C-n is not error at end of buffer.
	(Undo): Doc C-/ like C-_.  Add xrefs.
	(Arguments): META key may be labeled ALT.
	Peculiar arg meanings are explained in doc strings.

	* abbrevs.texi (Expanding Abbrevs): Clarify.

2005-02-05  Eli Zaretskii  <eliz@gnu.org>

	* frames.texi (Frame Parameters): Add an xref to the description
	of list-colors-display.  Add a pointer to the X docs about colors.

	* cmdargs.texi (Colors): Mention 16-, 88- and 256-color modes.
	Impove docs of list-colors-display.

2005-02-03  Lute Kamstra  <lute@gnu.org>

	* frames.texi (Frames, Drag and Drop): Fix typos.

2005-02-03  Richard M. Stallman  <rms@gnu.org>

	* windows.texi (Basic Window): Mention color-change in mode line.
	(Change Window): Explain dragging vertical boundaries.

	* text.texi (Sentences): Clarify.
	(Paragraphs): Explain M-a and blank lines.
	(Outline Mode): Clarify text and menu.
	(Hard and Soft Newlines): Mention use-hard-newlines.

	* frames.texi (Frames): Delete unnecessary mention of Windows.
	(Mouse Commands): Likewise.  Mention xterm mouse support.
	(Clipboard): Clarify.
	(Mouse References): Mention use of Mouse-1 for following links.
	(Menu Mouse Clicks): Clarify.
	(Mode Line Mouse): Clarify.
	(Drag and Drop): Rewrite.

	* fixit.texi (Spelling): Fix typo.

	* files.texi (File Names): Clarify.
	(Visiting): Update conditions for use of file dialog.  Clarify.
	(Saving): Doc d as answer in save-some-buffers.
	(Remote Files): Clean up the text.

	* dired.texi (Misc Dired Commands): Delete dired-marked-files.

	* buffers.texi (Select Buffer): Doc next-buffer and prev-buffer.
	(List Buffers): Clarify.
	(Several Buffers): Doc T command.
	(Buffer Convenience): Clarify menu.

	* basic.texi (Undo): Clarify last change.

2005-02-02  Matt Hodges  <MPHodges@member.fsf.org>

	* fixit.texi (Spelling): Fix typo.

2005-02-01  Luc Teirlinck  <teirllm@auburn.edu>

	* basic.texi (Undo): Update description of `undo-outer-limit'.

2005-02-01  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi: Update documentation relating to GDB Graphical
	Interface.

2005-01-30  Luc Teirlinck  <teirllm@auburn.edu>

	* custom.texi (Easy Customization): Adapt menu to node name change.

2005-01-30  Richard M. Stallman  <rms@gnu.org>

	* custom.texi (Easy Customization): Defn of "User Option" now
	includes faces.  Don't say just "option" when talking about variables.
	Do say just "options" to mean "anything customizable".
	(Specific Customization): Describe `customize-variable',
	not `customize-option'.

	* glossary.texi (Glossary) <Faces>: Add xref.
	<User Option>: Change definition--include faces.  Change xref.

	* picture.texi (Picture): Mention artist.el.

	* sending.texi, screen.texi, programs.texi, misc.texi:
	* mini.texi, major.texi, maintaining.texi, macos.texi:
	* help.texi, frames.texi, files.texi:
	Don't say just "option" when talking about variables.

	* display.texi, mule.texi: Don't say just "option" when talking
	about variables.  Other minor cleanups.

2005-01-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>

	* gnus.texi: Some edits based on comments from David Abrahams.

2005-01-24  Katsumi Yamaoka  <yamaoka@jpl.org>

	* gnus.texi (RSS): Fix the keystroke.

2005-01-26  Lute Kamstra  <lute@gnu.org>

	* cmdargs.texi (Initial Options): Add a cross reference to `Init
	File'.  Mention the `-Q' option at the `--no-site-file' option.

2005-01-24  David Kastrup  <dak@gnu.org>

	* faq.texi: Update AUCTeX version info.

2005-01-16  Xavier Maillard <zedek@gnu-rox.org> (tiny change)

	* gnus-faq.texi ([4.1]): Typo.

2005-01-22  David Kastrup  <dak@gnu.org>

	* building.texi (Grep Searching): Mention alias `find-grep' for
	`grep-find'.

2005-01-20  Richard M. Stallman  <rms@gnu.org>

	* calendar.texi (Time Intervals): Delete special stuff for MS-DOS.

2005-01-19  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Keep Arguments): Mention that keeping arguments
	doesn't work with keyboard macros.

2005-01-16  Richard M. Stallman  <rms@gnu.org>

	* autotype.texi (Autoinserting): Fix small error.

2005-01-16  Michael Albinus  <michael.albinus@gmx.de>

	Sync with Tramp 2.0.47.

	* tramp.texi (Compilation): New section, describing compilation of
	remote files.

2005-01-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* rmail.texi (Movemail): Explain differences
	between standard and mailutils versions of movemail.
	Describe command line and configuration options introduced
	with the latter.
	Explain the notion of mailbox URL, provide examples and
	cross-references to mailutils documentation.
	Describe various methods of specifying mailbox names,
	user names and user passwords for rmail.
	(Remote Mailboxes): New section.  Describe
	how movemail handles remote mailboxes.  Describe configuration
	options used to control its behavior.
	(Other Mailbox Formats): Explain handling of various mailbox
	formats.

2005-01-13  Richard M. Stallman  <rms@gnu.org>

	* commands.texi (Commands): Clarification.

2005-01-11  Richard M. Stallman  <rms@gnu.org>

	* programs.texi (Multi-line Indent): Fix previous change.
	(Fortran Autofill): Simplify description of fortran-auto-fill-mode.

2005-01-11  Kim F. Storm  <storm@cua.dk>

	* widget.texi (Basic Types): Add :follow-link keyword.

2005-01-09  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Basic Commands): Describe new behavior of calc-reset.

2005-01-08  Richard M. Stallman  <rms@gnu.org>

	* display.texi (Faces): isearch-lazy-highlight-face renamed to
	lazy-highlight.

	* search.texi (Query Replace): Mention faces query-replace
	and lazy-highlight.
	(Incremental Search): Update isearch highlighting info.

2005-01-08  Jay Belanger  <belanger@truman.edu>

	* calc.texi: Change throughout to reflect new default value of
	calc-settings-file.

2005-01-06  Katsumi Yamaoka  <yamaoka@jpl.org>

	* message.texi (Reply): `message-reply-to-function' should return
	a list.  Suggested by ARISAWA Akihiro <ari@mbf.ocn.co.jp>.

2005-01-06  Hiroshi Fujishima  <pooh@nature.tsukuba.ac.jp>  (tiny change)

	* faq.texi (Changing load-path): Fix typo.

2005-01-05  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Programming Tutorial): Replace kbd command by
	appropriate characters for a keyboard macro.

2005-01-04  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Basic Tutorial, Programming Tutorial): Remove caveats
	for Lucid Emacs.
	(Programming Tutorial): Mention that the user needs to be in the
	right mode to compute some functions.

2005-01-04  Richard M. Stallman  <rms@gnu.org>

	* custom.texi (Saving Customizations): Minor improvement.

2005-01-04  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Rewrite rules): Remove an exercise (on 0^0) which is
	no longer applicable.

2005-01-03  Luc Teirlinck  <teirllm@auburn.edu>

	* custom.texi (Saving Customizations): Emacs no longer loads
	`custom-file' after .emacs.  No longer mention customizing through
	Custom.

2005-01-01  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Programming Tutorial): Changed description of how to
	edit keyboard macros to match current behavior.

2005-01-01  Andreas Schwab  <schwab@suse.de>

	* killing.texi (Graphical Kill): Move up under node Killing,
	change @section to @subsection.

2005-01-01  Richard M. Stallman  <rms@gnu.org>

	* custom.texi (Face Customization): Mention hex color specs.

	* emacs.texi (Top): Update Killing submenu.

	* killing.texi (Killing): Reorganize section.
	No more TeX-only text; put the node command at start of chapter.
	But the first section heading is used only in TeX.
	Rewrite the text to read better in this mode.
	(Graphical Kill): New subnode gets some of the text that
	used to be in the first section.

2004-12-31  Richard M. Stallman  <rms@gnu.org>

	* dired.texi (Shell Commands in Dired): Delete the ? example.

	* display.texi (Scrolling): Correct scroll-preserve-screen-position.

	* files.texi (Saving): Describe new require-final-newline features
	and mode-require-final-newline.

2004-12-31  Jay Belanger  <belanger@truman.edu>

	* calc.texi: Mention C-cC-c as the way to finish editing throughout.

2004-12-29  Richard M. Stallman  <rms@gnu.org>

	* custom.texi (File Variables): Clarify previous change.

2004-12-27  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Dialog Boxes): Mention Gtk+ 2.6 also, as that version is
	out now.

2004-12-27  Richard M. Stallman  <rms@gnu.org>

	* Makefile.in (MAKEINFO): Specify --force.

	* basic.texi (Moving Point): C-e now runs move-end-of-line.
	(Undo): Doc undo-outer-limit.

2004-12-20  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Types Tutorial): Emphasize that you can't divide by
	zero.

2004-12-17  Luc Teirlinck  <teirllm@auburn.edu>

	* cc-mode.texi (Text Filling and Line Breaking): Put period after
	@xref.
	(Font Locking): Avoid @strong{Note:}.

2004-12-17  Michael Albinus  <michael.albinus@gmx.de>

	Sync with Tramp 2.0.46.

	* tramp.texi (bottom): Add arch-tag.  It was lost, somehow.

2004-12-16  Luc Teirlinck  <teirllm@auburn.edu>

	* url.texi: Correct typos.
	(Retrieving URLs): @var{nil}->@code{nil}.
	(HTTP language/coding, mailto): Replace  "GNU Emacs Manual" with
	the standard "The GNU Emacs Manual" in fifth argument of @xref's.
	(Dealing with HTTP documents): @inforef->@xref.

2004-12-15  Juri Linkov  <juri@jurta.org>

	* mark.texi (Transient Mark, Mark Ring): M-< and other
	movement commands don't set mark in Transient Mark mode
	if mark is active.

2004-12-15  Jay Belanger  <belanger@truman.edu>

	* calc.texi: Consistently capitalized all mode names.
	(Answers to Exercises): Mention that an answer can be a fraction
	when in Fraction mode.

2004-12-13  Jay Belanger  <belanger@truman.edu>

	* calc.texi: Fix some TeX definitions.

2004-12-12  Juri Linkov  <juri@jurta.org>

	* misc.texi (FFAP): Add C-x C-r, C-x C-v, C-x C-d,
	C-x 4 r, C-x 4 d, C-x 5 r, C-x 5 d.

	* dired.texi (Dired Navigation): Add @r{(Dired)} to M-g.
	(Misc Dired Commands): Add @r{(Dired)} to w.

2004-12-12  Juri Linkov  <juri@jurta.org>

	* mark.texi (Marking Objects): Marking commands also extend the
	region when mark is active in Transient Mark mode.

2004-12-09  Luc Teirlinck  <teirllm@auburn.edu>

	* reftex.texi (Imprint): Remove erroneous @value's.

2004-12-08  Luc Teirlinck  <teirllm@auburn.edu>

	* custom.texi (Saving Customizations): Emacs only loads the custom
	file automatically after the init file in version 22.1 or later.
	Adapt text and examples to this fact.

	* makefile.w32-in (INFO_TARGETS, DVI_TARGETS, $(infodir)/org)
	(org.dvi, $(infodir)/url, url.dvi, clean): Add org and url manuals.

2004-12-08  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Starting Calc): Remove comment about installation.
	(Keypad Mode Overview): Remove comment about Emacs 19 support.

2004-12-08  Luc Teirlinck  <teirllm@auburn.edu>

	* url.texi: Update @setfilename.
	(Getting Started): No need to worry about Gnus versions.
	(Dealing with HTTP documents): Use @inforef.

	* org.texi: Fix @direntry file name.

2004-12-07  Luc Teirlinck  <teirllm@auburn.edu>

	* frames.texi (Scroll Bars): The option `scroll-bar-mode' has to
	be set through Custom.  Otherwise, it has no effect.

2004-12-07  Stefan  <monnier@iro.umontreal.ca>

	* url.texi: New file.

	* Makefile.in (INFO_TARGETS, DVI_TARGETS, ../info/url, url.dvi): Add it.

2004-12-06  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Using Calc): Remove paragraph about installation.

2004-12-06  Jay Belanger  <belanger@truman.edu>

	* calc.texi: Use more Texinfo macros and less TeX defs.
	Remove @refill's.

2004-12-06  Richard M. Stallman  <rms@gnu.org>

	* org.texi: New file.

2004-12-05  Richard M. Stallman  <rms@gnu.org>

	* cmdargs.texi, doclicense.texi, xresources.texi, emacs.texi:
	* entering.texi: Rename Command Line to Emacs Invocation.

	* Makefile.in (org.dvi, ../info/org): New targets.
	(INFO_TARGETS): Add ../info/org.
	(DVI_TARGETS): Add org.dvi.
	(maintainer-clean): Remove the info files in the info dir.

	* misc.texi (Term Mode): Correcty describe C-c.

	* custom.texi (Easy Customization): Move up to section level,
	before Variables.  Avoid using the term "variable"; say "option".
	New initial explanation.
	(Variables): In initial explanation, connect "variable" to the
	already-explained "user option".

	* emacs.texi (Top): Fix ref to Command Line.
	Move reference to Easy Customization.

	* xresources.texi (X Resources): Fix From link.

	* doclicense.texi (GNU Free Documentation License): Fix To link.

	* entering.texi (Entering Emacs): Fix xref, now to Command Line.

	* cmdargs.texi (Command Line): Node renamed from Command Arguments.

2004-12-03  Richard M. Stallman  <rms@gnu.org>

	* cmdargs.texi (Initial Options): Clarify batch mode i/o.

2004-12-01  Luc Teirlinck  <teirllm@auburn.edu>

	* kmacro.texi: Several small changes in addition to the following.
	(Keyboard Macro Ring): Describe behavior of `C-x C-k C-k' when
	defining a keyboard macro.
	Mention `kmacro-ring-max'.
	(Keyboard Macro Counter): Clarify description of
	`kmacro-insert-counter', `kmacro-set-counter',
	`kmacro-add-counter' and `kmacro-set-format'.

2004-11-29  Reiner Steib  <Reiner.Steib@gmx.de>

	* custom.texi (File Variables): Add `unibyte' and make it more
	clear that `unibyte' and `coding' are special.  Suggested by Simon
	Krahnke <overlord@gmx.li>.

	* mule.texi (Enabling Multibyte): Refer to File Variables.
	Suggested by Simon Krahnke <overlord@gmx.li>.

2004-11-26  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Dialog Boxes): Rename use-old-gtk-file-dialog to
	x-use-old-gtk-file-dialog.

2004-11-26  Eli Zaretskii  <eliz@gnu.org>

	* idlwave.texi: Fix the setfilename directive to put the produced
	file in ../info.
	(Continued Statement Indentation): Resurrect Jan D.'s change from
	2004-11-03 that was lost when a newer version of idlwave.texi was
	imported.

2004-11-20  Richard M. Stallman  <rms@gnu.org>

	* text.texi (Fill Prefix): M-q doesn't apply fill prefix to first line.

2004-11-09  Lars Brinkhoff  <lars@nocrew.org>

	* building.texi (Lisp Eval): Delete hyphen in section name.

2004-11-19  Thien-Thi Nguyen  <ttn@gnu.org>

	* files.texi (Old Versions):
	No longer document annotation as "CVS only".

2004-11-10  Andre Spiegel  <spiegel@gnu.org>

	* files.texi (Version Control): Rewrite the introduction about
	version systems, mentioning the new ones that we support.  Thanks
	to Alex Ott, Karl Fogel, Stefan Monnier, and David Kastrup for
	suggestions.

2004-12-08  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus-faq.texi ([5.1]): Added missing bracket.

	* gnus.texi (Filtering Spam Using The Spam ELisp Package): Index
	`spam-initialize'.

2004-11-22  Reiner Steib  <Reiner.Steib@gmx.de>

	* message.texi (Various Message Variables): Mention that all mail
	file variables are derived from `message-directory'.

	* gnus.texi (Splitting Mail): Clarify bogus group.

2004-11-02  Katsumi Yamaoka  <yamaoka@jpl.org>

	* emacs-mime.texi (Encoding Customization): Fix
	mm-coding-system-priorities entry.

2004-11-03  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Dialog Boxes):
	* idlwave.texi (Continued Statement Indentation):
	* reftex.texi (Options (Index Support)):
	(Displaying and Editing the Index, Table of Contents):
	* speedbar.texi (Creating a display, Major Display Modes): Replace
	non-nil with non-@code{nil}.

2004-11-02  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Dialog Boxes): Document use-old-gtk-file-dialog.

2004-10-23  Eli Zaretskii  <eliz@gnu.org>

	* text.texi (Text Based Tables, Table Definition)
	(Table Creation, Table Recognition, Cell Commands)
	(Cell Justification, Row Commands, Column Commands)
	(Fixed Width Mode, Table Conversion, Measuring Tables)
	(Table Misc): New nodes, documenting the Table Mode.

2004-10-21  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Algebraic-Style Calculations): Removed a comment.

2004-10-19  Jason Rumney  <jasonr@gnu.org>

	* makefile.w32-in (info): Change order of arguments to makeinfo.

2004-10-19  Ulf Jasper  <ulf.jasper@web.de>

	* calendar.texi (iCalendar): Update for package changes.

2004-10-18  Luc Teirlinck  <teirllm@auburn.edu>

	* calc.texi (Reporting Bugs): Double up `@'.

2004-10-18  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Reporting Bugs):  Changed the address that bugs
	should be sent to.

2004-10-15  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus.texi (New Features): Add 5.11.

	* message.texi (Resending): Remove wrong default value.

	* gnus.texi (Mail Source Specifiers): Describe possible problems
	of `pop3-leave-mail-on-server'.  Add `pop3-movemail' and
	`pop3-leave-mail-on-server' to the index.

2004-10-15  Katsumi Yamaoka  <yamaoka@jpl.org>

	* message.texi (Canceling News): Add how to set a password.

2004-10-12  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Help Commands):  Changed the descriptions of
	calc-describe-function and calc-describe-variable to match their
	current behavior.

2004-10-12  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus-faq.texi ([5.9]): Improve code for reply-in-news.

2004-10-12  Michael Albinus  <michael.albinus@gmx.de>

	Sync with Tramp 2.0.45.

	* tramp.texi (Frequently Asked Questions): Comment paragraph about
	plink link.  The URL is outdated.  Originator contacted for
	clarification.

2004-10-10  Juri Linkov  <juri@jurta.org>

	* gnus.texi (Top, Marking Articles): Join two menus in one node
	because a node can have only one menu.

2004-10-09  Luc Teirlinck  <teirllm@auburn.edu>

	* files.texi (Misc File Ops): View mode is a minor mode.

2004-10-09  Juri Linkov  <juri@jurta.org>

	* gnus.texi (Fancy Mail Splitting): Remove backslash in the
	example of nnmail-split-fancy.

2004-10-08  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* calendar.texi (iCalendar): Style changes.

2004-10-07  Luc Teirlinck  <teirllm@auburn.edu>

	* search.texi (Regexps): The regexp described in the example is no
	longer stored in the variable `sentence-end'.

2004-10-06  Karl Berry  <karl@gnu.org>

	* info.texi (@kbd{1}--@kbd{9}): no space around --, for
	consistency with other uses of dashes.

2004-10-06  Nick Roberts  <nickrob@snap.net.nz>

	* building.texi (Starting GUD): Note that multiple debugging
	sessions requires `gdb --fullname'.

2004-10-05  Ulf Jasper  <ulf.jasper@web.de>

	* calendar.texi (iCalendar): New section for a new package.

2004-10-05  Karl Berry  <karl@gnu.org>

	* info.texi: consistently use --- throughout, periods at end of
	menu descriptions, and a couple typos.

2004-10-05  Luc Teirlinck  <teirllm@auburn.edu>

	* text.texi: Various small changes in addition to the following.
	(Text): Replace xref for autotype with inforef.
	(Sentences): Explain nil value for `sentence-end'.
	(Paragraphs): Update default values for `paragraph-start' and
	`paragraph-separate'.
	(Text Mode): Correct description of Text mode's effect on the
	syntax table.
	(Outline Visibility): `hide-other' does not hide top level headings.
	`selective-display-ellipses' no longer has an effect on Outline mode.
	(TeX Misc): Add missing @cindex.
	Replace xref for RefTeX with inforef.
	(Requesting Formatted Text): the variable
	`enriched-fill-after-visiting' no longer exists.
	(Editing Format Info): Update names of menu items and commands.
	(Format Faces): Mention special effect of specifying the default face.
	Describe inheritance of text properties.
	Correct description of `fixed' face.
	(Format Indentation): Correct description of effect of setting
	margins.  Mention `set-left-margin' and `set-right-margin'.
	(Format Justification): Update names of menu items.
	`set-justification-full' is now bound to `M-j b'.
	Mention that `default-justification' is a per buffer variable.
	(Format Properties): Update name of menu item.
	(Forcing Enriched Mode): `format-decode-buffer' automatically
	turns on Enriched mode if the buffer is in text/enriched format.


2004-10-05  Emilio C. Lopes  <eclig@gmx.net>

	* calendar.texi (From Other Calendar): Add calendar-goto-iso-week.

2004-09-28  Kim F. Storm  <storm@cua.dk>

	* display.texi (Display Custom) <indicate-buffer-boundaries>:
	Align with new functionality.

2004-09-26  Jesper Harder  <harder@ifa.au.dk>

	* sieve.texi (Manage Sieve API): nil -> @code{nil}.
	* pgg.texi (User Commands, Backend methods): do.
	* gnus.texi: Markup fixes.
	(Setting Process Marks): Fix `M P a' entry.
	* emacs-mime: Fixes.

2004-09-23  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus-faq.texi ([5.12]): Fix code example for FQDN in Message-Ids
	again.
	Use 5.10 instead of 5.10.0.

2004-09-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>

	* gnus.texi (Summary Mail Commands): S D e.

2004-09-20  Raymond Scholz  <ray-2004@zonix.de>  (tiny change)

	* gnus.texi (Misc Article): Refer to `Summary Buffer Mode Line' in
	the gnus-article-mode-line-format section.

2004-09-20  Helmut Waitzmann  <Helmut.Waitzmann@web.de>  (tiny change)

	* gnus.texi (Various Summary Stuff): Fix the documentation for
	gnus-newsgroup-variables.

2004-09-20  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus.texi (MIME Commands): Added
	gnus-mime-display-multipart-as-mixed,
	gnus-mime-display-multipart-alternative-as-mixed,
	gnus-mime-display-multipart-related-as-mixed.
	(Mail Source Customization): Clarify `mail-source-directory'.
	(Splitting Mail): Mention gnus-group-find-new-groups.
	(SpamOracle): Fixed typo.

	* gnus-faq.texi: Untabify.
	([6.3]): nnir.el is in contrib directory.

	* message.texi (News Headers): Clarify how a unique ID is created.

	* gnus.texi (Batching Agents): Fixed typo in example.  Reported
	by Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp>.

2004-09-20  Andre Srinivasan  <andre@e2open.com>

	* gnus.texi (Group Parameters): Added more on hooks.  (Small
	change.)

2004-09-20  Florian Weimer  <fw@deneb.enyo.de>

	* gnus.texi (Charsets): Point to relevant section in emacs-mime.

2004-09-22  Luc Teirlinck  <teirllm@auburn.edu>

	* display.texi (Display Custom): Remove stray `@end defvar'.

2004-09-23  Kim F. Storm  <storm@cua.dk>

	* display.texi (Display Custom): Add `overflow-newline-into-fringe',
	`indicate-buffer-boundaries' and `default-indicate-buffer-boundaries'.

2004-09-22  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Vectors as Lists): Added a warning that the tutorial
	might be hidden during part of the session.

2004-09-20  Jay Belanger  <belanger@truman.edu>

	* calc.texi (Notations Used in This Manual): Put in an earlier
	mention that DEL could be called Backspace.

2004-09-20  Richard M. Stallman  <rms@gnu.org>

	* custom.texi (Hooks): Explain using setq to clear out a hook.
	(File Variables): Explain multiline string constants.
	(Non-ASCII Rebinding): Explain when you need to update
	non-ASCII char codes in .emacs.

	* building.texi (Compilation): Explain how to make a silent
	subprocess that won't be terminated.  Explain compilation-environment.

2004-09-13  Kim F. Storm  <storm@cua.dk>

	* mini.texi (Repetition): Rename isearch-resume-enabled to
	isearch-resume-in-command-history and change default to disabled.

2004-09-10  Simon Josefsson  <jas@extundo.com>

	* gnus.texi (IMAP): Add example.  Suggested and partially written
	by Steinar Bang <sb@dod.no>.

2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>

	* gnus.texi (IMAP): add comments about imaps synonym to imap in
	netrc syntax

2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>

	* gnus.texi (Spam ELisp Package Sequence of Events): some clarifications
	(Spam ELisp Package Global Variables)
	(Spam ELisp Package Global Variables): more clarifications

2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>

	* gnus.texi (Spam ELisp Package Filtering of Incoming Mail):
	mention spam-split does not modify incoming mail

2004-09-10  Teodor Zlatanov  <tzz@lifelogs.com>

	* gnus.texi (Spam ELisp Package Sequence of Events): fix typo

2004-09-10  Eli Zaretskii  <eliz@gnu.org>

	* Makefile.in (../info/gnus, gnus.dvi): Depend on gnus-faq.texi

2004-09-09  Kim F. Storm  <storm@cua.dk>

	* kmacro.texi (Save Keyboard Macro): Replace `name-last-kbd-macro'
	with new `kmacro-name-last-macro'.

2004-09-09  Reiner Steib  <Reiner.Steib@gmx.de>

	* makefile.w32-in (sieve, pgg): Use $(infodir).

2004-09-08  Juri Linkov  <juri@jurta.org>

	* mini.texi (Minibuffer History): Add `history-delete-duplicates'.

2004-09-08  Dhruva Krishnamurthy  <dhruva.krishnamurthy@gmail.com>  (tiny change)

	* makefile.w32-in: Fix PGG and Sieve entries.

2004-09-03  Juri Linkov  <juri@jurta.org>

	* search.texi (Incremental Search): Update wording for M-%.

2004-09-02  Luc Teirlinck  <teirllm@auburn.edu>

	* killing.texi (Killing): Correct description of kill commands in
	read-only buffer.

2004-09-02  Teodor Zlatanov  <tzz@lifelogs.com>

	* building.texi (Compilation Mode): Add a paragraph about rules
	for finding the compilation buffer for `next-error'.

	* search.texi (Other Repeating Search): Mention that Occur mode
	supports the next-error functionality.

2004-09-02  Juri Linkov  <juri@jurta.org>

	* search.texi (Regexp Replace): Add missing backslash to \footnote.

2004-08-31  Luc Teirlinck  <teirllm@auburn.edu>

	* kmacro.texi (Basic Keyboard Macro):
	`apply-macro-to-region-lines' now operates on all lines that begin
	in the region, rather than on all complete lines in the region.

2004-08-31  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Drag and drop): Add documentation about
	x-dnd-test-function and x-dnd-known-types.

2004-08-30  Luc Teirlinck  <teirllm@auburn.edu>

	* indent.texi: Various minor changes in addition to:
	(Indentation Commands): Correct description of `indent-relative'.
	(Tab Stops): <TAB> is no longer bound to `tab-to-tab-stop' in Text
	mode.  The *Tab Stops* buffer uses Overwrite Mode.
	(Just Spaces): `tabify' converts sequences of at least two spaces
	to tabs.

2004-08-28  Eli Zaretskii  <eliz@gnu.org>

	* faq.texi (Emacs for MS-DOS): Update URLs for the MS-DOS port of
	Emacs and related programs.

2004-08-27  Luc Teirlinck  <teirllm@auburn.edu>

	* frames.texi (Secondary Selection): Setting the secondary
	selection with M-Drag-Mouse-1 does not alter the kill ring,
	setting it with M-Mouse-1 and M-Mouse-3 does.
	(Mode Line Mouse): C-Mouse-2 on scroll bar now also works for
	toolkit scroll bars.
	(Scroll Bars): Ditto.

	* windows.texi (Basic Window): When using a window system, the value
	of point in a non-selected window is indicated by a hollow box.
	(Split Window): Side by side windows are separated by a scroll bar,
	if scroll bars are used.
	C-Mouse-2 on scroll bar now also works for toolkit scroll bars.
	(Change Window): Correct Mouse-2 vs Mouse-3 mess-up.
	(Window Convenience): Update bindings for `winner-undo' and
	`winner-redo'.

	* ack.texi (Acknowledgments): Use `@unnumbered'.
	* misc.texi : Adapt sectioning in Info to the node structure.
	(Invoking emacsclient): Make "Invoking emacsclient" a subsection
	of "Using Emacs as a Server".
	* building.texi (Building): Interchange nodes (for correct numbering).
	* programs.texi (Programs): Interchange nodes (for correct numbering).
	* killing.texi, entering.texi, commands.texi: Adapt sectioning in
	Info to the node structure.
	* emacs.texi: Make "GNU GENERAL PUBLIC LICENSE" an appendix.
	Rearrange order of nodes and sections such that both "GNU GENERAL
	PUBLIC LICENSE" and "GNU Free Documentation License" appear at the
	end, as appropriate for appendices.
	(Acknowledgments): Put inside @iftex instead of @ifnotinfo.
	Use `@unnumberedsec'.
	* trouble.texi: Adapt sectioning in Info to the node structure.
	Adapt node pointers to change in emacs.texi.
	* cmdargs.texi, doclicense.texi: Adapt node pointers.

2004-08-27  Richard M. Stallman  <rms@gnu.org>

	* faq.texi: Fix texinfo usage, esp. doublequotes.
	(Difference between Emacs and XEmacs): Some clarification.

	* faq.texi (Difference between Emacs and XEmacs):
	Explain not to contrast XEmacs with GNU Emacs.

2004-08-26  Richard M. Stallman  <rms@gnu.org>

	* faq.texi (Difference between Emacs and XEmacs): Rewrite.

2004-08-25  Kenichi Handa  <handa@m17n.org>

	* custom.texi (Non-ASCII Rebinding): Fix and simplify the
	description for unibyte mode.

2004-08-23  Luc Teirlinck  <teirllm@auburn.edu>

	* display.texi (Font Lock): Correct invalid (for hardcopy) @xref.

	* search.texi (Regexps): Correct cryptic (in hardcopy) @ref.
	(Configuring Scrolling): Correct invalid (for hardcopy) @xref.
	(Regexp Replace): Standardize reference to hardcopy Elisp Manual
	in @pxref.

2004-08-22  Luc Teirlinck  <teirllm@auburn.edu>

	* kmacro.texi (Keyboard Macro Counter, Keyboard Macro Step-Edit):
	Change section names.

2004-08-22  David Kastrup  <dak@gnu.org>

	* reftex.texi (AUCTeX): Update links, section name.

	* faq.texi (Calc): Update availability (included in 22.1).
	(AUCTeX): Update availability, information, versions, description.

2004-08-21  Luc Teirlinck  <teirllm@auburn.edu>

	* kmacro.texi (Keyboard Macro Ring): Rename section.
	Emacs treats the head of the macro ring as the `last keyboard macro'.
	(Keyboard Macro Counter): Minor change.
	(Save Keyboard Macro): Some clarifications.
	(Edit Keyboard Macro): Rename section.

	* buffers.texi (Buffers): Maximum buffer size is now 256M on
	32-bit machines.
	(Several Buffers): Clarify which buffer is selected if `2' is
	pressed in the Buffer Menu.
	Auto Revert mode can be used to update the Buffer Menu
	automatically.

2004-08-21  Eli Zaretskii  <eliz@gnu.org>

	* help.texi (Misc Help): Add an index entry for finding an Info
	manual by its file name.

2004-08-20  Luc Teirlinck  <teirllm@auburn.edu>

	* files.texi (Backup Deletion): Correct description of
	`delete-old-versions'.
	(Time Stamps): `time-stamp' needs to be added to `before-save-hook'.
	(Auto Save Files): Recommend `auto-save-mode' to reenable
	auto-saving, rather than the abbreviation `auto-save'.

2004-08-17  Luc Teirlinck  <teirllm@auburn.edu>

	* emacs.texi (Top): Mention "cutting" and "pasting" as synonyms
	for "killing" and "yanking" in main menu.

2004-08-16  Richard M. Stallman  <rms@gnu.org>

	* killing.texi (Yanking, Killing): Minor cleanups.

	* mark.texi (Momentary Mark): Minor cleanups.

2004-08-15  Kenichi Handa  <handa@etl.go.jp>

	* custom.texi (Non-ASCII Rebinding):
	C-q always inserts the right code to pass to global-set-key.

2004-08-14  Eli Zaretskii  <eliz@gnu.org>

	* Makefile.in (../info/tramp, tramp.dvi): Depend on trampver.texi.

2004-08-13  Luc Teirlinck  <teirllm@auburn.edu>

	* regs.texi (RegNumbers): Mention `C-x r i' binding for
	`insert-register', instead of `C-x r g' binding, for consistency.

2004-08-12  Luc Teirlinck  <teirllm@auburn.edu>

	* fixit.texi (Spelling): Fix typo.

2004-08-11  Luc Teirlinck  <teirllm@auburn.edu>

	* help.texi (Help): Fix Texinfo usage.

2004-08-11  Martin Stjernholm  <bug-cc-mode@gnu.org>

	* cc-mode.texi: Various updates for CC Mode 5.30.9.

2004-08-10  Michael Albinus  <michael.albinus@gmx.de>

	Sync with Tramp 2.0.44.

2004-08-05  Lars Hansen  <larsh@math.ku.dk>

	* widget.texi (User Interface): Update how to separate the
	editable field of an editable-field widget from other widgets.
	(Programming Example): Add text after field.

2004-07-24  Richard M. Stallman  <rms@gnu.org>

	* text.texi (Paragraphs): Update how paragraphs are separated
	and the default for paragraph-separate.

	* search.texi (Regexp Replace): Further update text for new
	replacement operators.

2004-08-31  Katsumi Yamaoka  <yamaoka@jpl.org>

	* emacs-mime.texi (Encoding Customization): Add a note to the
	mm-content-transfer-encoding-defaults entry.
	(rfc2047): Update.

	* gnus.texi (Article Highlighting): Add
	gnus-cite-ignore-quoted-from.
	(POP before SMTP): New node.
	(Posting Styles): Addition.
	(Splitting Mail): Add nnmail-split-lowercase-expanded.
	(Fancy Mail Splitting): Ditto.
	(X-Face): Add gnus-x-face.

2004-08-30  Reiner Steib  <Reiner.Steib@gmx.de>

	* emacs-mime.texi, gnus-faq.texi, gnus.texi, message.texi,
	pgg.texi, sieve.texi: Use @copying and @insertcopying.

2004-08-22  Reiner Steib  <Reiner.Steib@gmx.de>

	* gnus.texi (Mail Source Specifiers): Describe
	`pop3-leave-mail-on-server'.

2004-08-02  Reiner Steib  <Reiner.Steib@gmx.de>

	* Makefile.in, makefile.w32-in: Added PGG and Sieve files.

	* pgg.texi, sieve.texi: Import from the v5_10 branch of the Gnus
	repository.  Change setfilename.

	* emacs-mime.texi, gnus-faq.texi, gnus.texi, message.texi: Ditto.

2004-07-18  Luc Teirlinck  <teirllm@auburn.edu>

	* emacs-xtra.texi (Subdir switches): Dired does not remember the
	`R' switch.

	* dired.texi (Dired Updating): `k' only deletes inserted
	subdirectories from the Dired buffer if a prefix argument was given.

	* search.texi (Regexps): Delete redundant definition of `symbol' in
	description of `\_>'.  It already occurs in the description of `\_<'.

2004-07-02  Juri Linkov  <juri@jurta.org>

	* pcl-cvs.texi (Viewing differences): Add `d r'.

2004-07-01  Juri Linkov  <juri@jurta.org>

	* search.texi (Incremental Search): Add C-M-w, C-M-y, M-%, C-M-%, M-e.
	(Regexp Search): Add M-r.

2004-06-30  Luc Teirlinck  <teirllm@auburn.edu>

	* makefile.w32-in (EMACSSOURCES): Remove emacs-xtra.

2004-06-29  Jesper Harder  <harder@ifa.au.dk>

	* ses.texi, viper.texi, search.texi, flymake.texi, faq.texi:
	* eshell.texi, ediff.texi, calendar.texi: Markup fixes.

2004-06-25  Richard M. Stallman  <rms@gnu.org>

	* search.texi (Regexp Replace): Rewrite description of \# \, and \?.

2004-06-25  David Kastrup  <dak@gnu.org>

	* search.texi (Regexp Replace): Some typo corrections and
	rearrangement.

2004-06-24  David Kastrup  <dak@gnu.org>

	* search.texi (Unconditional Replace): Use replace-string instead
	of query-replace in example.
	(Regexp Replace): Add explanations for `\,', `\#' and `\?'
	sequences.
	(Query Replace): Correct explanation of `^' which does not use
	the mark stack.

2004-06-21  Nick Roberts  <nickrob@gnu.org>

	* misc.texi (Shell History Copying): Document comint-insert-input.
	(Shell Ring): Describe comint-dynamic-list-input-ring here.

2004-06-21  Karl Berry  <karl@gnu.org>

	* info.texi (Top): mention that only Emacs has mouse support.
	(Getting Started): mention this in a few other places.

2004-06-20  Jesper Harder  <harder@ifa.au.dk>

	* msdog.texi (Text and Binary, MS-DOS Printing): Use m-dash.
	* custom.texi (Customization): do.
	* anti.texi (Antinews): do.
	* abbrevs.texi (Defining Abbrevs): do.

	* programs.texi (Info Lookup): Fix keybinding for
	info-lookup-symbol.

2004-06-16  Juanma Barranquero  <lektu@terra.es>

	* makefile.w32-in (INFO_TARGETS, DVI_TARGETS, EMACSSOURCES):
	Add emacs-xtra.
	($(infodir)/emacs-xtra, emacs-xtra.dvi): New dependencies.
	(clean): Add emacs-xtra and flymake.  Remove redundancies.

2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>

	* Makefile.in (INFO_TARGETS, DVI_TARGETS, ../info/emacs-xtra):
	Add emacs-xtra.
	* emacs-xtra.texi: New file.

2004-06-14  Luc Teirlinck  <teirllm@auburn.edu>

	* dired.texi (Dired Enter): Mention conditions on `ls' switches.
	(Dired and Find): Mention differences with ordinary Dired buffers.

2004-06-13  Luc Teirlinck  <teirllm@auburn.edu>

	* autotype.texi (Copyrights, Timestamps): Recommend
	`before-save-hook' instead of `write-file-functions'.

2004-06-13  Richard M. Stallman  <rms@gnu.org>

	* custom.texi (Init Syntax): Explain about vars that do special
	things when set with setq or with Custom.
	(Init Examples): Add line-number-mode example.

2004-06-13  Lars Hansen  <larsh@math.ku.dk>

	* dired-x.texi (dired-mark-omitted): Update keybinding.

2004-06-12  Juri Linkov  <juri@jurta.org>

	* dired.texi (Operating on Files): Add dired-do-touch.

2004-06-10  Kim F. Storm  <storm@cua.dk>

	* pcl-cvs.texi (Viewing differences): Add 'd y'.

2004-06-10  Juri Linkov  <juri@jurta.org>

	* building.texi (Lisp Eval): Add C-M-x on defface.

2004-06-08  Luc Teirlinck  <teirllm@auburn.edu>

	* files.texi (Reverting): Auto-Revert mode and
	Global Auto-Revert mode no longer revert remote files.

2004-06-05  Lars Hansen  <larsh@math.ku.dk>

	* dired-x.texi (variable dired-omit-mode): Rename from
	dired-omit-files-p.
	(function dired-omit-mode): Rename from dired-omit-toggle.
	Call dired-omit-mode rather than set dired-omit-files-p.
	(dired-mark-omitted): Describe command.

2004-05-29  Michael Albinus  <michael.albinus@gmx.de>

	Version 2.0.41 of Tramp released.

2004-05-29  Juanma Barranquero  <lektu@terra.es>

	* makefile.w32-in (../info/flymake, flymake.dvi): New targets.
	(INFO_TARGETS, DVI_TARGETS): Add Flymake.

2004-05-29  Richard M. Stallman  <rms@gnu.org>

	* custom.texi (Init File): Two dashes start --no-site-file.

	* cl.texi (Top): Call this chapter `Introduction'.
	(Overview): In TeX, no section heading here.

	* cc-mode.texi: Put commas after i.e. and e.g.  Minor cleanups.

2004-05-29  Alan Mackenzie  <acm@muc.de>

	* programs.texi: Update for CC Mode 5.30 and incidental amendments.
	("AWK"): Is consistently thus spelt throughout.
	(AWK, Pike): Document as "C-like modes".
	(@kbd{M-j}): Document as alternative to @kbd{C-M-j}.
	(M-x man): Supersedes M-x manual-entry.
	Add numerous index entries.  Correct "ESC a/e" to "M-a/e".

	("Comments in C"): Delete node; the info is in CC Mode manual.
	(c-comment-only-line-offset): Remove description.

	(C-c ., C-c C-c): Describe new C Mode bindings.

	(C-u TAB, indent-code-rigidly, c-indent-exp, c-tab-always-indent)
	(@dfn{Style}, c-default-style, comment-column, comment-padding)
	(c-up-conditional, c-beginning-of-statement, c-end-of-statement):
	Amend definitions.

	(c-beginning-of-defun, c-end-of-defun, c-context-line-break):
	Describe functions.

	(c-comment-start-regexp, c-hanging-comment-ender-p)
	(c-hanging-comment-starter-p): Remove obsolete definitions.

	* emacs.texi: Remove the menu entry "Comments in C".

2004-05-29  Eli Zaretskii  <eliz@gnu.org>

	* Makefile.in (../info/flymake, flymake.dvi): New targets.
	(INFO_TARGETS, DVI_TARGETS): Add Flymake.

2004-05-29  Pavel Kobiakov  <pk_at_work@yahoo.com>

	* flymake.texi: New file.

2004-05-28  Simon Josefsson  <jas@extundo.com>

	* smtpmail.texi (Authentication): Improve STARTTLS discussion.

2004-05-27  Luc Teirlinck  <teirllm@auburn.edu>

	* dired.texi (Dired and Find): `find-ls-option' does not apply to
	`M-x locate'.

2004-05-16  Karl Berry  <karl@gnu.org>

	* emacs.texi (ack.texi) [@ifnottex]: Change condition; with @ifinfo,
	makeinfo --html fails.
	* help.texi (Help Summary) [@ifnottex]: Likewise.

2004-05-13  Nick Roberts  <nickrob@gnu.org>

	* building.texi (GDB Graphical Interface): Update and describe
	layout first.

2004-05-07  Kai Grossjohann  <kai@emptydomain.de>

	Version 2.0.40 of Tramp released.

2004-04-25  Michael Albinus  <Michael.Albinus@alcatel.de>

	Complete rework, based on review by Karl Berry <karl@gnu.org>.

	* tramp.texi (Auto-save and Backup): Explain exploitation of new
	variables `tramp-backup-directory-alist' and
	`tramp-bkup-backup-directory-info'.
	(Overview, Connection types)
	(External transfer methods, Default Method)
	(Windows setup hints): Remove restriction of password entering
	with external methods.
	(Auto-save and Backup): Make file name example
	(X)Emacs neutral. In case of XEmacs, `bkup-backup-directory-info'
	and `auto-save-directory' must be used.
	(Frequently Asked Questions): Use "MS Windows NT/2000/XP" (not
	only "NT").  Remove doubled entry "What kinds of systems does
	@tramp{} work on".
	(tramp): Macro removed.
	(Obtaining Tramp): Flag removed from title.
	(all): "tramp-" and "-" removed from flag names.  Flags `tramp'
	and `trampver' used properly.  Flag `tramp-inst' replaced by
	`installchapter'.  Installation related text adapted.

2004-05-04  Jason Rumney  <jasonr@gnu.org>

	* makefile.w32-in: Revert last change.

2004-05-03  Jason Rumney  <jasonr@gnu.org>

	* makefile.w32-in (MULTI_INSTALL_INFO, ENVADD): Use forward slashes.

2004-04-28  Masatake YAMATO  <jet@gyve.org>

	* widget.texi (Programming Example): Remove overlays.

2004-04-27  Jesper Harder  <harder@ifa.au.dk>

	* faq.texi, viper.texi, dired-x.texi, autotype.texi: lisp -> Lisp.

2004-04-23  Juanma Barranquero  <lektu@terra.es>

	* makefile.w32-in: Add "-*- makefile -*-" mode tag.

2004-04-18  Juri Linkov  <juri@jurta.org>

	* fixit.texi (Spelling): Remove file extension from ispell xref.

2004-04-15  Kim F. Storm  <storm@cua.dk>

	* cmdargs.texi (Initial Options): Add -Q.

2004-04-05  Kim F. Storm  <storm@cua.dk>

	* custom.texi (File Variables): Add safe-local-eval-forms.

2004-04-05  Jesper Harder  <harder@ifa.au.dk>

	* info.texi (Info Search): Add info-apropos.

2004-04-02  Luc Teirlinck  <teirllm@auburn.edu>

	* files.texi (Reverting): Correct description of revert-buffer's
	handling of point.

2004-03-22  Juri Linkov  <juri@jurta.org>

	* emacs.texi (Top): Add `Misc X'.

	* faq.texi, trouble.texi: Fix help key bindings.

	* glossary.texi: Improve references.

	* help.texi: Sync keywords with finder.el.

	* mini.texi (Completion): Add description for menu items.

	* misc.texi (Browse-URL, FFAP): Add information about keywords.

	* sending.texi (Mail Methods): Fix xref to Message manual.

2004-03-17  Luc Teirlinck  <teirllm@auburn.edu>

	* info.texi (Advanced): Replace @unnumberedsubsec by @subheading
	(as suggested by Karl Berry).  Update information about colored
	stars in menus.  Add new subheading describing M-n.

2004-03-12  Richard M. Stallman  <rms@gnu.org>

	* cl.texi (Top): Rename top node's title.

	* buffers.texi (Misc Buffer): Add index entry for rename-uniquely.

2004-03-08  Karl Berry  <karl@gnu.org>

	* info.texi: \input texinfo.tex instead of just texinfo, to avoid
	problems making the texinfo distribution.

2004-03-04  Richard M. Stallman  <rms@gnu.org>

	* search.texi (Regexps): Explain that ^ and $ have their
	special meanings only in certain contexts.

	* programs.texi (Expressions): Doc C-M-SPC as alias for C-M-@.

	* mule.texi (Specify Coding): Doc C-x RET F.

	* buffers.texi (Misc Buffer): Explain use of M-x rename-uniquely
	for multiple compile and grep buffers.
	(Indirect Buffers): Don't recommand clone-indirect-buffer
	for multiple compile and grep buffers.

2004-02-29  Simon Josefsson  <jas@extundo.com>

	* smtpmail.texi (Authentication): Changed the list of supported
	authentication mechanisms from CRAM-MD5, PLAIN and LOGIN-MD5 to
	CRAM-MD5 and LOGIN, tiny patch from Andreas Voegele
	<voegelas@gmx.net>.

2004-02-29  Juanma Barranquero  <lektu@terra.es>

	* makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
	$(DEL) instead of rm, and ignore exit code.

2004-02-29  Kai Grossjohann  <kgrossjo@eu.uu.net>

	Tramp version 2.0.39 released.

2004-02-29  Michael Albinus  <Michael.Albinus@alcatel.de>

	* tramp.texi (Customizing Completion): Explain new functions
	`tramp-parse-shostkeys' and `tramp-parse-sknownhosts'.
	(all): Savannah URLs unified to "http://savannah.nongnu.org".
	(Top): Refer to Savannah mailing list as the major one.  Mention
	older mailing lists in HTML mode only.
	(Auto-save and Backup): Add auto-save.  Based on wording of Kai.
	(Frequently Asked Questions): Remote hosts must not be Unix-like
	for "smb" method.
	(Password caching): New node.
	(External transfer methods): Refer to password caching for "smb"
	method.

2004-02-23  Nick Roberts  <nick@nick.uklinux.net>

	* building.texi (Watch Expressions): Update.

2004-02-21  Juri Linkov  <juri@jurta.org>

	* cmdargs.texi (Action Arguments): Add alias --find-file.  Add
	--directory, --help, --version.  Move text about command-line-args
	to Command Arguments.
	(Initial Options): Add @cindex for --script.  Fix @cindex for -q.
	Add --no-desktop.  Add alias --no-multibyte, --no-unibyte.
	(Window Size X): Join -g and --geometry.  Add @cindex.
	(Borders X): Fix @cindex for -ib.  Add @cindex for -bw.
	(Title X): Remove alias -title.
	(Misc X): New node.

2004-02-17  Karl Berry  <karl@gnu.org>

	* info.texi (Help-Int): mention the new line number feature.

2004-02-15  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Drag and drop): Add Motif to list of supported
	protocols.

2004-02-14  Jonathan Yavner  <jyavner@member.fsf.org>

	* ses.texi (Advanced Features): New functionality for
	ses-set-header-row (defaults to current row unless C-u used).
	(Acknowledgements): Add Stefan Monnier.

2004-02-03  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Drag and drop): New section.

2004-01-24  Richard M. Stallman  <rms@gnu.org>

	* emacs.texi (Acknowledgments): Renamed from Acknowledgements.
	Include it only @ifnotinfo.  Patch the preceding and following
	node headers to point to each other.

2004-01-11  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* calendar.texi (Appointments): Update section.

2003-12-29  Kevin Ryde  <user42@zip.com.au>

	* viper.texi (Vi Macros): Fix reference to the Emacs manual.

	* programs.texi (C Modes): Fix the xref.

2003-12-23  Nick Roberts  <nick@nick.uklinux.net>

	* building.texi (Watch Expressions): Update.
	(Commands of GUD): Include use of toolbar + breakpoints set from
	fringe/margin.

2003-12-03  Andre Spiegel  <spiegel@gnu.org>

	* files.texi: Say how to disable VC.  Suggested by Alan Mackenzie
	<acm@muc.de>.

2003-11-30  Kai Grossjohann  <kai.grossjohann@gmx.net>

	Tramp version 2.0.38 released.

	* tramp.texi (Remote shell setup): Warn of environment variables
	FRUMPLE if user frumple exists.  Suggested by Sven Gabriel
	<sven.gabriel@imk.fzk.de>.
	(Configuration): Tramp now chooses base64/uuencode
	automatically.  Update wording accordingly.
	(Top): More description for the `Default Method' menu entry.
	(Default Method): Use @code, not @var, for Lisp variables.
	(Default Method): New subsection `Which method is the right one
	for me?'  Suggested by Christian Kirsch.
	(Configuration): Pointer to new subsection added.
	(Default Method): Too many "use" in one sentence.
	Rephrase.  Reported by Christian Kirsch.
	(Filename Syntax): Old `su' example is probably a left-over from
	the sm/su method naming.  Replace with `ssh', instead.
	(External transfer methods, Auto-save and Backup):
	Typo fixes.

2003-11-02  Michael Albinus  <Michael.Albinus@alcatel.de>

	* tramp.texi (all): Harmonize all occurences of @tramp{}.
	(Top): Mention japanese manual only if flag `jamanual' is set.
	Insert section `Japanese manual' in menu.

2003-11-29  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* frames.texi (Dialog Boxes): Add use-file-dialog.

2003-11-26  Thien-Thi Nguyen  <ttn@gnu.org>

	* eshell.texi (Known Problems): Add doc item.

2003-11-22  Martin Stjernholm  <bug-cc-mode@gnu.org>

	* ack.texi: Note that Alan Mackenzie contributed the AWK support
	in CC Mode.

2003-11-22  Martin Stjernholm  <bug-cc-mode@gnu.org>

	* cc-mode.texi: Update for CC Mode 5.30.

	Note: Please refrain from doing purely cosmetic changes like
	removing trailing whitespace in this manual; it clobbers cvs
	merging for no good reason.

2003-11-02  Jesper Harder  <harder@ifa.au.dk>  (tiny change)

	* man/ack.texi, man/basic.texi, man/cmdargs.texi:
	* man/commands.texi, man/custom.texi, man/display.texi:
	* man/ediff.texi, man/emacs.texi, man/faq.texi, man/files.texi:
	* man/frames.texi, man/glossary.texi, man/killing.texi:
	* man/macos.texi, man/mark.texi, man/misc.texi, man/msdog.texi:
	* man/mule.texi, man/rmail.texi, man/search.texi:
	* man/sending.texi, man/text.texi, man/tramp.texi:
	* man/trouble.texi, man/vip.texi, man/viper.texi, man/widget.texi:
	* man/woman.texi: Replace @sc{ascii} and ASCII with @acronym{ASCII}.

2003-11-01  Alan Mackenzie  <acm@muc.de>

	* search.texi (Scrolling During Incremental Search): Document a
	new scrolling facility in isearch mode.

2003-10-26  Karl Berry  <karl@gnu.org>

	* info.texi (Info Search): echo area, not echo are.  From Debian
	diff.

2003-10-26  Per Abrahamsen  <abraham@dina.kvl.dk>

	* widget.texi (Defining New Widgets): Document new beavior of
	:buttons and :children keywords.

2003-10-22  Miles Bader  <miles@gnu.org>

	* Makefile.in (info): Move before $(top_srcdir)/info.

2003-10-22  Nick Roberts  <nick@nick.uklinux.net>

	* building.texi (Watch Expressions): Update section on data display
	to reflect code changes (GDB Graphical Interface).

2003-10-17  Thien-Thi Nguyen  <ttn@gnu.org>

	* tramp.texi (Inline methods): Small grammar fix.
	(External transfer methods): Likewise.

2003-10-13  Richard M. Stallman  <rms@gnu.org>

	* xresources.texi (GTK resources): Clean up previous change.

2003-10-12  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* xresources.texi (GTK resources): Add a note that some themes
	disallow customizations.  Add scroll theme example.

2003-10-08  Nick Roberts  <nick@nick.uklinux.net>

	* speedbar.texi: Remove paragraph for GUD that is no longer true.

2003-10-06  Luc Teirlinck  <teirllm@auburn.edu>

	* texinfo.tex:  Replace `%' in arch tagline by @ignore.

2003-09-30  Richard M. Stallman  <rms@gnu.org>

	* dired-x.texi (Miscellaneous Commands): Delete M-g, w, T.

	* widget.texi (User Interface): Fix typos.

	* pcl-cvs.texi, cl.texi, woman.texi, ediff.texi: Fix @strong{Note:}.

	* cmdargs.texi (General Variables): Remove MAILRC envvar.

	* misc.texi (Saving Emacs Sessions): Shorten the section,
	collapsing back into one node.

2003-09-30  Lars Hansen  <larsh@math.ku.dk>

	* misc.texi: Section "Saving Emacs Sessions" rewritten.

2003-09-29  Jan Dj,Ad(Brv.  <jan.h.d@swipnet.se>

	* xresources.texi (GTK names in Emacs): Correct typo.

2003-09-29  Thien-Thi Nguyen  <ttn@gnu.org>

	* pcl-cvs.texi (Selected Files): Fix typo.

2003-09-24  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* cmdargs.texi (Font X): Mention new default font.  More
	fully describe long font names, wildcard patterns and the
	problems involved.  (Result of discussion on emacs-devel.)

2003-09-22  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* emacs.texi (Acknowledgements): Correct typo.

2003-09-22  Richard M. Stallman  <rms@gnu.org>

	* dired.texi (Misc Dired Commands): New node.
	(Dired Navigation): Add dired-goto-file.

	* files.texi (File Aliases, Misc File Ops): Add @cindex entries.

	* emacs.texi (Acknowledgements): New node, split from Distribution.

	* cmdargs.texi (Action Arguments): -f reads interactive args.

2003-09-21  Karl Berry  <karl@gnu.org>

	* info.texi (] and [ commands): No period at end of section title.

2003-09-08  Lute Kamstra  <lute@gnu.org>

	* screen.texi (Mode Line): Say that POS comes before LINE.
	Mention `size-indication-mode'.
	* display.texi (Optional Mode Line): Document
	`size-indication-mode'.
	* basic.texi (Position Info): Mention `size-indication-mode'.

2003-09-07  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* xresources.texi (Resources): Refer to `editres' man page.
	(Lucid Resources): Update defaults.  Expand description of
	`shadowThickness'.

2003-09-04  Miles Bader  <miles@gnu.org>

	* Makefile.in (top_srcdir): New variable.
	($(top_srcdir)/info): New rule.
	(info): Depend on it.

2003-09-03  Peter Runestig  <peter@runestig.com>

	* makefile.w32-in: New file.

2003-08-29  Richard M. Stallman  <rms@gnu.org>

	* misc.texi (Saving Emacs Sessions): Correct previous change.

2003-08-26  Per Abrahamsen  <abraham@dina.kvl.dk>

	* widget.texi (User Interface): Explain the need of static text
	around an editable field.

2003-08-19  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* widget.texi (Basic Types): The argument to `:help-echo' can now
	be a form that evaluates to a string.

	* emacs.texi (Top): Update menu to reflect new Keyboard Macros
	chapter.
	(Intro): Include kmacro.texi after fixit.texi instead of after
	custom.texi. (As suggested by Kim Storm.)

2003-08-18  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* fixit.texi (Fixit): Update `Next' pointer.
	* files.texi (Files): Update `Previous' pointer.
	* kmacro.texi (Keyboard Macros): Remove redundant node and
	section.
	* emacs.texi (Intro): Include kmacro.texi after custom.texi.
	(Suggested by Kim Storm.)
	* Makefile (EMACSSOURCES): Add kmacro.texi.  (Suggested by Kim
	Storm.)

2003-08-18  Kim F. Storm  <storm@cua.dk>

	* kmacro.texi: New file describing enhanced keyboard macro
	functionality.  Replaces old description in custom.texi.

	* custom.texi (Customization): Add xref to Keyboard Macros chapter.
	(Keyboard Macros): Move to new kmacro.texi file.

	* emacs.texi (Keyboard Macros): Reference new keyboard macro topics.

	* calc.texi (Queries in Macros): Update xref to keyboard macro query.

2003-08-17  Edward M. Reingold  <reingold@emr.cs.iit.edu>

	* calendar.texi (Specified Dates): Add `calendar-goto-day-of-year'.

2003-08-17  Alex Schroeder  <alex@gnu.org>

	* misc.texi (Saving Emacs Sessions): Manual M-x desktop-save not
	required.

2003-08-16  Richard M. Stallman  <rms@gnu.org>

	* dired-x.texi (Shell Command Guessing): Explain *.

2003-08-16  Chunyu Wang  <spr@db.cs.hit.edu.cn>  (tiny change)

	* pcl-cvs.texi (Log Edit Mode): Fix key binding for
	log-edit-insert-changelog.

2003-08-05  Richard M. Stallman  <rms@gnu.org>

	* programs.texi (Lisp Indent): Don't describe
	lisp-indent-function property here.  Use xref to Lisp Manual.

2003-08-03  Karl Berry  <karl@gnu.org>

	* info.texi: Need @contents.

2003-08-03  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* calendar.texi (Date Formats): Document changed behaviour of
	abbreviations.

2003-07-24  Markus Rost  <rost@math.ohio-state.edu>

	* buffers.texi (List Buffers): Fix previous change.

2003-07-20  Kai Gro,A_(Bjohann  <kai.grossjohann@gmx.net>

	Tramp version 2.0.36 released.

	* tramp.texi (Remote shell setup): Explain about problems with
	non-Bourne commands in ~/.profile and ~/.shrc.

2003-07-13  Markus Rost  <rost@math.ohio-state.edu>

	* buffers.texi (List Buffers): Adjust to new format of *Buffer
	List*.

2003-07-07  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* info.texi (Help-Inv, Help-M, Help-Xref): Update following
	renaming of `vis-mode' to `visible-mode'.

	* display.texi (Font Lock): Fix typo.

2003-07-07  Richard M. Stallman  <rms@gnu.org>

	* display.texi (Font Lock): Add xref for format info on
	font-lock-remove-keywords.

	* building.texi (Compilation): Document what happens with asynch
	children of compiler process.

	* help.texi (Library Keywords): Use @multitable.

2003-07-04  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* info.texi (Top, Help-Small-Screen): Remove accidentally added
	next, prev and up pointers.

2003-07-02  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* info.texi (Help): Mention existence of Emacs and stand-alone
	Info at the very beginning of the tutorial.
	(Help-Inv): New node.
	(Help-]): New node.
	(Help-M): Systematically point out the differences between default
	Emacs and stand-alone versions.  Delete second menu.
	(Help-Xref): Systematically point out the differences between
	default Emacs and stand-alone versions.
	(Help-Int): Change `l' example.
	(Expert Info): Fix typos.
	(Emacs Info Variables): Mention `Info-hide-note-references' and
	new default for `Info-scroll-prefer-subnodes'.

2003-06-17  Kai Gro,A_(Bjohann  <kai.grossjohann@gmx.net>

	Version 2.0.35 of Tramp released.

	* tramp.texi: From Michael Albinus <Michael.Albinus@alcatel.de>:
	(Inline methods): Add methods `remsh' and `plink1'.
	(External transfer methods): Add method `remcp'.
	(Multi-hop Methods): Add method `remsh'.
	Small patch from Adrian Aichner <adrian@xemacs.org>:
	Fix minor typos.
	(Concept Index): Added to make manual searchable via
	`Info-index'.
	(Version Control): Add cindex entry.

2003-06-04  Richard M. Stallman  <rms@gnu.org>

	* programs.texi (Expressions): Delete C-M-DEL.

	* misc.texi (Shell Options): Clarify comint-scroll-show-maximum-output.
	comint-move-point-for-output renamed from
	comint-scroll-to-bottom-on-output.

	* custom.texi (Init Rebinding): Replace previous change with xref.
	(Non-ASCII Rebinding): Explain that issue more briefly here.

2003-05-28  Richard M. Stallman  <rms@gnu.org>

	* indent.texi (Indentation): Condense, simplify, clarify prev change.

2003-05-28  Nick Roberts  <nick@nick.uklinux.net>

	* building.texi (GDB Graphical Interface): New node.
	(Rewritten somewhat by RMS.)

2003-05-28  Kai Gro,A_(Bjohann  <kai.grossjohann@gmx.net>

	* custom.texi (Init Rebinding): Xref Non-ASCII Rebinding, for
	non-English letters.  Explain how to set coding systems correctly
	and how to include the right coding cookie in the file.

2003-05-24  Kai Gro,A_(Bjohann  <kai.grossjohann@gmx.net>

	* trampver.texi: Version 2.0.34 released.

2003-05-22  Kai Gro,A_(Bjohann  <kai.grossjohann@gmx.net>

	* indent.texi (Indentation): Explain the concepts.
	(Just Spaces): Explain why preventing tabs for indentation might
	be useful.

2003-05-03  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* faq.texi: Improve previous changes.

2003-05-02  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* faq.texi: Update copyright and maintenance details.
	Update some package URLs, versions, and maintainers.
	Remove many references to the Emacs Lisp Archive.

2003-04-23  Simon Josefsson  <jas@extundo.com>

	* smtpmail.texi: Fix license (the invariant sections mentioned has
	never been part of the smtp manual).  Align info dir entry with
	other emacs packages.

2003-04-16  Richard M. Stallman  <rms@gnu.org>

	* search.texi (Regexps): Ref to Lisp manual for more regexp features.

2003-04-08  Michael Albinus  <Michael.Albinus@alcatel.de>

	* tramp.texi: Version 2.0.33 released.
	Remove installation chapter.  Remove XEmacs specifics.

2003-03-29  Richard M. Stallman  <rms@gnu.org>

	* tramp.texi (Top): Undo the previous renaming.
	(emacs-other-name, emacs-other-dir, emacs-other-file-name): Delete.

2003-03-29  Kai Gro,A_(Bjohann  <kai.grossjohann@gmx.net>

	* Makefile.in (../info/tramp): Compile Emacs, instead of XEmacs,
	version of manual.

	* tramp.texi (Auto-save and Backup): New node.

2003-03-29  Michael Albinus  <Michael.Albinus@alcatel.de>

	* tramp.texi (Top): Include trampver.texi.  Rename "Emacs" to "GNU
	Emacs" in order to have better differentiation to "XEmacs".
	`emacs-other-name', `emacs-other-dir' and `emacs-other-file-name'
	are new macros in order to point to the other Emacs flavor where
	appropriate.  In info case, point to node `Installation' in order
	to explain how to generate the other way.  In html case, make a
	link to the other html file.
	(Obtaining TRAMP): Added a paragraph saying to perform `autoconf'
	after CVS checkout/update.
	(Installation): Completely rewritten.
	(Installation parameters, Load paths): New sections under
	`Installation'.

2003-02-28  Kai Gro,A_(Bjohann  <kai.grossjohann@uni-duisburg.de>

	* tramp.texi: Version 2.0.30 released.
	Replace word "path" with "localname" where used as a component of
	a Tramp file name.

2003-02-28  Michael Albinus  <Michael.Albinus@alcatel.de>

	* tramp.texi (Frequently Asked Questions): `tramp-chunksize'
	introduced.
	(Installation): Explain what to do if files from the tramp/contrib
	directory are needed.

2003-02-23  Alex Schroeder  <alex@emacswiki.org>

	* smtpmail.texi (How Mail Works): New.

2003-02-22  Alex Schroeder  <alex@emacswiki.org>

	* cmdargs.texi (General Variables): Document SMTPSERVER.

	* smtpmail.texi: New file.

	* sending.texi: Remove SMTP node.
	(Mail Sending): Describe `send-mail-function'.  Link to SMTP
	library.

	* Makefile.in: Build SMTP manual.

2003-02-22  Alex Schroeder  <alex@emacswiki.org>

	* sending.texi (Sending via SMTP): Explain MTA/MUA.

2003-02-22  Simon Josefsson  <jas@extundo.com>

	* sending.texi (Mail Methods): Add node about SMTP.

2003-02-17  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* xresources.texi (GTK names in Emacs): Add emacs-toolbar - GtkToolbar

2003-02-05  Kai Gro,A_(Bjohann  <kai.grossjohann@uni-duisburg.de>

	* tramp.texi: Version 2.0.29 released.
	(Installation): In Emacs, use M-x texinfo-format-buffer RET, not
	M-x makeinfo-buffer RET.  Reported by gebser@ameritech.net.

2003-02-01  Michael Albinus  <Michael.Albinus@alcatel.de>

	* tramp.texi (Frequently Asked Questions): Explain a workaround if
	another package loads accidently Ange-FTP.

2003-01-24  Michael Albinus  <Michael.Albinus@alcatel.de>

	* tramp.texi (Customizing Completion): Add function
	`tramp-parse-sconfig'.  Change example of
	`tramp-set-completion-function', because parsing of ssh config
	files looks more natural.

2003-02-01  Kevin Ryde  <user42@zip.com.au>

        * glossary.texi (Glossary): Correction to cl cross reference.

2003-01-20  Richard M. Stallman  <rms@gnu.org>

	* killing.texi (Rectangles): Document C-x c r.

2003-01-19  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* xresources.texi (GTK resources): New node.
	(GTK widget names): New node.
	(GTK names in Emacs): New node.
	(GTK styles): New node.

2003-01-15  ShengHuo ZHU  <zsh@cs.rochester.edu>

	* gnus.texi: Do not use `path' in several locations.

2003-01-09  Francesco Potort,Al(B  <pot@gnu.org>

	* maintaining.texi (Create Tags Table): Add reference to the new
	`etags --help --lang=LANG' option.

2002-12-26  Kai Gro,A_(Bjohann  <kai.grossjohann@uni-duisburg.de>

	* tramp.texi (External transfer methods): New method `smb'.  From
	Michael Albinus.

2002-11-05  Karl Berry  <karl@gnu.org>

	* info.texi (Info-fontify): Reorder face list to avoid bad line
	breaks.

2002-10-06  Kai Gro,A_(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>

	* tramp.texi: Move @copying to standard place.  Use
	@insertcopying.

2002-10-02  Karl Berry  <karl@gnu.org>

	* (ada-mode.texi autotype.texi calc.texi cc-mode.texi cl.texi
	dired-x.texi ebrowse.texi ediff.texi emacs-mime.texi emacs.texi
	eshell.texi eudc.texi faq.texi forms.texi idlwave.texi info.texi
	message.texi mh-e.texi pcl-cvs.texi reftex.texi sc.texi ses.texi
	speedbar.texi vip.texi viper.texi widget.texi woman.texi):
	Per rms, update all manuals to use @copying instead of @ifinfo.
	Also use @ifnottex instead of @ifinfo around the top node, where
	needed for the sake of the HTML output.
	(The Gnus manual is not fixed since it's not clear to me how it
	 works; and the Tramp manual already uses @copying, although in an
	 unusual way.  All others were changed.)

2002-09-10  Jonathan Yavner  <jyavner@engineer.com>

	* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add SES.
	(../info/ses, ses.dvi): New targets.
	* ses.texi: New file.

2002-09-06  Pavel Jan,Bm(Bk  <Pavel@Janik.cz>

	* texinfo.tex: Update to texinfo 4.2.

2002-08-27  Carsten Dominik  <dominik@sand.science.uva.nl>

	* reftex.texi: Update to RefTeX 4.19.

2002-06-17  Kai Gro,b_(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>

	* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add Tramp.
	(../info/tramp, tramp.dvi): New targets.

2002-01-04  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (DVI_TARGETS): Add calc.dvi.
	(calc.dvi): Uncomment.

2001-12-20  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (EMACSSOURCES): Update the list of Emacs manual
	source files.

2001-11-16  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (emacsman): New target.

2001-11-07  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (INFO_TARGETS): Add ../info/calc.
	(../info/calc): New target.

2001-10-20  Gerd Moellmann  <gerd@gnu.org>

	* (Version 21.1 released.)

2001-10-05  Gerd Moellmann  <gerd@gnu.org>

	* Branch for 21.1.

2001-04-14  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (../info/info): Use an explicit -o switch to
	makeinfo.

2001-03-05  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in (mostlyclean, maintainer-clean): Delete more files.

2000-12-20  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (../info/idlwave): Use --no-split.

2000-12-14  Dave Love  <fx@gnu.org>

	* Makefile.in (mostlyclean): Remove gnustmp.*
	(gnus.dvi): Change rule to remove @latex stuff.

2000-10-19  Eric M. Ludlam  <zappo@ultranet.com>

	* Makefile.in (Speedbar): Add build targets for speedbar.texi.

2000-10-13  John Wiegley  <johnw@gnu.org>

	* Makefile.in: Add build targets for eshell.texi.

2000-09-25  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in: Remove/comment speedbar stuff.

2000-09-22  Dave Love  <fx@gnu.org>

	* Makefile.in: Add emacs-mime.

2000-08-08  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (INFO_TARGETS): Add ../info/woman.
	(DVI_TARGETS): Add woman.dvi.
	(../info/woman, woman.dvi): New targets.

2000-05-31  Stefan Monnier  <monnier@cs.yale.edu>

	* .cvsignore (*.tmp): New entry.  Seems to be used for @macro.

	* pcl-cvs.texi: New file.
	* Makefile.in (INFO_TARGETS, DVI_TARGETS: Add pcl-cvs.
	(../info/pcl-cvs, pcl-cvs.dvi): New targets.

2000-05-11  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in (INFO_TARGETS): Add info/ebrowse.
	(../info/ebrowse, ebrowse.dvi): New targets.

2000-01-13  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in (INFO_TARGETS): Add eudc.
	(DVI_TARGETS): Add eudc.dvi.
	(../info/eudc, eudc.dvi): New targets.

2000-01-05  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (INFO_TARGETS): Rename emacs-faq to efaq (for
	compatibility with 8+3 filesystems).
	(../info/efaq): Rename from emacs-faq.

2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add idlwave.
	(../info/idlwave, idlwave.dvi): New targets.

1999-10-23  Dave Love  <fx@gnu.org>

	* Makefile.in: Use autotype.texi.

1999-10-12  Stefan Monnier  <monnier@cs.yale.edu>

	* Makefile.in (faq): Use ../info/emacs-faq.info (as specified in the
	  faq.texi file) rather than ../info/faq.

1999-10-07  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add ada-mode.
	(../info/ada-mode, ada-mode.dvi): New targets.

1999-09-01  Dave Love  <fx@gnu.org>

	* Makefile.in: Add faq.

1999-07-12  Richard Stallman  <rms@gnu.org>

	* Version 20.4 released.

1998-12-04  Markus Rost  <rost@delysid.gnu.org>

	* Makefile.in (INFO_TARGETS): Delete customize.info.
	(DVI_TARGETS): Delete customize.dvi.
	(../info/customize, customize.dvi): Targets deleted.

1998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>

	* Version 20.3 released.

1998-05-06  Richard Stallman  <rms@psilocin.gnu.org>

	* Makefile.in (EMACSSOURCES): Add mule.texi.
	Add msdog.texi, ack.texi.  Remove gnu1.texi.

1998-04-06  Andreas Schwab  <schwab@gnu.org>

	* Makefile.in (ENVADD): Enviroment vars to pass to texi2dvi.  Use
	it in dvi targets.
	(../etc/GNU): Change to $(srcdir) first.

1998-03-11  Carsten Dominik  <cd@delysid.gnu.org>

	* reftex.texi: Update for RefTeX version 3.22.

1998-02-08  Richard Stallman  <rms@psilocin.gnu.org>

	* Makefile.in (reftex.dvi, ../info/reftex): New targets.
	(INFO_TARGETS, DVI_TARGETS): Add the new targets.

1997-09-23  Paul Eggert  <eggert@twinsun.com>

	* Makefile.in: Merge changes mistakenly made to `Makefile'.
	(INFO_TARGETS): Change ../info/custom to ../info/customize.
	(../info/customize): Rename from ../info/custom.
	(../info/viper, viper.dvi): Remove dependency on viper-cmd.texi.

1997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 20.2 released.

1997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 20.1 released.

1997-08-24  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Makefile (../info/customize, customize.dvi): New targets.
	(INFO_TARGETS): Add ../info/customize.
	(DVI_TARGETS): Add customize.dvi.

1997-07-10  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Makefile (../info/viper, viper.dvi): Delete viper-cmd.texi dep.

1996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 19.33 released.

1996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 19.32 released.

1996-06-27  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>

	* Makefile.in: Add rules for the Message manual.

1996-06-26  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>

	* gnus.texi: New version.

	* message.texi: New manual.

1996-06-20  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Makefile.in (All info targets): cd $(srcdir) to do the work.

1996-06-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Makefile.in (All info targets): Specify $(srcdir) in input files.
	Specify -I option.
	(All dvi targets): Set the TEXINPUTS variable.

1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>

	* Version 19.31 released.

1996-01-07  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>

	* Makefile.in (../info/ccmode): Rename from ../info/cc-mode.
	(INFO_TARGETS): Use new name.  This avoids name conflict on MSDOS.

1995-11-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile.in (../info/cc-mode, cc-mode.dvi): New targets.
	(INFO_TARGETS): Add ../info/cc-mode.
	(DVI_TARGETS): Add cc-mode.dvi.

1995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Version 19.30 released.

1995-11-04  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>

	* gnus.texi: New file.

1995-11-04  Erik Naggum  <erik@naggum.no>

	* gnus.texi: File deleted.

1995-11-02  Stephen Gildea  <gildea@stop.mail-abuse.org>

	* mh-e.texi: "Function Index" -> "Command Index" to work with
	Emacs 19.30 C-h C-k support of separately-documented commands.

1995-06-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile.in (../info/ediff, ediff.dvi): New targets.
	(INFO_TARGETS, DVI_TARGETS): Add those new targets.

1995-04-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add viper targets.
	(../info/viper, viper.dvi): New targets.

1995-04-20  Kevin Rodgers  <kevinr@ihs.com>

	* dired-x.texi (Installation): Change the example to set
	buffer-local variables like dired-omit-files-p in
	dired-mode-hook.

1995-04-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile.in (INFO_TARGETS, DVI_TARGETS): Add mh-e targets.
	(../info/mh-e, mh-e.dvi): New targets.

1995-02-07  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>

	* Makefile.in (maintainer-clean): Rename from realclean.

1994-11-23  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile.in: New file.
	* Makefile: File deleted.

1994-11-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile (TEXINDEX_OBJS): Variable deleted.
	(texindex, texindex.o, getopt.o): Rules deleted.
	All deps on texindex deleted.
	(distclean): Don't delete texindex.
	(mostlyclean): Don't delete *.o.
	* texindex.c, getopt.c: Files deleted.

1994-09-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Version 19.26 released.

1994-07-02  Richard Stallman  (rms@gnu.ai.mit.edu)

	* Makefile (EMACSSOURCES): Exclude undo.texi.

1994-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.25 released.

1994-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.24 released.

1994-05-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.23 released.

1994-04-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile: Delete spurious tab.

1994-02-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (.SUFFIXES): New rule.

1994-01-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (dired-x.dvi, ../info/dired-x): New targets.
	(INFO_TARGETS, DVI_TARGETS): Add the new targets.

1994-01-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (../info/sc): Rename frin sc.info.
	(../info/cl): Likewise.
	(INFO_TARGETS): Use new names.

1993-12-04  Richard Stallman  (rms@srarc2)

	* getopt.c: New file.
	* Makefile (TEXINDEX_OBJS): Use getopt.o in this dir, not ../lib-src.
	(getopt.o): New rule.
	(dvi): Don't depend on texindex.
	(emacs.dvi, cl.dvi, forms.dvi, vip.dvi, gnus.dvi, sc.dvi):
	Depend on texindex.

1993-12-03  Richard Stallman  (rms@srarc2)

	* Makefile (../info/sc.info): Rename from ../info/sc.
	(TEXI2DVI): New variable.
	(emacs.dvi, cl.dvi forms.dvi, sc.dvi, vip.dvi, gnus.dvi, info.dvi):
	Add explicit commands.
	(TEXINDEX_OBJS): Delete duplicate getopt.o.

1993-11-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.22 released.

1993-11-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (TEXINDEX_OBJS): Delete spurious period.

1993-11-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.21 released.

1993-11-15  Paul Eggert  (eggert@twinsun.com)

	* man/Makefile (../info/cl.info): Rename from ../info/cl.

1993-11-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (../etc/GNU): New target.
	(EMACSSOURCES): Add gnu1.texi.

1993-11-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (realclean): Don't delete the Info files.

1993-10-25  Brian Fox  (bfox@albert.gnu.ai.mit.edu)

	* forms.texi: Fix forms.texi so that it will format correctly.
	Add missing `@end iftex', fix bad reference.

	* info.texi, info-stn.texi: New files implement texinfo version of
	`info' file.

	* frames.texi (Creating Frames): Mention `C-x 5' instead of `C-x
  	4' where appropriate.

1993-10-20  Brian Fox  (bfox@ai.mit.edu)

	* Makefile: Fix targets for texindex, new info.texi files.
	* info-stnd.texi: New file implements info for standalone info
	reader.
	* info.texi: Update to include recent changes to "../info/info".
	New source file for ../info/info; includes info-stnd.texi.

	* texindex.c: Include "../src/config.h" if building in emacs.

	* Makefile: Change all files to FILENAME.texi, force all targets
	to be FILENAME, not FILENAME.info.  This changes sc.texinfo,
	vip.texinfo, forms.texinfo, cl.texinfo.
	Add target to build texindex.c, defining `emacs'.

	* forms.texi: Install new file to match version 2.3 of forms.el.

1993-08-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.19 released.

1993-08-10  Simon Leinen  (simon@lia.di.epfl.ch)

	* sc.texinfo: Fix info file name.

	* Makefile (info): Add gnus and sc.
	(dvi): Add gnus.dvi and sc.dvi.
	(../info/sc, sc.dvi): New targets.

1993-08-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.18 released.

1993-07-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile: Fix source file names of the separate manuals.
	(gnus.dvi, ../info/gnus): New targets.

1993-07-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.17 released.

1993-07-10  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* split-man: Fix typos in last change.

1993-07-06  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

	* Version 19.16 released.

1993-06-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* version 19.15 released.

1993-06-18  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

	* Makefile (distclean): It's rm, not rf.

1993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Version 19.14 released.

1993-06-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Makefile: New file.

1993-06-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Version 19.13 released.

1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

	* Version 19.9 released.

1993-05-25  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Version 19.8 released.

1993-05-25  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* cmdargs.texi: Document the -i, -itype, and -iconic options.

	* trouble.texi: It's `enable-flow-control-on', not
	`evade-flow-control-on'.

1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* display.texi: Document standard-display-european.

1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

	* Version 19.7 released.

	* emacs.texi: Add a sentence to the top menu mentioning the
	specific version of Emacs this manual applies to.

1993-04-25  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* basic.texi: Document next-line-add-lines variable used to
	implement down-arrow.

	* killing.texi: Document kill-whole-line.

1993-04-18  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)

	* text.texi: Update unix TeX ordering information.

1993-03-26  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* news.texi: Mention fill-rectangle in keybinding list.

	* killing.texi: Document fill-rectangle.

1993-03-17  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* vc.texi: Bring the docs up to date with VC 5.2.

1992-01-10  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* emacs.tex: Mention blackbox and gomoku under Amusements.
	Assembler mode is now mentioned and appropriately indexed
	under Programming Modes.

1991-02-15  Robert J. Chassell  (bob@wookumz.ai.mit.edu)

	* emacs.tex: Update TeX ordering information.

1990-08-30  David Lawrence  (tale@pogo.ai.mit.edu)

	* gnus.texinfo: New file.  Removed installation instructions.

1990-06-26  David Lawrence  (tale@geech)

	* emacs.tex:  Note that completion-ignored-extensions is not used
	to filter out names when all completions are displayed in
	*Completions*.

1990-05-25  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* texindex.tex: If USG, include sys/types.h and sys/fcntl.h.

1990-03-21  Jim Kingdon  (kingdon@pogo.ai.mit.edu)

	* emacs.tex: Add @findex grep.

1989-01-17  Robert J. Chassell  (bob@rice-chex.ai.mit.edu)

	* texinfo.tex: Change spelling of `\sc' font to `\smallcaps' and
	then define `\sc' as the command for smallcaps in Texinfo.  This
	means that the @sc command will produce small caps.  bfox has
	made the corresponding change to makeinfo and texinfm.el.

1988-08-16  Robert J. Chassell  (bob@frosted-flakes.ai.mit.edu)

	* emacs.tex: Correct two typos.  No other changes before
	Version 19 will be made.

	* vip.texinfo: Remove menu entry Adding Lisp Code in node
	Customization since the menu entry did not point to anything.
	Also add an @finalout command to remove overfull hboxes from the
	printed output.

	* cl.texinfo:  Add @bye, \input line and @settitle to file.
	This file is clearly intended to be a chapter of some other work,
	but the other work does not yet exist.

1988-07-25  Robert J. Chassell  (bob@frosted-flakes.ai.mit.edu)

	* texinfo.texinfo: Three typos corrected.

1988-05-23  Robert J. Chassell  (bob@frosted-flakes.ai.mit.edu)

	* emacs.tex: Update information for obtaining TeX distribution from the
	University of Washington.

;; Local Variables:
;; coding: iso-2022-7bit
;; End:

    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001
	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: f1d62776-3ed5-4811-9d96-267252577dbd