summaryrefslogtreecommitdiff
path: root/lispref/ChangeLog
blob: ff1edfb375ab701443c11aa732bc3b45a995a5fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
2006-05-06  Eli Zaretskii  <eliz@gnu.org>

	* minibuf.texi (Minibuffer History): Document add-to-history.

2006-05-05  Eli Zaretskii  <eliz@gnu.org>

	* internals.texi (Pure Storage): Mention the pure overflow message
	at startup.

2006-05-05  Johan Bockg,Ae(Brd  <bojohan@dd.chalmers.se>

	* keymaps.texi (Active Keymaps): Fix pseudo-Lisp syntax.
	(Searching Keymaps): Fix pseudo-Lisp description of keymap
	search.

2006-05-01  Richard Stallman  <rms@gnu.org>

	* intro.texi (nil and t): Clarify.

	* variables.texi (File Local Variables): Suggest using booleanp.

2006-05-01  Juanma Barranquero  <lekktu@gmail.com>

	* objects.texi (Type Predicates): Fix typos.

2006-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>

	* intro.texi (nil and t): Add booleanp.

	* objects.texi (Type Predicates): Add links for booleanp and
	string-or-null-p.

2006-04-29  Richard Stallman  <rms@gnu.org>

	* modes.texi (Multiline Font Lock): Rename from
	Multi line Font Lock Elements.  Much clarification.
	(Font Lock Multiline, Region to Fontify): Much clarification.

2006-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>

	* variables.texi (File Local Variables): Remove the special case t for
	safe-local-variable.

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

	* syntax.texi (Parsing Expressions): Minor cleanup.

2006-04-18  Richard Stallman  <rms@gnu.org>

	* tips.texi (Coding Conventions): Explain when the package's
	prefix should appear later on (not at the start of the name).

	* searching.texi (String Search): Clarify effect of NOERROR.

	* modes.texi (Imenu): Clarify what special items do.

	* hooks.texi (Standard Hooks): Delete text about old hook names.

2006-04-17  Romain Francoise  <romain@orebokech.com>

	* variables.texi (Local Variables): Update the default value of
	`max-specpdl-size'.

2006-04-15  Michael Olson  <mwolson@gnu.org>

	* processes.texi (Transaction Queues): Mention the new optional
	`delay-question' argument for `tq-enqueue'.

2006-04-13  Bill Wohler  <wohler@newt.com>

	* customize.texi (Common Keywords): Use dotted notation for
	:package-version value. Specify its values. Improve documentation
	for customize-package-emacs-version-alist.

2006-04-12  Bill Wohler  <wohler@newt.com>

	* customize.texi (Common Keywords): Move description of
	customize-package-emacs-version-alist to @defvar.

2006-04-10  Bill Wohler  <wohler@newt.com>

	* customize.texi (Common Keywords): Add :package-version.

2006-04-10  Kim F. Storm  <storm@cua.dk>

	* text.texi (Buffer Contents): Add NOPROPS arg to
	filter-buffer-substring.

2006-04-08  Kevin Ryde  <user42@zip.com.au>

	* os.texi (Command-Line Arguments): Update xref to emacs manual
	"Command Arguments" -> "Emacs Invocation", per change there.

2006-04-08  Thien-Thi Nguyen  <ttn@gnu.org>

	* display.texi (Other Display Specs): Arrange a @code{DOTTED-LIST} to
	be on one line to help makeinfo not render two spaces after the dot.

2006-04-07  Reiner Steib  <Reiner.Steib@gmx.de>

	* strings.texi (Predicates for Strings): Add string-or-null-p.

2006-03-28  Kim F. Storm  <storm@cua.dk>

	* processes.texi (Accepting Output): Remove obsolete (and incorrect)
	remarks about systems that don't support fractional seconds.

2006-03-25  Karl Berry  <karl@gnu.org>

	* elisp.texi: Use @copyright{} instead of (C), and do not indent
	the year list.

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

	* display.texi (Fringe Indicators): Fix typos.

2006-03-19  Luc Teirlinck  <teirllm@auburn.edu>

	* tips.texi (Documentation Tips): One can now also write `program'
	in front of a quoted symbol in a docstring to prevent making a
	hyperlink.

2006-03-19  Alan Mackenzie  <acm@muc.de>

	* text.texi (Special Properties): Clarify `fontified' property.

2006-03-16  Richard Stallman  <rms@gnu.org>

	* display.texi (Defining Images): Minor cleanup.

2006-03-16  Bill Wohler  <wohler@newt.com>

	* display.texi (Defining Images): In image-load-path-for-library,
	prefer user's images.

2006-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>

	* modes.texi (Region to Fontify): Remove font-lock-lines-before.

2006-03-15  Bill Wohler  <wohler@newt.com>

	* display.texi (Defining Images): Fix example in
	image-load-path-for-library by not recommending that one binds
	image-load-path.  Just defvar it to placate compiler and only use
	it if previously defined.

2006-03-14  Bill Wohler  <wohler@newt.com>

	* display.texi (Defining Images): In image-load-path-for-library,
	always return list of directories.  Update example.

2006-03-14  Alan Mackenzie  <acm@muc.de>

	* modes.texi: New node, "Region to Fontify" (for Font Lock).
	This describes font-lock-extend-region-function.
	("Other Font Lock Variables"): Move "font-lock-lines-before" to
	the new node "Region to Fontify".

2006-03-13  Richard Stallman  <rms@gnu.org>

	* display.texi (Invisible Text): The impossible position is
	now before the invisible text, not after.
	(Defining Images): Clean up last change.

2006-03-11  Bill Wohler  <wohler@newt.com>

	* display.texi (Defining Images): Add image-load-path-for-library.

2006-03-11  Luc Teirlinck  <teirllm@auburn.edu>

	* text.texi (Adaptive Fill): Fix Texinfo usage.

	* strings.texi (Creating Strings): Fix Texinfo usage.

	* searching.texi (Regexp Special): Use @samp for regular
	expressions that are not in Lisp syntax.

2006-03-08  Luc Teirlinck  <teirllm@auburn.edu>

	* searching.texi (Regexp Special): Put remark between parentheses
	to avoid misreading.

2006-03-07  Luc Teirlinck  <teirllm@auburn.edu>

	* searching.texi (Syntax of Regexps): More accurately describe
	which characters are special in which situations.
	(Regexp Special): Recommend _not_ to quote `]' or `-' when they
	are not special.  Describe in detail when `[' and `]' are special.
	(Regexp Backslash): Plenty of regexps with unbalanced square
	brackets are valid, so reword that statement.

2006-03-02  Kim F. Storm  <storm@cua.dk>

	* keymaps.texi (Tool Bar): Add tool-bar-border.

2006-02-28  Luc Teirlinck  <teirllm@auburn.edu>

	* loading.texi (Load Suffixes): Rephrase last paragraph.  Fix typos.

2006-02-27  Luc Teirlinck  <teirllm@auburn.edu>

	* elisp.texi (Top): Include "Load Suffixes" in the detailed menu.

	* files.texi (Locating Files): Suggest additional values for the
	SUFFIXES arg of `locate-file'.  Update pxref.

	* loading.texi (Loading): Include new node "Load Suffixes" in menu.
	(How Programs Do Loading): Discuss the effects of Auto Compression
	mode on `load'.
	(Load Suffixes): New node.
	(Library Search): Delete description of `load-suffixes'; it was
	moved to "Load Suffixes".
	(Autoload, Named Features): Mention `load-suffixes'.

2006-02-21  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)

	* display.texi (Fringe Indicators, Fringe Cursors): Fix typos.

	* windows.texi (Window Tree): Fix typo.

2006-02-20  Kim F. Storm  <storm@cua.dk>

	* display.texi (Fringe Indicators): New section.
	Move indicate-empty-lines, indicate-buffer-boundaries, and
	default-indicate-buffer-boundaries here.
	Add fringe-indicator-alist and default-fringes-indicator-alist.
	Add list of logical fringe indicator symbols.
	Update list of standard bitmap names.
	(Fringe Cursors): New section.
	Move overflow-newline-into-fringe here.
	Add fringe-cursor-alist and default-fringes-cursor-alist.
	Add list of fringe cursor symbols.

2006-02-20  Juanma Barranquero  <lekktu@gmail.com>

	* commands.texi (Using Interactive): Fix reference to node
	"Minibuffers".

2006-02-19  Richard M. Stallman  <rms@gnu.org>

	* minibuf.texi (High-Level Completion):
	Add xref to read-input-method-name.

	* files.texi (Relative File Names): Move file-relative-name here.
	(File Name Expansion): From here.  Minor clarifications.

	* commands.texi (Using Interactive): Add xrefs about reading input.
	Clarify remarks about that moving point and mark.
	Put string case before list case.

2006-02-16  Johan Bockg,Ae(Brd  <bojohan@dd.chalmers.se>

	* display.texi (Other Display Specs, Image Descriptors):
	Revert erroneous changes.  The previous description of
	image-descriptors as `(image . PROPS)' was correct.

2006-02-14  Richard M. Stallman  <rms@gnu.org>

	* variables.texi (File Local Variables): Clarifications.

2006-02-14  Juanma Barranquero  <lekktu@gmail.com>

	* variables.texi (File Local Variables): Use @code for a cons
	cell, not @var.

2006-02-13  Chong Yidong  <cyd@stupidchicken.com>

	* variables.texi (File Local Variables): Document new file local
	variable behavior.

2006-02-10  Kim F. Storm  <storm@cua.dk>

	* eval.texi (Function Indirection): Add NOERROR to indirect-function.

2006-02-08  Juanma Barranquero  <lekktu@gmail.com>

	* modes.texi (%-Constructs): Remove obsolete info about
	`global-mode-string'.

2006-02-07  Richard M. Stallman  <rms@gnu.org>

	* commands.texi (Prefix Command Arguments): Minor cleanup.

	* display.texi: "Graphical display", not window system.

	* functions.texi (What Is a Function): Fix xref.

	* keymaps.texi (Key Lookup): Clarify wrt commands vs other functions.
	(Changing Key Bindings): Clarify when remapping is better than
	substitute-key-definition.

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

	* minibuf.texi (Basic Completion): Completion alists are risky.

	* keymaps.texi (Active Keymaps): Clarifications.
	(Searching Keymaps): New node.
	(Keymaps): Update menu.

	* frames.texi (Layout Parameters): Minor clarification.
	(Drag and Drop): New node.
	(Frames): Update menu.

2006-01-29  Chong Yidong  <cyd@stupidchicken.com>

	* display.texi (Other Display Specs, Image Descriptors):
	Image description is a list, not a cons cell.

2006-01-28  Luc Teirlinck  <teirllm@auburn.edu>

	* lists.texi (Cons Cells): Minor correction (the cdr of a dotted
	list is not necessarily a list).

2006-01-27  Eli Zaretskii  <eliz@gnu.org>

	* frames.texi (Layout Parameters): border-width and
	internal-border-width belong to the frame, not the window.

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

	* nonascii.texi (Translation of Characters): Search cmds use
	translation-table-for-input.  Automatically made local.

	* markers.texi (Overview of Markers): Count insertion type
	as one of a marker's attributes.

	* keymaps.texi (Controlling Active Maps): New node, split out of
	Active Keymaps.
	(Keymaps): Menu updated.
	(Active Keymaps): Give pseudocode to explain how the active
	maps are searched.  current-active-maps and key-binding moved here.
	(Functions for Key Lookup): current-active-maps and key-binding moved.
	Clarifications.
	(Searching the Keymaps): New subnode.

	* elisp.texi (Top): Menu clarification.

	* display.texi (Other Display Specs): Delete duplicate entry for
	just a string as display spec.  Move text about recursive display
	specs on such a string.

	* commands.texi (Key Sequence Input): Clarify.
	Move num-nonmacro-input-events out.
	(Reading One Event): num-nonmacro-input-events moved here.

2006-01-14  Nick Roberts  <nickrob@snap.net.nz>

	* advice.texi (Simple Advice): Update example to fit argument
	change in previous-line.

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

	* markers.texi (The Mark): Fix in `mark'.

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

	* processes.texi (Misc Network, Make Network): Minor cleanups.

2006-01-04  Kim F. Storm  <storm@cua.dk>

	* processes.texi (Make Network): Add IPv6 addresses and handling.
	(Network Feature Testing): Mention (:family ipv6).
	(Misc Network): Add IPv6 formats to format-network-address.

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

	* text.texi (Changing Properties):
	Don't use return value of set-text-properties.

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

	* modes.texi (Mode Line Format): Correct typo in menu.

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

	* modes.texi (Mode Line Top): New node.
	(Mode Line Data): Some text moved to new node.
	Explain the data structure more concretely.
	(Mode Line Basics): Clarifications.
	(Mode Line Variables): Clarify intro paragraph.
	(%-Constructs): Clarify intro paragraph.
	(Mode Line Format): Update menu.

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

	* minibuf.texi (Basic Completion): Update lazy-completion-table
	examples for removal of ARGS argument.

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

	* text.texi (Undo): Restore some explanation from the version
	that was deleted.

2005-12-23  Eli Zaretskii  <eliz@gnu.org>

	* text.texi (Undo): Remove dupliate descriptions of `apply
	funname' and `apply delta' elements of the undo list.

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

	* help.texi (Help Functions): Update documentation of `apropos'.

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

	* customize.texi (Type Keywords): Delete xref to "Text help-echo",
	because it is confusing.  If the :help-echo keyword is a function,
	it is not directly used as the :help-echo overlay property, as the
	xref seems to suggest (it does not take the appropriate args).

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

	* customize.texi (Common Keywords): Fix Texinfo usage.
	(Group Definitions, Variable Definitions): Update for new
	conventions for using `*' in docstrings.

	* tips.texi (Documentation Tips): Update for new conventions for
	using `*' in docstrings.

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

	* minibuf.texi (Minibuffer Contents): Minor cleanup.

2005-12-16  Juri Linkov  <juri@jurta.org>

	* minibuf.texi (Minibuffer Contents): Add minibuffer-completion-contents.

2005-12-14  Romain Francoise  <romain@orebokech.com>

	* modes.texi (Customizing Keywords): Rename `append' to `how'.
	Fix typo.

2005-12-11  Juri Linkov  <juri@jurta.org>

	* minibuf.texi (Completion Commands): Add mention of read-file-name
	for filename completion keymaps.
	(Reading File Names): Add mention of filename completion keymaps
	for read-file-name and xref to `Completion Commands'.

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

	* customize.texi (Common Keywords): State caveats for use of :tag.

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

	* minibuf.texi (Intro to Minibuffers): Replace list of local maps
	with xrefs and better explanation.
	(Completion Commands): Add the filename completion maps.

	* objects.texi (Character Type): Clarify that \s is not space
	if a dash follows.

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

	* windows.texi (Resizing Windows): Delete preserve-before args.

2005-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>

	* keymaps.texi (Format of Keymaps): Remove mention of a quirk
	in full keymaps, since the quirk has been fixed.

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

	* hooks.texi (Standard Hooks): Add index entries.  Mention
	`compilation-finish-functions'.

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

	* windows.texi (Resizing Windows): Add adjust-window-trailing-edge.

2005-11-21  Juri Linkov  <juri@jurta.org>

	* customize.texi (Common Keywords): Update links types
	custom-manual and url-link.  Add link types emacs-library-link,
	file-link, function-link, variable-link, custom-group-link.

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

	* display.texi: Revert 2005-11-20 change.

2005-11-20  Thien-Thi Nguyen  <ttn@gnu.org>

	* processes.texi (Bindat Functions):
	Say "third" to refer to zero-based index "2".

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

	* loading.texi (Library Search): Update the default value of
	`load-suffixes'.

2005-11-17  Chong Yidong  <cyd@stupidchicken.com>

	* display.texi (Attribute Functions): Mention :ignore-defface.

2005-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>

	* modes.texi (Minor Mode Conventions): Use custom-set-minor-mode.
	(Minor Mode Conventions): Mention the use of a hook.

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

	* files.texi (Magic File Names): find-file-name-handler checks the
	`operations' property of the handler.

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

	* variables.texi (Frame-Local Variables): Small clarification.

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

	* os.texi (Init File): Document ~/.emacs.d/init.el.

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

	* internals.texi (Garbage Collection): Document memory-full.

2005-10-28  Bill Wohler  <wohler@newt.com>

	* tips.texi (Documentation Tips): Help mode now creates hyperlinks
	for URLs.

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

	* minibuf.texi (Completion Commands): Clean up prev change.

2005-10-26  Kevin Ryde  <user42@zip.com.au>

	* compile.texi (Eval During Compile): Explain recommended uses
	of eval-when-compile and eval-and-compile.

2005-10-27  Masatake YAMATO  <jet@gyve.org>

	* minibuf.texi (Completion Commands):
	Write about new optional argument for `display-completion-list'.

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

	* display.texi (Overlay Arrow): Clarify about local bindings of
	overlay-arrow-position.

2005-10-22  Eli Zaretskii  <eliz@gnu.org>

	* internals.texi (Building Emacs): Fix last change.

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

	* internals.texi (Building Emacs): Document eval-at-startup.

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

	* loading.texi (Where Defined): load-history contains abs file names.
	symbol-file returns abs file names.

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

	* display.texi (Showing Images): Add max-image-size integer value.

2005-10-18  Chong Yidong  <cyd@stupidchicken.com>

	* display.texi (Showing Images): Document max-image-size.

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

	* commands.texi (Quitting): Minor clarification.

	* processes.texi (Sentinels): Clarify about output and quitting.
	(Filter Functions): Mention with-local-quit.

2005-10-17  Juri Linkov  <juri@jurta.org>

	* buffers.texi (Current Buffer):
	* commands.texi (Event Input Misc):
	* compile.texi (Eval During Compile, Compiler Errors):
	* customize.texi (Group Definitions):
	* display.texi (Progress, Defining Faces):
	* files.texi (Writing to Files):
	* modes.texi (Mode Hooks, Defining Minor Modes):
	* streams.texi (Output Functions):
	* syntax.texi (Syntax Table Functions):
	* text.texi (Change Hooks):
	Replace `...' with `@dots{}' in `@defmac' and `@defspec'.

	* commands.texi (Quitting): Replace arg `forms' with `body' in
	`with-local-quit'.

	* positions.texi (Excursions): Replace arg `forms' with `body' in
	`save-excursion'.

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

	* windows.texi (Window Tree): Rename window-split-tree to window-tree.
	Rename manual section accordingly.

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

	* windows.texi (Window Split Tree): New section describing
	new function window-split-tree function.

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

	* display.texi (Fringe Size/Pos): Simplify and add detail.

2005-09-30  Romain Francoise  <romain@orebokech.com>

	* minibuf.texi (High-Level Completion): Explain that the prompt
	given to `read-buffer' should end with a colon and a space.
	Update usage examples.

2005-09-29  Juri Linkov  <juri@jurta.org>

	* display.texi (Displaying Messages): Rename argument name
	`string' to `format-string' in functions `message', `message-box',
	`message-or-box'.

2005-09-26  Chong Yidong  <cyd@stupidchicken.com>

	* errors.texi (Standard Errors): Correct xrefs.

2005-09-18  Chong Yidong  <cyd@stupidchicken.com>

	* display.texi (Defining Images): Update documentation for
	`image-load-path'.

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

	* display.texi (Defining Images): Clean up previous change.

2005-09-16  Romain Francoise  <romain@orebokech.com>

	* elisp.texi: Specify GFDL version 1.2.

	* doclicense.texi (GNU Free Documentation License): Update to
	version 1.2.

2005-09-15  Chong Yidong  <cyd@stupidchicken.com>

	* display.texi (Defining Images): Document `image-load-path'.

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

	* objects.texi (Printed Representation): Minor cleanup.
	(Box Diagrams): Minor fix.
	(Cons Cell Type): Move (...) index item here.
	(Box Diagrams): From here.
	(Array Type): Minor fix.
	(Type Predicates): Delete index "predicates".
	(Hash Table Type): Clarify xref.
	(Dotted Pair Notation): Minor fix.

2005-09-10  Chong Yidong  <cyd@stupidchicken.com>

	* files.texi (Saving Buffers): Fix typo.

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

	* tips.texi (Programming Tips): Correct the "default" prompt spec.

2005-09-08  Chong Yidong  <cyd@stupidchicken.com>

	* locals.texi (Standard Buffer-Local Variables): Don't include
	mode variables for minor modes.
	Fix xrefs for buffer-display-count, buffer-display-table,
	buffer-offer-save, buffer-saved-size, cache-long-line-scans,
	enable-multibyte-characters, fill-column, header-line-format,
	left-fringe-width, left-margin, and right-fringe-width.

	* hooks.texi (Standard Hooks): All hooks should conform to the
	standard naming convention now.
	Fix xref for `echo-area-clear-hook'.

	* display.texi (Usual Display): Note that indicate-empty-lines and
	tab-width are buffer-local.

	* files.texi (Saving Buffers): Add xref to `Killing Buffers'.

	* modes.texi (Mode Help): Note that major-mode is buffer-local.

	* nonascii.texi (Encoding and I/O): Note that
	buffer-file-coding-system is buffer-local.

	* positions.texi (List Motion): Note that defun-prompt-regexp is
	buffer-local.

	* text.texi (Auto Filling): Note that auto-fill-function is
	buffer-local.
	(Undo): Note that buffer-undo-list is buffer-local.

	* windows.texi (Buffers and Windows): Document
	buffer-display-count.

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

	* tips.texi (Coding Conventions): Sometimes it is ok to put the
	package prefix elsewhere than at the start of the name.

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

	* tips.texi (Programming Tips): Add conventions for minibuffer
	questions and prompts.

2005-09-03  Joshua Varner  <jlvarner@gmail.com>  (tiny change)

	* intro.texi (nil and t): Minor cleanup.
	Delete spurious mention of keyword symbols.
	(Evaluation Notation): Add index entry.
	(A Sample Function Description): Minor cleanup.
	(A Sample Variable Description): Not all vars can be set.

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

	* text.texi (Buffer Contents): Use "\n" in examples' result strings.

	(Insertion): Document precise type of `insert-char' arg COUNT.

2005-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>

	* modes.texi (Other Font Lock Variables): Sync the default of
	font-lock-lines-before.

2005-08-31  Michael Albinus  <michael.albinus@gmx.de>

	* files.texi (Magic File Names): Add `make-auto-save-file-name'.

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

	* elisp.texi (Top): Update subnode menu.

	* searching.texi (Searching and Matching): Move node.
	Rearrange contents and add overall explanation.
	(Searching and Case): Move node.
	(Searching and Matching): Update menu.

2005-08-27  Eli Zaretskii  <eliz@gnu.org>

	* os.texi (Startup Summary): Fix the description of the initial
	startup message display.

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

	* searching.texi (Search and Replace): Add replace-regexp-in-string.

2005-08-25  Emilio C. Lopes  <eclig@gmx.net>

	* display.texi (Finding Overlays): Fix `find-overlay-prop' in
	`next-overlay-change' example.

2005-08-22  Juri Linkov  <juri@jurta.org>

	* display.texi (Attribute Functions): Add set-face-inverse-video-p.
	Fix invert-face.  Fix args of face-background.

	* display.texi (Standard Faces): Delete node.
	(Faces): Add xref to `(emacs)Standard Faces'.
	(Displaying Faces): Fix xref to `Standard Faces'.

	* modes.texi (Mode Line Data): Fix xref to Standard Faces.

2005-08-20  Alan Mackenzie  <acm@muc.de>

	* buffers.texi (The Buffer List): Clarify the manipulation of the
	buffer list.

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

	* modes.texi (Auto Major Mode): interpreter-mode-alist key is not
	a regexp.

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

	* elisp.texi (Top): Update subnode lists.

	* display.texi (Inverse Video): Node deleted.

	* tips.texi (Key Binding Conventions, Programming Tips, Warning Tips):
	New nodes split out of Coding Conventions.

	* searching.texi (Regular Expressions): Document re-builder.

	* os.texi (Time Parsing): New node split out of Time Conversion.

	* processes.texi (Misc Network, Network Feature Testing)
	(Network Options, Make Network): New nodes split out of
	Low-Level Network.

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

	* frames.texi (Geometry): New node, split from Size and Position.
	(Frame Parameters): Refer to Geometry.

	* buffers.texi (The Buffer List): Fix xrefs.

	* windows.texi (Splitting Windows): Fix xref.

	* frames.texi (Layout Parameters): Add xref.

	* display.texi (Line Height, Scroll Bars): Fix xrefs.

	* keymaps.texi (Menu Bar): Fix xref.

	* locals.texi (Standard Buffer-Local Variables): Fix xref.

	* modes.texi (%-Constructs): Fix xref.

	* frames.texi (Window Frame Parameters): Node split up.
	(Basic Parameters, Position Parameters, Size Parameters)
	(Layout Parameters, Buffer Parameters, Management Parameters)
	(Cursor Parameters, Color Parameters): New subnodes.

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

	* positions.texi (Screen Lines): Update xref for previous change
	in minibuf.texi.

	* minibuf.texi (Intro to Minibuffers): Update pxref for previous
	change in minibuf.texi.

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

	* tips.texi (Coding Conventions): Minor cleanup.

	* modes.texi (Defining Minor Modes): Explain when init-value
	can be non-nil.

	* elisp.texi (Top): Update submenu for Minibuffer.

	* minibuf.texi (Minibuffer Misc): Node split up.
	(Minibuffer Commands, Minibuffer Windows, Minibuffer Contents)
	(Recursive Mini): New nodes split out from Minibuffer Misc.
	(Minibuffer Misc): Document max-mini-window-height.

	* hash.texi (Defining Hash): Delete stray paren in example.

	* display.texi (Echo Area Customization): Don't define
	max-mini-window-height here; xref instead.

	* commands.texi (Event Input Misc): Update while-no-input.

	* advice.texi (Advising Functions): Explain when to use advice
	and when to use a hook.

2005-07-30  Eli Zaretskii  <eliz@gnu.org>

	* makefile.w32-in (info): Don't run install-info.
	($(infodir)/dir): New target, produced by running install-info.

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

	* modes.texi (Defining Minor Modes): The keyword for the initial
	value is :init-value, not :initial-value.

2005-07-23  Eli Zaretskii  <eliz@gnu.org>

	* loading.texi (Autoload): Make the `doctor' example be consistent
	with what's in current loaddefs.el.  Describe the "fn" magic in
	the usage portion of the doc string.

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

	* internals.texi (Garbage Collection): Clarify previous change.

2005-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>

	* internals.texi (Garbage Collection): Add gc-cons-percentage.

2005-07-18  Juri Linkov  <juri@jurta.org>

	* commands.texi (Accessing Events):
	* frames.texi (Text Terminal Colors, Resources):
	* markers.texi (The Mark):
	* modes.texi (Defining Minor Modes):
	Delete duplicate duplicate words.

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

	* display.texi (Managing Overlays): Clarify make-overlay
	args for insertion types.

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

	* customize.texi (Variable Definitions):
	Add `custom-initialize-safe-set' and `custom-initialize-safe-default'.
	`standard-value' is a list too.
	(Defining New Types): Use @key{RET} instead of @key{ret}.

2005-07-13  Francis Litterio  <franl@world.std.com>  (tiny change)

	* os.texi (Translating Input): Fix typo.

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

	* README: Update edition number and size estimate.

	* elisp.texi (VERSION): Set to 2.9.

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

	* book-spine.texinfo: Update Emacs version.

	* display.texi (Inverse Video): Delete mode-line-inverse-video.

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

	* searching.texi (Regexp Search): Clarify what re-search-forward
	does when the search fails.

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

	* Update FSF's address in GPL notices.

	* doclicense.texi (GNU Free Documentation License):
	* gpl.texi (GPL):
	* tips.texi (Coding Conventions, Library Headers):
	* vol1.texi:
	* vol2.texi: Update FSF's address.

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

	* hooks.texi (Standard Hooks): Add occur-hook.

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

	* display.texi (The Echo Area): Correct menu.

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

	* elisp.texi (Top): Update subnode menu for Display.

	* display.texi (Displaying Messages): New node, with most
	of what was in The Echo Area.
	(Progress): Moved under The Echo Area.
	(Logging Messages): New node with new text.
	(Echo Area Customization): New node, the rest of what was
	in The Echo Area.  Document message-truncate-lines with @defvar.
	(Display): Update menu.

	* windows.texi (Textual Scrolling): Doc 3 values for
	scroll-preserve-screen-position.

	* text.texi (Special Properties): Change hook functions
	should bind inhibit-modification-hooks around altering buffer text.

	* keymaps.texi (Key Binding Commands): Call binding BINDING
	rather than DEFINITION.

2005-06-29  Juanma Barranquero  <lekktu@gmail.com>

	* variables.texi (Defining Variables): `user-variable-p' returns t
	for aliases of user options, nil for alias loops.

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

	* keymaps.texi (Creating Keymaps): Put make-sparse-keymap before
	make-keymap.

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

	* variables.texi (Setting Variables): Correct and clarify
	description of `add-to-ordered-list'.

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

	* display.texi (Faces): Minor cleanup.

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

	* display.texi (Faces): `facep' returns t for strings that are
	face names.

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

	* objects.texi (Equality Predicates): Clarify meaning of equal.

	* windows.texi (Selecting Windows): save-selected-window
	and with-selected-window save and restore the current buffer.

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

	* numbers.texi (Float Basics): Explain how to test for NaN,
	and printing the sign of NaNs.

2005-06-24  Eli Zaretskii  <eliz@gnu.org>

	* makefile.w32-in (MAKEINFO): Use --force.

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

	* display.texi (Face Functions): Correct Texinfo usage.

2005-06-23  Luc Teirlinck  <teirllm@auburn.edu>

	* lists.texi (Rings): `ring-elements' now returns the elements of
	RING in order.

2005-06-23  Juanma Barranquero  <lekktu@gmail.com>

	* markers.texi (The Mark): Texinfo usage fix.

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

	* searching.texi (Entire Match Data): Remove evaporate option for
	match-data.  Do not mention evaporate option for set-match-data.

2005-06-22  Glenn Morris  <gmorris@ast.cam.ac.uk>

	* display.texi (Face Functions): Mention face aliases.

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

	* anti.texi (Antinews): Texinfo usage fix.

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

	* elisp.texi: Use @copying.

	* elisp.texi: Put @summarycontents and @contents before the Top
	node, instead of the end of the file, so that the contents appear
	in the right place in the dvi/pdf output.

2005-06-21  Juri Linkov  <juri@jurta.org>

	* display.texi (Defining Faces): Add `customized-face'.

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

	* variables.texi (Setting Variables): Any type of element can be
	given order in add-to-ordered-list.  Compare elements with eq.

	* lists.texi (Rearrangement): Sort predicate may just return non-nil.

2005-06-20  Karl Berry  <karl@gnu.org>

	* syntax.texi (Syntax Flags): Make last column very slightly wider
	to avoid "generic comment" breaking on two lines and causing an
	underfull box.

2005-06-19  Luc Teirlinck  <teirllm@auburn.edu>

	* lists.texi (Rings): Various minor clarifications and corrections.

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

	* functions.texi (Obsolete Functions): Simplify.

	* variables.texi (Variable Aliases): Simplify.

	* anti.texi, backups.texi, compile.texi, customization.texi:
	* debugging.texi, display.texi, edebug.texi, errors.texi, frames.texi:
	* functions.texi, help.texi, keymaps.texi, modes.texi, nonascii.texi:
	* os.texi, processes.texi, searching.texi, strings.texi, text.texi:
	* variables.texi: Fix formatting ugliness.

	* elisp.texi: Add links to Rings and Byte Packing.
	Update version and copyright years.

	* minibuf.texi: Fix formatting ugliness.
	(Completion Commands): Move keymap vars to the end
	and vars completing-read binds to the top.

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

	* processes.texi: Fix typos.
	(Bindat Spec): Correct Texinfo error.
	(Byte Packing): Fix ungrammatical sentence.

2005-06-17  Thien-Thi Nguyen  <ttn@gnu.org>

	* lists.texi (Rings): New node.
	(Lists): Add it to menu.

	* processes.texi (Byte Packing): New node.
	(Processes): Add it to menu.

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

	* syntax.texi (Parsing Expressions): Fix texinfo usage.

	* help.texi (Documentation Basics): Explain the xref to
	Documentation Tips.

	* debugging.texi (Debugger Commands): Minor fix.

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

	* edebug.texi (Instrumenting): Eliminate duplicate link.
	(Specification List): Replace references to "below", referring to
	a later node, with one @ref to that node.

	* os.texi (Timers): Timers should save and restore the match data
	if they change it.

	* debugging.texi (Debugger Commands): Mention that the Lisp
	debugger can not step through primitive functions.

2005-06-16  Juanma Barranquero  <lekktu@gmail.com>

	* functions.texi (Obsolete Functions): Update argument names of
	`make-obsolete' and `define-obsolete-function-alias'.

	* variables.texi (Variable Aliases): Update argument names of
	`defvaralias', `make-obsolete-variable' and
	`define-obsolete-variable-alias'.

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

	* searching.texi (Entire Match Data): Rephrase warnings about
	evaporate arg to match-data and set-match-data.

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

	* elisp.texi (Top): Update detailed menu.

	* edebug.texi (Edebug): Update menu.
	(Instrumenting): Update xrefs.
	(Edebug Execution Modes): Correct xref.
	(Jumping): Clarify description of `h' command.
	Eliminate redundant @ref.
	(Breaks): New node.
	(Breakpoints): is now a subsubsection.
	(Global Break Condition): Mention `C-x X X'.
	(Edebug Views): Clarify `v' and `p'.  Mention `C-x X w'.
	(Trace Buffer): Clarify STRING arg of `edebug-tracing'.
	(Edebug Display Update): Correct pxref.
	(Edebug and Macros): New node.
	(Instrumenting Macro Calls): Is now a subsubsection.
	Neither arg of `def-edebug-spec' is evaluated.
	(Instrumenting Macro Calls): Mention `edebug-eval-macro-args'.
	(Specification Examples): Fix typo.

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

	* debugging.texi (Function Debugging): Primitives can break on
	entry too.

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

	* variables.texi (Setting Variables): Add add-to-ordered-list.

2005-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>

	* syntax.texi (Parsing Expressions): Document aux functions and vars of
	syntax-ppss: syntax-ppss-flush-cache and syntax-begin-function.

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

	* text.texi (Special Properties): Fix cross reference.

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

	* debugging.texi (Function Debugging): Delete mention of empty
	string argument to `cancel-debug-on-entry'.  Delete inaccurate
	description of the return value of that command.

2005-06-11  Alan Mackenzie  <acm@muc.de>

	* text.texi (Adaptive Fill): Amplify the description of
	fill-context-prefix.

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

	* syntax.texi (Parsing Expressions): Fix Texinfo error.

2005-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>

	* syntax.texi (Parsing Expressions): Document syntax-ppss.

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

	* debugging.texi (Error Debugging): Minor rewording.
	(Function Debugging): FUNCTION-NAME arg to `cancel-debug-on-entry'
	is optional.

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

	* elisp.texi: Use EMACSVER to refer to the current version of Emacs.
	(Top): Give it a title.  Correct version number.  Give the
	detailed node listing a more prominent header.
	* intro.texi: Don't set VERSION here a second time.
	Mention Emacs's version too.
	* anti.texi (Antinews): Use EMACSVER to refer to the current
	version of Emacs.

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

	* searching.texi (Entire Match Data): Explain new `reseat' argument to
	match-data and set-match-data.

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

	* searching.texi (Entire Match Data): Clarify when match-data
	returns markers and when integers.

	* display.texi (Defining Faces): Explain that face name should not
	end in `-face'.

	* modes.texi (Mode Line Data): Minor cleanup.
	(Customizing Keywords): Node split out of Search-based Fontification.
	Add example of using font-lock-add-keywords from a hook.
	Clarify when MODE should be non-nil, and when nil.

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

	* modes.texi (Mode Line Data): Explain what happens when the car
	of a list is a void symbol.
	(Search-based Fontification): Explain MODE arg to
	font-lock-add-keywords and warn about calls from major modes.

2005-06-08  Juri Linkov  <juri@jurta.org>

	* display.texi (Standard Faces): Add `shadow' face.

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

	* modes.texi (Major Mode Conventions): A derived mode only needs
	to put the call to the parent mode inside `delay-mode-hooks'.

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

	* modes.texi (Mode Hooks): Explain that after-change-major-mode-hook is
	new, and what that implies.  Clarify.

	* files.texi (Locating Files): Clean up the text.

	* frames.texi (Window Frame Parameters): Document user-size.
	Shorten entry for top by referring to left.

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

	* modes.texi (Mode Hooks): Explain that after-change-major-mode-hook
	is new, and what the implications are.  Other clarifications.

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

	* frames.texi (Dialog Boxes): Minor fixes.

2005-05-25  Masatake YAMATO  <jet@gyve.org>

	* display.texi (Standard Faces): Write about `mode-line-highlight'.

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

	* frames.texi (Dialog Boxes): HEADER argument to `x-popup-dialog'
	is optional.

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

	* frames.texi (Dialog Boxes): Descibe new optional argument.

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

	* modes.texi (Font Lock Basics, Syntactic Font Lock): Recommend
	syntax-begin-function over font-lock-beginning-of-syntax-function.

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

	* minibuf.texi (Reading File Names): Update description of
	`read-directory-name'.

	* modes.texi (Derived Modes): Clarify :group keyword.

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

	* files.texi (Locating Files): New subsection.
	Describe locate-file and executable-find.

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

	* frames.texi (Initial Parameters): Update cross reference to
	"Emacs Invocation".

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

	* keymaps.texi (Active Keymaps): Add anchor.

	* modes.texi (Hooks): Delete confusing and unnecessary sentence.
	(Major Mode Conventions): Refer to `Auto Major Mode' in more
	appropriate place.
	(Derived Modes): Small clarifications.
	(Minor Mode Conventions, Keymaps and Minor Modes):
	Replace references to nodes with references to anchors.
	(Mode Line Data): Warn that `(:eval FORM)' should not load any files.
	Clarify description of lists whose first element is an integer.
	(Mode Line Variables): Add anchor.
	(%-Constructs): Clarify description of integer after %.
	(Emulating Mode Line): Describe nil value for FACE.

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

	* modes.texi (Derived Modes): Correct references to non-existing
	variable standard-syntax-table.

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

	* modes.texi (Defining Minor Modes): Mention the mode hook.

2005-05-15  Kim F. Storm  <storm@cua.dk>

	* processes.texi (Network): Remove open-network-stream-nowait.
	(Network Servers): Remove open-network-stream-server.

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

	* elisp.texi (Top): Update detailed menu.

	* variables.texi: Reorder nodes.
	(Variables): Update menu.
	(File Local Variables): Do not refer to the `-*-' line as
	a "local variables list".  Add pxref.

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

	* elisp.texi (Top): Update detailed menu for node changes.

	* modes.texi (Modes): Update Menu.
	(Hooks):  Move to beginning of chapter.
	Most minor modes run mode hooks too.
	`add-hook' can handle void hooks or hooks whose value is a single
	function.
	(Major Modes): Update Menu.
	(Major Mode Basics): New node, split off from `Major Modes'.
	(Major Mode Conventions): Correct xref.  Explain how to handle
	auto-mode-alist if the major mode command has an autoload cookie.
	(Auto Major Mode): Major update.  Add magic-mode-alist.
	(Derived Modes): Major update.
	(Mode Line Format): Update Menu.
	(Mode Line Basics): New node, split off from `Mode Line Format'.

	* loading.texi (Autoload): Mention `autoload cookie' as synonym
	for `magic autoload comment'.  Add index entries and anchor.

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

	* tips.texi (Coding Conventions): Explain how important it is
	that just loading certain files not change Emacs behavior.

	* modes.texi (Defining Minor Modes): Define define-global-minor-mode.

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

	* modes.texi (Generic Modes): Update.
	(Major Modes): Refer to node "Generic Modes".

	* elisp.texi (Top): Update to the current structure of the manual.
	* processes.texi (Processes): Add menu description.
	* customize.texi (Customization): Add menu descriptions.

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

	* processes.texi (Signals to Processes)
	(Low-Level Network): Fix typos.

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

	* elisp.texi (Top): Add some nodes from the chapter "Major and
	Minor Modes" to the detailed node listing.

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

	* keymaps.texi (Extended Menu Items): Menu item filter functions
	can be called at any time.

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

	* variables.texi (File Local Variables): `(hack-local-variables t)'
	now also checks whether a mode is specified in the local variables
	list.

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

	* display.texi (The Echo Area): Correct format function cross
	reference.

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

	* variables.texi (Variable Aliases): Change description of
	`define-obsolete-variable-alias'.

	* functions.texi (Functions): Add "Obsolete Functions" to menu.
	(Defining Functions): Add xref.
	(Obsolete Functions): New node.
	(Function Safety): Standardize capitalization of section title.

	* frames.texi (Pop-Up Menus): Complete description of `x-popup-menu'.
	(Dialog Boxes): Complete description of `x-popup-dialog'.

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

	* commands.texi (Interactive Codes): Fix Texinfo usage.
	Document U more clearly.

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

	* variables.texi (Variable Aliases): `make-obsolete-variable' is a
	function and not a macro.

	* frames.texi (Pop-Up Menus): Correct and clarify description of
	`x-popup-menu'.
	(Dialog Boxes): Clarify description of `x-popup-dialog'.

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

	* edebug.texi (Checking Whether to Stop): Fix previous change.

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

	* display.texi: Fix typos and Texinfo usage.

	* edebug.texi (Checking Whether to Stop): executing-macro ->
	executing-kbd-macro.

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

	* display.texi (Invisible Text): Correct add-to-invisibility-spec.

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

	* files.texi (Magic File Names): Document `operations' property.

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

	* modes.texi (Generic Modes): New node.
	(Major Modes): Add it to the menu.
	(Derived Modes): Add "derived mode" to concept index.

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

	* modes.texi (Defining Minor Modes): Fix previous change.
	(Font Lock Mode): Simplify.
	(Font Lock Basics): Say that font-lock-defaults is buffer-local
	when set and that some parts are optional.  Add cross references.
	(Search-based Fontification): Say how to specify font-lock-keywords.
	Add cross references.  Add font-lock-multiline to index.
	Move font-lock-keywords-case-fold-search here from node "Other Font
	Lock Variables".  Document font-lock-add-keywords and
	font-lock-remove-keywords.
	(Other Font Lock Variables): Move font-lock-keywords-only,
	font-lock-syntax-table, font-lock-beginning-of-syntax-function,
	and font-lock-syntactic-face-function to node "Syntactic Font
	Lock".  Move font-lock-keywords-case-fold-search to node
	"Search-based Fontification".  Document font-lock-inhibit-thing-lock
	and font-lock-{,un}fontify-{buffer,region}-function.
	(Precalculated Fontification): Remove reference to deleted variable
	font-lock-core-only.
	(Faces for Font Lock): Add font-lock-comment-delimiter-face.
	(Syntactic Font Lock): Add intro.  Move font-lock-keywords-only,
	font-lock-syntax-table, font-lock-beginning-of-syntax-function,
	and font-lock-syntactic-face-function here from node "Other Font
	Lock Variables".  Move font-lock-syntactic-keywords to "Setting
	Syntax Properties".  Add cross references.
	(Setting Syntax Properties): New node.
	Move font-lock-syntactic-keywords here from "Syntactic Font Lock".
	* syntax.texi (Syntax Properties): Add cross reference.
	* hooks.texi (Standard Hooks): Add Font-Lock hooks.

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

	* display.texi (Defining Faces):
	Document `default' elements of defface spec.

	* modes.texi (Major Mode Conventions): Explain customizing ElDoc mode.

	* variables.texi (Variable Aliases): Clarify text.

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

	* windows.texi (Window Hooks): Remove reference to obsolete Lazy Lock.

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

	* hooks.texi (Standard Hooks): Most minor modes have mode hooks too.

2005-04-24  Eli Zaretskii  <eliz@gnu.org>

	* syntax.texi (Syntax Table Internals): Elaborate documentation of
	syntax-after and syntax-class.

	* files.texi (Changing Files): Fix last change's cross-reference.
	(Unique File Names): Don't mention "numbers" in the documentation
	of make-temp-file and make-temp-name.

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

	* files.texi (Changing Files): Document MUSTBENEW arg in copy-file.

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

	* windows.texi (Cyclic Window Ordering): Clarify window-list.

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

	* variables.texi (Variable Aliases): Describe make-obsolete-variable
	and define-obsolete-variable-alias.

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

	* symbols.texi (Symbol Plists): Remove safe-get, as get is now safe.
	(Other Plists): Remove safe-plist-get, as plist-get is now safe.

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

	* lists.texi (Association Lists): Document rassq-delete-all.

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

	* modes.texi (Search-based Fontification): Explain that
	facespec is an expression to be evaluated.

2005-04-19  Kevin Ryde  <user42@zip.com.au>

	* streams.texi (Output Functions): Fix xref.
	* strings.texi (String Conversion): Fix xref.

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

	* symbols.texi (Symbol Plists): Add safe-get.
	Mention that `get' may signal an error.

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

	* customize.texi (Variable Definitions): Replace tooltip-mode
	example with save-place.

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

	* buffers.texi (Indirect Buffers): Clarify.

	* positions.texi (Positions): Clarify converting marker to integer.

	* strings.texi (String Basics): Mention string-match; clarify.

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

	* modes.texi (Search-based Fontification): Fix cross references.
	Use consistent terminology.  Document anchored highlighting.

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

	* modes.texi (Defining Minor Modes): Document :group keyword
	argument and its default value.

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

	* hooks.texi (Standard Hooks): Add some hooks.  Add cross
	references and/or descriptions.  Delete major mode hooks; mention
	them as a category instead.  Rename or delete obsolete hooks.

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

	* nonascii.texi (Coding System Basics): Another wording cleanup.

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

	* nonascii.texi (Coding System Basics): Clarify previous change.

2005-04-01  Kenichi Handa  <handa@m17n.org>

	* nonascii.texi (Coding System Basics): Describe about rondtrip
	identity of coding systems.

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

	* text.texi (Buffer Contents): Add filter-buffer-substring and
	buffer-substring-filters.

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

	* anti.texi (Antinews): Mention `G' interactive code.

	* tips.texi (Compilation Tips): Mention benchmark.el.

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

	* modes.texi (Other Font Lock Variables): `font-lock-fontify-block'
	is now bound to M-o M-o.

	* keymaps.texi (Prefix Keys): `facemenu-keymap' is now on M-o.

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

	* calendar.texi: Delete file (and move contents to emacs-xtra.texi
	in the Emacs Manual).
	* Makefile.in (srcs): Remove calendar.texi.
	* makefile.w32-in (srcs): Remove calendar.texi.
	* display.texi (Display): Change name of next node.
	* os.texi (System In): Change name of previous node.
	* elisp.texi (Top): Remove Calendar references.
	* vol1.texi (Top): Remove Calendar references.
	* vol2.texi (Top): Remove Calendar references.

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

	* display.texi (Standard Faces, Fringe Bitmaps, Customizing Bitmaps):
	Cleanup previous change.

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

	* display.texi (Face Attributes): Faces earlier in an :inherit
	list take precedence.
	(Scroll Bars): Fix description of vertical-scroll-bars.
	Document frame-current-scroll-bars and window-current-scroll-bars.

	* markers.texi (The Mark): Document temporary Transient Mark mode.

	* minibuf.texi (Reading File Names):
	Document read-file-name-completion-ignore-case.

	* positions.texi (Screen Lines): Document nil for width argument
	to compute-motion.

2005-03-23  Kim F. Storm  <storm@cua.dk>

	* display.texi (Standard Faces): Other faces used in the fringe
	implicitly inherits from the fringe face.
	(Fringe Bitmaps): FACE in right-fringe and left-fringe display
	properties implicitly inherits from fringe face.
	(Customizing Bitmaps): Likewise for set-fringe-bitmap-face.

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

	* display.texi (Invisible Text): State default value of
	line-move-ignore-invisible.
	(Managing Overlays): Document remove-overlays.
	(Standard Faces): Document escape-glyph face.

	* minibuf.texi (Reading File Names): Document read-file-name-function.

	* modes.texi (Other Font Lock Variables):
	Document font-lock-lines-before.

	* positions.texi (Skipping Characters): skip-chars-forward allows
	character classes.

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

	* edebug.texi (Instrumenting Macro Calls): Fix another typo.

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

	* text.texi (Undo): Document extensible undo entries.

	* searching.texi (String Search, Regexp Search, Regexp Search):
	Cleanups.

	* nonascii.texi (Character Codes): Minor fix.

	* display.texi (Display Property): Explain the significance
	of having text properties that are eq.
	(Other Display Specs): Explain string as display spec.

	* commands.texi (Interactive Codes): Document G option.

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

	* text.texi (Filling): Add sentence-end-without-period and
	sentence-end-without-space.
	(Changing Properties): Minor fix.

	* anti.texi: Total rewrite.

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

	* edebug.texi (Instrumenting Macro Calls): Fix typos.

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

	* display.texi (Specified Space): Property :width is support on
	non-graphic terminals, :height is not.

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

	* display.texi (Overlay Arrow, Fringe Bitmaps, Customizing Bitmaps):
	Now subnodes of Fringes.
	(Overlay Arrow): Document overlay-arrow-variable-list.
	(Fringe Size/Pos): New node, broken out of Fringes.
	(Display): Explain clearing vs redisplay better.
	(Truncation): Clarify use of bitmaps.
	(The Echo Area): Clarify the uses of the echo area.
	Add max-mini-window-height.
	(Progress): Clarify.
	(Invisible Text): Explain that main loop moves point out.
	(Selective Display): Say "hidden", not "invisible".
	(Managing Overlays): Move up.  Describe relation to Undo here.
	(Overlay Properties): Clarify intro.
	(Finding Overlays): Explain return values when nothing found.
	(Width): truncate-string-to-width has added arg.
	(Displaying Faces): Clarify and update mode line face handling.
	(Face Functions): Minor cleanup.
	(Conditional Display): Merge into Other Display Specs.
	(Pixel Specification, Other Display Specs): Minor cleanups.
	(Images, Image Descriptors): Minor cleanups.
	(GIF Images): Patents have expired.
	(Showing Images): Explain default text for insert-image.
	(Manipulating Button Types): Merge into Manipulating Buttons.
	(Making Buttons): Explain return values.
	(Button Buffer Commands): Add xref.
	(Inverse Video): Update mode-line-inverse-video.
	(Display Table Format): Clarify.
	(Active Display Table): Give defaults for window-display-table.

	* calendar.texi (Calendar Customizing): calendar-holiday-marker
	and calendar-today-marker are strings, not chars.
	(Holiday Customizing): Minor fix.

	* internals.texi (Writing Emacs Primitives): Update `or' example.
	Update limit on # args of subr.

	* edebug.texi (Using Edebug): Arrow is in fringe.
	(Instrumenting): Arg to eval-defun works without loading edebug.
	(Edebug Execution Modes): Add xref.

	* customize.texi (Common Keywords): Clarify :require.
	Mention :version here.
	(Variable Definitions, Group Definitions): Not here.
	(Variable Definitions): Clarify symbol arg to :initialize and :set fns.

2005-03-07  Chong Yidong  <cyd@stupidchicken.com>
	* nonascii.texi (Text Representations): Clarify position-bytes.
	(Character Sets): Add list-charset-chars.
	(Scanning Charsets): Add charset-after.
	(Encoding and I/O): Minor fix.

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

	* windows.texi (Vertical Scrolling): Get rid of "Emacs 21".
	(Resizing Windows): Likewise.

	* text.texi (Change Hooks): Get rid of "Emacs 21".

	* strings.texi (Formatting Strings): Get rid of "Emacs 21".

	* streams.texi (Output Variables): Get rid of "Emacs 21".

	* searching.texi (Regexp Special, Char Classes): Get rid of "Emacs 21".

	* os.texi (Translating Input): Replace flow-control example
	with a less obsolete example that uses `keyboard-translate'.

	* objects.texi (Hash Table Type, Circular Objects):
	Get rid of "Emacs 21".

	* modes.texi (Mode Line Format): Get rid of "Emacs 21".
	(Mode Line Data, Properties in Mode, Header Lines): Likewise.

	* minibuf.texi (Minibuffer Misc): Get rid of "Emacs 21".

	* lists.texi (List Elements, Building Lists): Get rid of "Emacs 21".

	* keymaps.texi (Menu Separators, Tool Bar): Get rid of "Emacs 21".
	(Menu Bar): Fix when menu-bar-update-hook is called.

	* hash.texi (Hash Tables): Get rid of "Emacs 21".

	* frames.texi (Text Terminal Colors): Get rid of "Emacs 21",
	and make it read better.

	* files.texi (Writing to Files): Get rid of "Emacs 21".
	(Unique File Names): Likewise.

	* elisp.texi: Update Emacs version to 22.

	* display.texi (Forcing Redisplay): Get rid of "Emacs 21".
	(Overlay Properties, Face Attributes): Likewise.
	(Managing Overlays): Fix punctuation.
	(Attribute Functions): Clarify set-face-font; get rid of
	info about old Emacs versions.
	(Auto Faces, Font Lookup, Display Property, Images):
	Get rid of "Emacs 21".

	* calendar.texi (Calendar Customizing): Get rid of "Emacs 21".

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

	* debugging.texi (Error Debugging): Remove stack-trace-on-error.

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

	* debugging.texi (Error Debugging): Document stack-trace-on-error.

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

	* edebug.texi (Instrumenting Macro Calls): Fix typo.

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

	* debugging.texi (Debugger Commands): Update `j'.

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

	* debugging.texi (Debugging): Fix typo.
	(Error Debugging): Document eval-expression-debug-on-error.
	(Function Debugging): Update example.
	(Using Debugger): Mention starred stack frames.
	(Debugger Commands): Document `j' and `l'.
	(Invoking the Debugger): `d' and `j' exit recursive edit too.
	Update the messages that the debugger displays.
	(Internals of Debugger): Add cross reference.  Update example.
	(Excess Open): Minor improvement.
	(Excess Close): Minor improvement.

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

	* tips.texi (Coding Conventions): Clarify.
	Put all the major mode key reservations together.
	Mention the Mouse-1 => Mouse-2 conventions.

	* syntax.texi (Syntax Class Table): Clarify.
	(Syntax Table Functions): syntax-after moved from here.
	(Syntax Table Internals): syntax-after moved to here.
	(Parsing Expressions): Update info on number of values
	and what's meaningful in the STATE argument.
	(Categories): Fix typo.

	* sequences.texi (Arrays): Cleanup.
	(Char-Tables): Clarify.

	* processes.texi (Deleting Processes): Cleanups, add xref.
	(Subprocess Creation): Explain nil in exec-path.  Cleanup.
	(Process Information): set-process-coding-system, some args optional.
	(Input to Processes): Explain various types for PROCESS args.
	Rename them from PROCESS-NAME to PROCESS.
	(Signals to Processes): Likewise.
	(Decoding Output): Cleanup.
	(Query Before Exit): Clarify.

	* os.texi (Startup Summary): Correct the options; add missing ones.
	(Terminal Output, Batch Mode): Clarify.
	(Flow Control): Node deleted.

	* markers.texi (The Mark): Clarify.

	* macros.texi (Expansion): Cleanup.
	(Indenting Macros): indent-spec allows ints, not floats.

	* keymaps.texi (Keymaps): Clarify.
	(Format of Keymaps): Update lisp-mode-map example.
	(Active Keymaps, Key Lookup): Clarify.
	(Changing Key Bindings): Add xref to `kbd'.
	(Key Binding Commands, Simple Menu Items): Clarify.
	(Mouse Menus, Menu Bar): Clarify.
	(Menu Example): Replace print example with menu-bar-replace-menu.

	* help.texi (Documentation Basics): Add function-documentation prop.

	* elisp.texi (Top): Don't refer to Flow Control node.

	* commands.texi (Command Overview): Improve xrefs.
	(Adjusting Point): Adjusting point applies to intangible and invis.
	(Key Sequence Input): Doc extra read-key-sequence args.
	Likewise for read-key-sequence-vector.

	* backups.texi (Rename or Copy): Minor fix.
	(Numbered Backups): For version-control, say the default.
	(Auto-Saving): make-auto-save-file-name example is simplified.

	* advice.texi (Advising Functions): Don't imply one part of Emacs
	should advise another part.  Markup changes.
	(Defining Advice): Move transitional para.
	(Activation of Advice): Cleanup.
	Explain if COMPILE is nil or negative.

	* abbrevs.texi (Abbrev Expansion): Clarify, fix typo.

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

	* modes.texi (Defining Minor Modes): Explain that INIT-VALUE,
	LIGHTER, and KEYMAP can be omitted when KEYWORD-ARGS are used.

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

	* modes.texi (Defining Minor Modes): define-minor-mode can be used
	to define global minor modes as well.

	* display.texi (Managing Overlays): overlay-buffer returns nil for
	deleted overlays.

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

	* minibuf.texi (Basic Completion): Allow symbols in addition to
	strings in try-completion and all-completions.

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

	* elisp.texi (Top): Remove reference to deleted node.

	* lists.texi (Lists): Remove reference to deleted node.
	(Cons Cells): Fix typo.

	* loading.texi (Where Defined): Fix typo.

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

	* variables.texi (Creating Buffer-Local): change-major-mode-hook
	is useful for discarding some minor modes.

	* symbols.texi (Symbol Components): Reorder examples.

	* streams.texi (Input Functions): State standard-input default.
	(Output Variables): State standard-output default.

	* objects.texi (Printed Representation): Clarify read syntax vs print.
	(Floating Point Type): Explain meaning better.
	(Symbol Type): Explain uniqueness better.
	(Cons Cell Type): Explain empty list sooner.  CAR and CDR later.
	List examples sooner.
	(Box Diagrams): New subnode broken out.
	Some examples moved from old Lists as Boxes node.
	(Dotted Pair Notation): Clarify intro.
	(Array Type): Clarify.
	(Type Predicates): Add hash-table-p.

	* numbers.texi (Integer Basics): Clarify radix explanation.
	(Predicates on Numbers): Minor clarification.
	(Comparison of Numbers): Minor clarification.  Clarify eql.
	Typos in min, max.
	(Math Functions): Clarify overflow in expt.

	* minibuf.texi (Text from Minibuffer): Minor clarification.
	Mention arrow keys.

	* loading.texi (Autoload): defun's doc string overrides autoload's
	doc string.
	(Repeated Loading): Modernize "add to list" examples.
	(Where Defined): Finish updating table of load-history elts.

	* lists.texi (List-related Predicates): Minor wording improvement.
	(Lists as Boxes): Node deleted.
	(Building Lists): Explain trivial cases of number-sequence.

	* hash.texi (Hash Tables): Add desc to menu items.
	(Creating Hash): Expain "full" means "make larger",
	(Hash Access): Any object can be a key.
	State value of maphash.

	* functions.texi (What Is a Function): Wording cleanup.
	(Function Documentation): Minor cleanup.
	Explain purpose of calling convention at end of doc string.
	(Function Names): Wording cleanup.
	(Calling Functions): Wording cleanup.
	Explain better how funcall calls the function.
	(Function Cells): Delete example of saving and redefining function.

	* control.texi (Combining Conditions): Wording cleanup.
	(Iteration): dolist and dotimes bind VAR locally.
	(Cleanups): Xref to Atomic Changes.

	* compile.texi (Byte Compilation): Delete 19.29 info.
	(Compilation Functions): Macros' difficulties don't affect defsubst.
	(Docs and Compilation): Delete 19.29 info.

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

	* objects.texi (Symbol Type): Minor correction.

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

	* modes.texi (Example Major Modes): Fix typos.

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

	* text.texi (Margins): fill-nobreak-predicate can be one function.

	* strings.texi (Modifying Strings): clear-string can make unibyte.
	(Formatting Strings): format gives error if values missing.

	* positions.texi (Character Motion): Mention default arg
	for forward-char.  backward-char refers to forward-char.
	(Word Motion): Mention default arg for forward-word.
	(Buffer End Motion): Mention default arg for beginning-of-buffer.
	Simplify end-of-buffer.
	(Text Lines): Mention default arg for forward-line.
	(List Motion): Mention default arg for beginning/end-of-defun.
	(Skipping Characters): Minor fixes in explaining character-set.

	* modes.texi (Major Mode Conventions): Mention "system abbrevs".
	Mode inheritance applies only when default-major-mode is nil.
	Clarifications.
	(Example Major Modes): Update Text mode and Lisp mode examples.
	(Minor Mode Conventions): Mention define-minor-mode at top.
	(Defining Minor Modes): In Hungry example, don't define C-M-DEL.
	(Mode Line Format): Update mode line face display info.
	(Properties in Mode): Mention effect of risky vars.
	(Imenu): Define imenu-add-to-menubar.
	(Font Lock Mode): Add descriptions to menu lines.
	(Faces for Font Lock): Add font-lock-doc-face.

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

	* text.texi (Maintaining Undo): Remove obsolete function.

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

	* frames.texi (Color Names): Add pointer to the X docs about RGB
	color specifications.  Improve indexing
	(Text Terminal Colors): Replace the description of RGB values by
	an xref to "Color Names".

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

	* windows.texi (Basic Windows): Add cursor-in-non-selected-windows.
	Clarify.
	(Selecting Windows): Clarify save-selected-window.
	(Cyclic Window Ordering): Clarify walk-windows.
	(Window Point): Clarify.
	(Window Start): Add comment to example.
	(Resizing Windows): Add `interactive' specs in examples.
	Document fit-window-to-buffer.

	* text.texi (User-Level Deletion): just-one-space takes numeric arg.
	(Undo, Maintaining Undo): Clarify last change.
	(Sorting): In sort-numeric-fields, explain about octal and hex.
	Mention sort-numeric-base.
	(Format Properties): Add xref for hard newlines.

	* frames.texi (Window Frame Parameters): Explain pixel=char on tty.
	(Pop-Up Menus): Fix typo.
	(Color Names): Explain all types of color names.
	Explain color-values on B&W terminal.
	(Text Terminal Colors): Explain "rgb values" are lists.  Fix arg names.

	* files.texi (File Locks): Not supported on MS systems.
	(Testing Accessibility): Clarify.

	* edebug.texi (Printing in Edebug): Fix edebug-print-circle.
	(Coverage Testing): Fix typo.

	* commands.texi (Misc Events): Remove stray space.

	* buffers.texi (Buffer Names): Clarify generate-new-buffer-name.
	(Modification Time): Clarify when visited-file-modtime returns 0.
	(The Buffer List): Clarify bury-buffer.
	(Killing Buffers): Clarify.
	(Indirect Buffers): Add clone-indirect-buffer.

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

	* edebug.texi (Printing in Edebug): Fix default value of
	edebug-print-circle.
	(Coverage Testing): Fix displayed frequency count data.

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

	* text.texi (Maintaining Undo): Add `undo-outer-limit'.

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

	* text.texi (Undo) <buffer-undo-list>: Describe `apply' elements.

2005-01-29  Eli Zaretskii  <eliz@gnu.org>

	* commands.texi (Misc Events): Describe the help-echo event.

	* text.texi (Special Properties) <help-echo>: Use `pos'
	consistently in description of the help-echo property.
	Use @code{nil} instead of @var{nil}.

	* display.texi (Overlay Properties): Fix the index entry for
	help-echo overlay property.

	* customize.texi (Type Keywords): Uncomment the xref to the
	help-echo property documentation.

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

	* windows.texi (Window Start): Fix `pos-visible-in-window-p'
	return value.  Third element FULLY replaced by PARTIAL which
	specifies number of invisible pixels if row is only partially visible.
	(Textual Scrolling): Mention auto-window-vscroll.
	(Vertical Scrolling): New defvar auto-window-vscroll.

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

	* keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses
	command remapping.

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

	* display.texi (Defining Images): Mention DATA-P arg of create-image.

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

	* commands.texi (Accessing Events): Add WHOLE arg to posn-at-x-y.

	* text.texi (Links and Mouse-1): Fix string and vector item.

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

	* keymaps.texi (Active Keymaps): Rewrite the text, and update the
	descriptions of overriding-local-map and overriding-terminal-local-map.

	* text.texi (Links and Mouse-1): Clarify text.

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

	* modes.texi (Emulating Mode Line): Update format-mode-line entry.

2005-01-13  Francis Litterio  <franl@world.std.com>  (tiny change)

	* keymaps.texi (Active Keymaps): Fix overriding-local-map description.

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

	* text.texi (Links and Mouse-1): Rename section from Enabling
	Mouse-1 to Following Links.  Change xrefs.
	Add examples for define-button-type and define-widget.

	* display.texi (Button Properties, Button Buffer Commands):
	Clarify mouse-1 and follow-link functionality.

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

	* text.texi (Enabling Mouse-1 to Follow Links): Redo prev. change.

	* display.texi (Beeping): Fix Texinfo usage.

	* modes.texi (Emulating Mode Line): Doc FACE arg in format-header-line.

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

	* display.texi (Button Properties, Button Buffer Commands):
	Mention mouse-1 binding.  Add follow-link keyword.

	* text.texi (Text Properties): Add "Enable Mouse-1" to submenu.
	(Enabling Mouse-1 to Follow Links): New subsection.

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

	* text.texi (Special Properties): Minor change.

	* os.texi (Timers): Clarify previous change.

	* modes.texi (Emulating Mode Line): format-mode-line requires 1 arg.

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

	* display.texi (Face Attributes): Correct xref to renamed node.

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

	* display.texi (Face Attributes): Describe hex color specs.

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

	* os.texi (Timers): Update previous change.

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

	* display.texi (Line Height): Total line-height is now specified
	in line-height property of form (HEIGHT TOTAL).  Swap (FACE . RATIO)
	in cons cells.  (nil . RATIO) is relative to actual line height.
	Use line-height `t' instead of `0' to get minimum height.

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

	* os.texi (Timers): Discuss timers vs editing the buffer and undo.

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

	* commands.texi (Quitting): Clarify value of with-local-quit.

	* elisp.texi (Top): Fix previous change.

	* loading.texi (Loading): Fix previous change.

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

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

	* buffers.texi (Killing Buffers): Add buffer-save-without-query.

	* modes.texi (Emulating Mode Line): Document format's BUFFER arg.

	* display.texi (Line Height): Further clarify.

	* elisp.texi (Top): Update Loading submenu.

	* loading.texi (Where Defined): New node.
	(Unloading): load-history moved to Where Defined.

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

	* commands.texi (Event Input Misc): Add while-no-input.

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

	* display.texi (Line Height): Rewrite text for clarity.

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

	* display.texi (Display): Add node "Line Height" to menu.
	(Line Height): New node.  Move full description of line-spacing
	and line-height text properties here from text.texi.
	(Scroll Bars): Add vertical-scroll-bar variable.

	* frames.texi (Window Frame Parameters): Remove line-height defvar.

	* locals.texi (Standard Buffer-Local Variables): Fix xref for
	line-spacing and vertical-scroll-bar.

	* text.texi (Special Properties): Just mention line-spacing and
	line-height here, add xref to new "Line Height" node.

2004-12-09  Thien-Thi Nguyen  <ttn@gnu.org>

	* frames.texi (Window Frame Parameters): New @defvar for `line-spacing'.

	* locals.texi (Standard Buffer-Local Variables):
	Add @xref for `line-spacing'.

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

	* Makefile.in (maintainer-clean): Remove the info files
	in $(infodir) where they are created.

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

	* windows.texi (Selecting Windows): get-lru-window and
	get-largest-window don't consider dedicated windows.

	* text.texi (Undo): Document undo-in-progress.

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

	* locals.texi (Standard Buffer-Local Variables): Undo prev change.
	Remove a few vars that are not always buffer-local.

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

	* locals.texi (Standard Buffer-Local Variables): Comment out
	xref's to non-existent node `Yet to be written'.

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

	* processes.texi (Synchronous Processes): Grammar fix.

	* numbers.texi (Comparison of Numbers): Add eql.

	* locals.texi (Standard Buffer-Local Variables): Add many vars.

	* intro.texi (Printing Notation): Fix previous change.

	* display.texi (Customizing Bitmaps): Move indicate-buffer-boundaries
	and default-indicate-buffer-boundaries from here.
	(Usual Display): To here.
	(Scroll Bars): Add scroll-bar-mode and scroll-bar-width.
	(Usual Display): Move tab-width up.

	* customize.texi (Variable Definitions): Replace
	show-paren-mode example with tooltip-mode.
	(Simple Types, Composite Types, Defining New Types):
	Minor cleanups.

2004-11-21  Jesper Harder  <harder@ifa.au.dk>

	* processes.texi (Synchronous Processes, Output from Processes):
	Markup fix.

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

	* positions.texi (Skipping Characters): skip-chars-forward
	now handles char classes.

	* intro.texi (Printing Notation): Avoid confusion of `print'
	when explaining @print.

	* macros.texi (Argument Evaluation): Fix 1st `for' expansion example.

	* display.texi (Display Table Format): Minor fix.

	* streams.texi (Output Functions): Fix print example.

	* Makefile.in (elisp): New target.
	(dist): Depend on $(infodir)/elisp, not elisp.
	Copy the info files from $(infodir).

	* minibuf.texi (Text from Minibuffer): Document KEEP-ALL arg in
	read-from-minibuffer.

	* searching.texi (Regexp Search): Rename that to search-spaces-regexp.

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

	* searching.texi (Regexp Search): Add search-whitespace-regexp.

2004-11-19  CHENG Gao  <chenggao@gmail.com>  (tiny change)

	* tips.texi (Coding Conventions): Fix typo.

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

	* tips.texi (Coding Conventions): Separate defvar and require
	methods to avoid warnings.  Use require only when there are many
	functions and variables from that package.

	* minibuf.texi (Minibuffer Completion): When ignoring case,
	predicate must not be case-sensitive.

	* debugging.texi (Function Debugging, Explicit Debug): Clarified.
	(Test Coverage): Don't talk about "splotches".  Clarified.

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

	* frames.texi (Window Frame Parameters): Fix typo.

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

	* symbols.texi (Other Plists): Note that plist-get may signal error.
	Add safe-plist-get.

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

	* modes.texi (Font Lock Basics): Fix typo.

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

	* syntax.texi (Syntax Table Functions): Add syntax-after.

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

	* os.texi (Processor Run Time): New section documenting
	get-internal-run-time.

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

	* Makefile.in (install, maintainer-clean): Don't use "elisp-*" as
	it nukes elisp-cover.texi.
	(dist): Change elisp-[0-9] to elisp-[1-9], as there could be no
	elisp-0 etc.

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

	* commands.texi (Keyboard Macros): Document `append' return value
	of `defining-kbd-macro'.

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

	* commands.texi (Interactive Call): Add called-interactively-p.

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

	* minibuf.texi (Reading a Password): Revert.

2004-10-28  Richard M. Stallman  <rms@gnu.org>

	* frames.texi (Display Feature Testing): Explain about "vendor".

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

	* commands.texi (Interactive Codes): `N' uses numeric prefix,
	not raw.  Clarify `n'.
	(Interactive Call): Rewrite interactive-p, focusing on when
	and how to use it.
	(Misc Events): Clarify previous change.

	* advice.texi (Simple Advice): Clarify what job the example does.
	(Around-Advice): Clarify ad-do-it.
	(Activation of Advice): An option of ad-default-compilation-action
	is `never', not `nil'.

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

	* commands.texi (Interactive Codes): Add U code letter.

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

	* minibuf.texi (Reading a Password): Add.

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

	* commands.texi (Misc Events): Remove mouse-wheel. Add wheel-up
	and wheel-down.

2004-10-24  Kai Grossjohann  <kai.grossjohann@gmx.net>

	* processes.texi (Synchronous Processes): Document process-file.

2004-10-22  Kenichi Handa  <handa@m17n.org>

	* text.texi (translate-region): Document that it accepts also a
	char-table.

2004-10-22  David Ponce  <david@dponce.com>

	* windows.texi (Resizing Windows): Document the `preserve-before'
	argument of the functions `enlarge-window' and `shrink-window'.

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

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

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

	* text.texi (Filling): Add anchor for definition of
	`sentence-end-double-space'.

	* searching.texi (Regexp Example): Update description of how
	Emacs currently recognizes the end of a sentence.
	(Standard Regexps): Update definition of the variable
	`sentence-end'.  Add definition of the function `sentence-end'.

2004-10-08  Paul Pogonyshev  <pogonyshev@gmx.net>

	* display.texi (Progress): New node.

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

	* display.texi (Fringe Bitmaps): Update fringe-bitmaps-at-pos.

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

	* display.texi (Fringe Bitmaps): Use symbols rather than numbers
	to identify bitmaps.  Remove -fringe-bitmap suffix for standard
	fringe bitmap symbols, as they now have their own namespace.
	(Customizing Bitmaps) <define-fringe-bitmap>: Clarify bit ordering
	vs. pixels.  Signal error if no free bitmap slots.
	(Pixel Specification): Change IMAGE to @var{image}.

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

	* text.texi (Special Properties): Clarify line-spacing and line-height.

	* searching.texi (Regexp Search): Add looking-back.

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

	* display.texi: Correct typos.
	(Image Descriptors): Correct xref's.

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

	* text.texi (Special Properties): Cleanups in `cursor'.
	Rewrites in `line-height' and `line-spacing'; exchange them.

	* display.texi (Fringes): Rewrite previous change.
	(Fringe Bitmaps): Merge text from Display Fringe Bitmaps.  Rewrite.
	(Display Fringe Bitmaps): Node deleted, text moved.
	(Customizing Bitmaps): Split off from Fringe Bitmaps.  Rewrite.
	(Scroll Bars): Clarify set-window-scroll-bars.
	(Pointer Shape): Rewrite.
	(Specified Space): Clarify :align-to, etc.
	(Pixel Specification): Use @var.  Clarify new text.
	(Other Display Specs): Clarify `slice'.
	(Image Descriptors): Cleanups.
	(Showing Images): Cleanups.

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

	* hooks.texi (Standard Hooks): Add `after-change-major-mode-hook'.

	* modes.texi: Various minor changes in addition to:
	(Major Mode Conventions): Final call to `run-mode-hooks' should
	not be inside the `delay-mode-hooks' form.
	(Mode Hooks): New node.
	(Hooks): Delete obsolete example.
	Move definitions of `run-mode-hooks' and `delay-mode-hooks' to new
	node "Mode Hooks".

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

	* display.texi: Correct various typos.
	(Display): Rename node "Pointer Shapes" to "Pointer
	Shape".  (There is already a node called "Pointer Shapes" in
	frames.texi.)
	(Images): Remove non-existent node "Image Slices" from menu.

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

	* text.texi (Special Properties): Add `cursor', `pointer',
	`line-height', and `line-spacing' properties.

	* display.texi (Display): Add 'Fringe Bitmaps' and 'Pointer
	Shapes' to menu.
	(Standard Faces): Doc fix for fringe face.
	(Fringes): Add `overflow-newline-into-fringe' and
	'indicate-buffer-boundaries'.
	(Fringe Bitmaps, Pointer Shapes): New nodes.
	(Display Property): Add 'Pixel Specification' and 'Display Fringe
	Bitmaps' to menu.
	(Specified Space): Describe pixel width and height.
	(Pixel Specification): New node.
	(Other Display Specs): Add `slice' property.
	(Display Fringe Bitmaps): New node.
	(Images): Add 'Image Slices' to menu.
	(Image Descriptors): Add `:pointer' and `:map' properties.
	(Showing Images): Add slice arg to `insert-image'.  Add
	'insert-sliced-image'.

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

	* commands.texi (Key Sequence Input):
	Clarify downcasing in read-key-sequence.

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

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

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

	* locals.texi (Standard Buffer-Local Variables): Add
	`buffer-auto-save-file-format'.
	* internals.texi (Buffer Internals): Describe new
	auto_save_file_format field of the buffer structure.
	* files.texi (Format Conversion): `auto-save-file-format' has been
	renamed `buffer-auto-save-file-format'.

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

	* abbrevs.texi (Abbrev Expansion): `abbrev-start-location' can be
	an integer or a marker.
	(Abbrev Expansion): Replace example for `pre-abbrev-expand-hook'.

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

	* modes.texi (Major Mode Conventions): Discuss rebinding of
	standard key bindings.

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

	* processes.texi (Accepting Output): Add `just-this-one' arg to
	`accept-process-output'.
	(Output from Processes): New var `process-adaptive-read-buffering'.

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

	* keymaps.texi: Various changes in addition to:
	(Keymap Terminology): `kbd' uses same syntax as Edit Macro mode.
	Give more varied examples for `kbd'.
	(Creating Keymaps): Char tables have slots for all characters
	without modifiers.
	(Active Keymaps): `overriding-local-map' and
	`overriding-terminal-local-map' also override text property and
	overlay keymaps.
	(Functions for Key Lookup): Mention OLP arg to `current-active-maps'.
	(Scanning Keymaps): `accessible-keymaps' uses `[]' instead of `""'
	to denote a prefix of no events.
	`map-keymap' includes parent's bindings _recursively_.
	Clarify and correct description of `where-is-internal'.
	Mention BUFFER-OR-NAME arg to `describe-bindings'.
	(Menu Example): For menus intended for use with the keyboard, the
	menu items should be bound to characters or real function keys.

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

	* objects.texi (Character Type): Reposition `@anchor' to prevent
	double space inside sentence in Info.

	* hooks.texi (Standard Hooks): `disabled-command-hook' has been
	renamed to `disabled-command-function'.
	* commands.texi (Key Sequence Input): Remove unnecessary anchor.
	(Command Loop Info): Replace reference to it.
	(Disabling Commands): `disabled-command-hook' has been renamed to
	`disabled-command-function'.

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

	* os.texi (Translating Input): Only non-prefix bindings in
	`key-translation-map' override actual key bindings.  Warn about
	possible indirect effect of actual key bindings on non-prefix
	bindings in `key-translation-map'.

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

	* minibuf.texi (High-Level Completion): Add anchor for definition
	of `read-variable'.

	* commands.texi: Various changes in addition to:
	(Using Interactive): Clarify description of `interactive-form'.
	(Interactive Call): Mention default for KEYS argument to
	`call-interactively'.
	(Command Loop Info): Clarify description of `this-command-keys'.
	Mention KEEP-RECORD argument to `clear-this-command-keys'.
	Value of `last-event-frame' can be `macro'.
	(Repeat Events): `double-click-fuzz' is also used to distinguish
	clicks and drags.
	(Classifying Events): Clarify descriptions of `event-modifiers'
	`event-basic-type' and `event-convert-list'.
	(Accessing Events): `posn-timestamp' takes POSITION argument.
	(Quoted Character Input): Clarify description of
	`read-quoted-char' and fix example.
	(Quitting): Add `with-local-quit'.
	(Disabling Commands):  Correct and clarify descriptions of
	`enable-command' and `disable-command'.
	Mention what happens if `disabled-command-hook' is nil.
	(Keyboard Macros): Mention LOOPFUNC arg to `execute-kbd-macro'.
	Describe `executing-kbd-macro' instead of obsolete `executing-macro'.

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

	* frames.texi: Various changes in addition to:
	(Creating Frames): Expand and clarify description of `make-frame'.
	(Window Frame Parameters): Either none or both of the `icon-left'
	and `icon-top' parameters must be specified.  Put descriptions of
	`menu-bar-lines' and `toolbar-lines' closer together and change
	them accordingly.
	(Frame Titles): `multiple-frames' is not guaranteed to be accurate
	except while processing `frame-title-format' or `icon-title-format'.
	(Deleting Frames): Correct description of `delete-frame'.
	Non-nil return values of `frame-live-p' are like those of `framep'.
	(Frames and Windows): mention return value of
	`set-frame-selected-window'.
	(Visibility of Frames): Mention `force' argument to
	`make-frame-invisible'.  `frame-visible-p' returns t for all
	frames on text-only terminals.
	(Frame Configurations): Restoring a frame configuration does not
	restore deleted frames.
	(Window System Selections): `x-set-selection' returns DATA.
	(Resources): Add example.
	(Display Feature Testing): Clarify descriptions of
	`display-pixel-height', `display-pixel-width', `x-server-version'
	and `x-server-vendor'.

	* windows.texi (Choosing Window): Add anchor.
	* minibuf.texi (Minibuffer Misc): Add anchor.

2004-07-23  John Paul Wallington  <jpw@gnu.org>

	* macros.texi (Defining Macros): Declaration keyword for setting
	Edebug spec is `debug' not `edebug'.

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

	* windows.texi: Various small changes in addition to:
	(Window Point): Mention return value of `set-window-point'.
	(Window Start): `pos-visible-in-window-p' disregards horizontal
	scrolling.  Explain return value if PARTIALLY is non-nil.
	(Vertical Scrolling): Mention PIXELS-P argument to `window-vscroll'
	and `set-window-vscroll'.
	(Size of Window): The argument WINDOW to `window-inside-edges',
	`window-pixel-edges' and `window-inside-pixel-edges' is optional.
	(Resizing Windows): Explain return value of
	`shrink-window-if-larger-than-buffer'.
	`window-size-fixed' automatically becomes buffer local when set.
	(Window Configurations): Explain return value of
	`set-window-configuration'.

	* minibuf.texi (Minibuffer Misc): Add anchor for
	`minibuffer-scroll-window'.

	* positions.texi (Text Lines): Add anchor for `count-lines'.

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

	* display.texi (Overlay Properties): Adding `evaporate' prop
	deletes empty overlay immediately.

	* abbrevs.texi (Abbrev Expansion): Clarify pre-abbrev-expand-hook,
	fix example.

2004-07-16  Jim Blandy  <jimb@redhat.com>

	* searching.texi (Regexp Backslash): Document new \_< and \_>
	operators.

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

	* display.texi (Images): Fix Texinfo usage.

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

	* buffers.texi (Modification Time): `visited-file-modtime' now
	returns a list of two integers, instead of a cons.

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

	* windows.texi: Various changes in addition to:
	(Splitting Windows): Add `split-window-keep-point'.

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

	* frames.texi (Input Focus): Minor fix.

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

	* frames.texi (Input Focus): Clarify descriptions of
	`select-frame-set-input-focus' and `select-frame'.

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

	* os.texi: Various small changes in addition to:
	(Killing Emacs): Expand and clarify description of
	`kill-emacs-query-functions' and `kill-emacs-hook'.
	(System Environment): Expand and clarify description of `getenv'
	and `setenv'.
	(Timers): Clarify description of `run-at-time'.
	(Translating Input): Correct description of
	`extra-keyboard-modifiers'.
	(Flow Control): Correct description of `enable-flow-control'.

2004-07-06  Thien-Thi Nguyen  <ttn@gnu.org>

	* os.texi: Update copyright.
	(Session Management): Grammar fix.
	Clarify which Emacs does the restarting.
	Use @samp for *scratch* buffer.

2004-07-04  Alan Mackenzie  <acm@muc.de>

	* frames.texi (Input Focus): Add documentation for
	`select-frame-set-input-focus'.  Replace refs to non-existent
	`switch-frame' with `select-frame'.  Minor corrections and tidying
	up of text-only terminal stuff.

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

	* files.texi (Saving Buffers): Cleanup write-contents-function.
	(Magic File Names): Cleanup file-remote-p.

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

	* files.texi (Magic File Names): `file-remote-p' returns an
	identifier of the remote system, not just t.

2004-07-02  David Kastrup  <dak@gnu.org>

	* searching.texi (Entire Match Data): Add explanation about new
	match-data behavior when @var{integers} is non-nil.

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

	* commands.texi (Misc Events): Describe usr1-signal, usr2-signal event.

	* customize.texi (Variable Definitions): Note about doc strings
	and :set.

	* keymaps.texi (Keymap Terminology): Document `kbd'.
	(Changing Key Bindings, Key Binding Commands): Use kbd in examples.

	* display.texi (Invisible Text): Setting buffer-invisibility-spec
	makes it buffer-local.

	* files.texi (Saving Buffers): Correct previous change.

	* commands.texi (Accessing Events):
	Clarify posn-col-row and posn-actual-col-row.

2004-06-24  David Ponce  <david.ponce@wanadoo.fr>

	* commands.texi (Accessing Events): New functions
	posn-at-point and posn-at-x-y.  Add example to posn-x-y.

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

	* lists.texi, files.texi, processes.texi, macros.texi, hash.texi:
	* frames.texi, buffers.texi, backups.texi, variables.texi:
	* loading.texi, eval.texi, functions.texi, control.texi:
	* symbols.texi, minibuf.texi: Reposition @anchor's.

	* help.texi: Various small changes in addition to the following.
	(Describing Characters): Describe PREFIX argument to
	`key-description'.  Correct and clarify definition of
	`text-char-description'.  Describe NEED-VECTOR argument to
	`read-kbd-macro'.
	(Help Functions): Clarify definition of `apropos'.

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

	* files.texi (Saving Buffers): Correct description of
	`write-contents-functions'.

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

	* display.texi (Images): Remove redundant @vindex directives.
	Rewrite `image-library-alist' doc in active voice.

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

	* display.texi (Images): Document new delayed library loading,
	variable `image-library-alist' and (existing but undocumented)
	function `image-type-available-p'.

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

	* minibuf.texi (Minibuffer Completion): For INITIAL arg,
	refer the user to the Initial Input node.
	(Text from Minibuffer): Likewise.
	(Initial Input): New node.  Document this feature
	and say it is mostly deprecated.

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

	* loading.texi (Named Features): Clarify return value
	and meaning of NOERROR.

	* variables.texi (File Local Variables): Minor cleanup.

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

	* files.texi (Magic File Names): Add `file-remote-p' as operation
	of file name handlers.

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

	* modes.texi (Minor Mode Conventions): (-) has no special meaning
	as arg to a minor mode command.

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

	* syntax.texi (Syntax Class Table): Word syntax not just for English.

	* streams.texi (Output Variables): Doc float-output-format.

	* searching.texi (Regexp Special): Nested repetition can be infloop.

	* eval.texi (Eval): Increasing max-lisp-eval-depth can cause
	real stack overflow.

	* compile.texi: Minor cleanups.

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

	* lists.texi (Cons Cells): Explain dotted lists, true lists,
	circular lists.
	(List Elements): Explain handling of circular and dotted lists.

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

	* modes.texi (Search-based Fontification): Fix typo.

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

	* modes.texi (Mode Line Variables): Fix description of
	global-mode-string, which is now after which-func-mode, not the
	buffer name.

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

	* modes.texi (Desktop Save Mode): Add.
	(Modes): Add menu entry Desktop Save Mode.

	* hooks.texi: Add desktop-after-read-hook,
	desktop-no-desktop-file-hook and desktop-save-hook.

	* locals.texi: Add desktop-save-buffer.

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

	* display.texi: emacs -> Emacs.

2004-04-27  Matthew Mundell  <matt@mundell.ukfsn.org>

	* files.texi (Changing Files): Document set-file-times.

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

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

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

	* tips.texi (Coding Conventions): defopt -> defcustom.

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

	* sequences.texi: Various clarifications.

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

	* buffers.texi (Read Only Buffers): Mention optional ARG to
	`toggle-read-only'.

2004-04-14  Nick Roberts  <nick@nick.uklinux.net>

	* windows.texi (Selecting Windows): Note that get-lru-window
	returns a full-width window if possible.

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

	* buffers.texi: Various changes in addition to:
	(Buffer File Name): Add `find-buffer-visiting'.
	(Buffer Modification): Mention optional ARG to `not-modified'.
	(Indirect Buffers): Mention optional CLONE argument to
	`make-indirect-buffer'.

	* files.texi: Various changes in addition to:
	(Visiting Functions): `find-file-hook' is now a normal hook.
	(File Name Expansion): Explain difference between the way that
	`expand-file-name' and `file-truename' treat `..'.
	(Contents of Directories): Mention optional ID-FORMAT argument to
	`directory-files-and-attributes'.
	(Format Conversion): Mention new optional CONFIRM argument to
	`format-write-file'.

2004-04-12  Miles Bader  <miles@gnu.org>

	* macros.texi (Expansion): Add description of `macroexpand-all'.

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

	* variables.texi (Variable Aliases): Mention
	cyclic-variable-indirection.

	* errors.texi (Standard Errors): Ditto.

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

	* backups.texi:  Various small changes in addition to:
	(Making Backups): Mention return value of `backup-buffer'.
	(Auto-Saving): Mention optional FORCE argument to
	`delete-auto-save-file-if-necessary'.
	(Reverting): Mention optional PRESERVE-MODES argument to
	`revert-buffer'.  Correct description of `revert-buffer-function'.

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

	* sequences.texi (Sequence Functions): Replace xref to `Vectors'
	with `Vector Functions'.

	* text.texi (Sorting): Add missing quote.

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

	* intro.texi (Lisp History): Replace xref to `cl' manual with
	inforef.

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

	* intro.texi (Version Info): Add arg to emacs-version.
	(Lisp History): Change xref to CL manual.

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

	* minibuf.texi (Completion Commands): Add xref to Emacs manual
	for Partial Completion mode.

2004-03-07  Thien-Thi Nguyen  <ttn@gnu.org>

	* customize.texi: Fix typo. Remove eol whitespace.

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

	* processes.texi: Fix typos.

	* lists.texi (Building Lists): Minor clarification.

	* hash.texi (Creating Hash): Correct the meaning of t for WEAK
	in make-hash-table.

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

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

2004-02-27  Dan Nicolaescu  <dann@ics.uci.edu>

	* display.texi (Defining Faces): Add description for min-colors.
	Update example.

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

	* abbrevs.texi: Various corrections and clarifications in addition
	to the following:
	(Abbrev Tables): Delete add-abbrev (as suggested by RMS).

2004-02-22  Matthew Mundell  <matt@mundell.ukfsn.org>  (tiny change)

	* calendar.texi (Holiday Customizing): Quote arg of holiday-sexp.

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

	* text.texi: Various small changes in addition to the following:
	(User-Level Deletion): Mention optional BACKWARD-ONLY argument
	to delete-horizontal-space.
	(Kill Functions, Yanking, Low-Level Kill Ring): clarify and correct
	description of yank-handler text property at various places.

	* frames.texi (Window System Selections): Add anchor.

	* syntax.texi (Syntax Table Functions): Clarify and correct
	descriptions of make-syntax-table and copy-syntax-table.
	(Motion and Syntax): Clarify SYNTAXES argument to
	skip-syntax-forward.
	(Parsing Expressions): Mention that the return value of
	parse-partial-sexp is currently a list of ten rather than nine
	elements.
	(Categories): Various corrections and clarifications.

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

	* markers.texi (Marker Insertion Types): Minor change.

	* locals.texi (Standard Buffer-Local Variables):
	* commands.texi (Interactive Codes, Using Interactive):
	* functions.texi (Related Topics): Fix xrefs.

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

	* lists.texi (Sets And Lists): Update description of delete-dups.

2004-02-16  Jesper Harder  <harder@ifa.au.dk>  (tiny change)

	* keymaps.texi (Tool Bar): tool-bar-item => tool-bar-button.

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

	* frames.texi (Parameter Access): frame-parameters arg is optional.
	modify-frame-parameters handles nil for FRAME.
	(Window Frame Parameters): menu-bar-lines and tool-bar-lines
	are all-or-nothing for certain toolkits.
	Mention parameter wait-for-wm.
	(Frames and Windows): In frame-first-window and frame-selected-window
	the arg is optional.
	(Input Focus): In redirect-frame-focus the second arg is optional.
	(Window System Selections): Mention selection type CLIPBOARD.
	Mention data-type UTF8_STRING.
	Mention numbering of cut buffers.
	(Resources): Describe x-resource-name.

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

	* windows.texi (Buffers and Windows): Delete false table
	about all-frames.

	* syntax.texi (Parsing Expressions): Delete old caveat
	about parse-sexp-ignore-comments.

	* streams.texi (Output Variables): Add print-quoted.

	* lists.texi (Building Lists): Minor cleanup.

	* hash.texi (Creating Hash): Correct and clarify doc of WEAK values.

	* display.texi (Overlays): Explain overlays use markers.
	(Managing Overlays): Explain front-advance and rear-advance
	in more detail.

	* loading.texi (Unloading): Document unload-feature-special-hooks.
	Get rid of fns-NNN.el file.

2004-02-16  Matthew Mundell  <matt@mundell.ukfsn.org>  (tiny change)

	* help.texi (Describing Characters): Fix text-char-description
	example output.

	* edebug.texi (Using Edebug): Fix example.

	* debugging.texi (Internals of Debugger): Fix return value.

	* files.texi (Changing Files): Fix argname.

	* calendar.texi: Fix parens, and default values.

	* display.texi, frames.texi, internals.texi, modes.texi: Minor fixes.
	* nonascii.texi, objects.texi, os.texi: Minor fixes.
	* searching.texi, text.texi, tips.texi, windows.text: Minor fixes.

	* positions.texi (Text Lines): Don't add -1 in current-line.

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

	* compile.texi (Compiler Errors): if-boundp feature applies to cond.

2004-02-16  Jesper Harder  <harder@ifa.au.dk>  (tiny change)

	* processes.texi (Low-Level Network): Fix a typo.

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

	* display.texi (Fringes): Use consistent wording.
	Note that window-fringe's window arg is optional.
	(Scroll Bars): Use consistent wording.

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

	* tips.texi (Comment Tips): Document the new conventions for
	commenting out code.

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

	* positions.texi (Text Lines): Added missing end defun.

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

	* positions.texi (Text Lines): Add line-number-at-pos.

2004-02-06  John Paul Wallington  <jpw@gnu.org>

	* display.texi (Button Properties, Button Buffer Commands):
	mouse-2 invokes button, not down-mouse-1.

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

	* makefile.w32-in: Sync with Makefile.in changes.

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

	* minibuf.texi (Text from Minibuffer): Various corrections and
	clarifications.
	(Object from Minibuffer): Correct Lisp description of
	read-minibuffer.
	(Minibuffer History): Clarify description of cons values for
	HISTORY arguments.
	(Basic Completion): Various corrections and clarifications.  Add
	completion-regexp-list.
	(Minibuffer Completion): Correct and clarify description of
	completing-read.
	(Completion Commands): Mention Partial Completion mode.  Various
	other minor changes.
	(High-Level Completion): Various corrections and clarifications.
	(Reading File Names): Ditto.
	(Minibuffer Misc): Ditto.

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

	* strings.texi (Text Comparison): assoc-string also matches
	elements of alists that are strings instead of conses.
	(Formatting Strings): Standardize Texinfo usage.  Update index
	entries.

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

	* lists.texi (Sets And Lists): Add delete-dups.

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

	* edebug.texi (Instrumenting Macro Calls): `declare' is not a
	special form.
	* macros.texi (Defining Macros): Update description of `declare',
	which now is a macro.
	(Wrong Time): Fix typos.

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

	* compile.texi (Compilation Functions): Expand descriptions of
	`compile-defun', `byte-compile-file', `byte-recompile-directory'
	and `batch-byte-compile'.  In particular, mention and describe
	all optional arguments.
	(Disassembly): Correct and clarify the description of `disassemble'.

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

	* searching.texi: Various small changes in addition to the
	following.
	(Regexp Example): Adapt to new value of `sentence-end'.
	(Regexp Functions): The PAREN argument to `regexp-opt' can be
	`words'.
	(Search and Replace): Add usage note for `perform-replace'.
	(Entire Match Data): Mention INTEGERS and REUSE arguments to
	`match-data'.
	(Standard Regexps): Update for new values of `paragraph-start'
	and `sentence-end'.

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

	* files.texi (Saving Buffers): Clarify descriptions of
	`write-contents-functions' and `before-save-hook'.
	Make the defvar's for `before-save-hook' and `after-save-hook'
	into defopt's.

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

	* commands.texi (Click Events): Describe new image and
	width/height elements of click events.
	(Accessing Events): Add posn-string, posn-image, and
	posn-object-width-height.  Change posn-object to return either
	image or string object.

2004-01-01  Simon Josefsson  <jas@extundo.com>

	* hooks.texi (Standard Hooks): Add before-save-hook.
	* files.texi (Saving Buffers): Likewise.

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

	* frames.texi (Frames and Windows): Delete frame-root-window.

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

	* eval.texi, hash.texi, help.texi, symbols.texi: Add anchors.

	* functions.texi: Various small changes in addition to the
	following.
	(What Is a Function): `functionp' returns nil for macros.  Clarify
	behavior of this and following functions for symbol arguments.
	(Function Documentation): Add `\' in front of (fn @var{arglist})
	and explain why.
	(Defining Functions): Mention DOCSTRING argument to `defalias'.
	Add anchor.
	(Mapping Functions): Add anchor.  Unquote nil in mapcar* example.

2004-01-01  Miles Bader  <miles@gnu.org>

	* display.texi (Buttons): New section.

2003-12-31  Andreas Schwab  <schwab@suse.de>

	* numbers.texi (Math Functions): sqrt reports a domain-error
	error.
	(Float Basics): Use `(/ 0.0 0.0)' instead of `(sqrt -1.0)'.

2003-12-30  Luc Teirlinck  <teirllm@auburn.edu>

	* tips.texi (Documentation Tips): Update item on hyperlinks in
	documentation strings.

	* errors.texi (Standard Errors): Various small corrections and
	additions.

	* control.texi: Various small changes in addition to the
	following.
	(Signaling Errors): Provide some more details on how `signal'
	constructs the error message.  Add anchor to the definition of
	`signal'.
	(Error Symbols): Describe special treatment of `quit'.
	(Cleanups): Rename BODY argument of `unwind-protect' to BODY-FORM
	to emphasize that it has to be a single form.

	* buffers.texi: Add anchor.

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

	* windows.texi (Choosing Window): Add same-window-p, special-display-p.
	(Window Configurations): Add window-configuration-frame.

	* variables.texi (Creating Buffer-Local): Add local-variable-if-set-p.

	* text.texi (Examining Properties): Add get-char-property-and-overlay.
	Change arg name in get-char-property.
	(Special Properties): Update handling of keymap property.

	* strings.texi (Modifying Strings): Add clear-string.
	(Text Comparison): Add assoc-string and remove
	assoc-ignore-case, assoc-ignore-representation.

	* os.texi (Time of Day): Add set-time-zone-rule.

	* numbers.texi (Math Functions): asin, acos, log, log10
	report domain-error errors.

	* nonascii.texi (Converting Representations):
	Add multibyte-char-to-unibyte and unibyte-char-to-multibyte.
	(Encoding and I/O): Add file-name-coding-system.

	* modes.texi (Search-based Fontification): Explain that
	face specs are symbols with face names as values.

	* minibuf.texi (Minibuffer Misc): Add set-minibuffer-window.

	* lists.texi (Building Lists): remq moved elsewhere.
	(Sets And Lists): remq moved here.
	(Association Lists): Refer to assoc-string.

	* internals.texi (Garbage Collection): Add memory-use-counts.

	* frames.texi (Frames and Windows): Add set-frame-selected-window
	and frame-root-window.

	* files.texi (Contents of Directories):
	Add directory-files-and-attributes.

	* display.texi (Refresh Screen): Add force-window-update.
	(Invisible Text): Explain about moving point out of invis text.
	(Overlay Properties): Add overlay-properties.
	(Managing Overlays): Add overlayp.
	(GIF Images): Invalid image number displays a hollow box.

	* buffers.texi (Buffer Modification): Add restore-buffer-modified-p.
	(Killing Buffers): Add buffer-live-p.

2003-12-25  Markus Rost  <rost@mathematik.uni-bielefeld.de>

	* display.texi (Fringes): Fix typo "set-buffer-window".

2003-12-24  Luc Teirlinck  <teirllm@auburn.edu>

	* display.texi, eval.texi, help.texi, internals.texi, loading.texi:
	* nonascii.texi, processes.texi, tips.texi, variables.texi:
	Add or change various xrefs and anchors.

	* commands.texi: Replace all occurrences of @acronym{CAR} with
	@sc{car}, for consistency with the rest of the Elisp manual.
	`car' and `cdr' are historically acronyms, but are no longer
	widely thought of as such.

	* internals.texi (Pure Storage): Mention that `purecopy' does not
	copy text properties.
	(Object Internals): Now 29 bits are used (in most implementations)
	to address Lisp objects.

	* variables.texi (Variables with Restricted Values): New node.

	* objects.texi (Lisp Data Types): Mention that certain variables
	can only take on a restricted set of values and add an xref to
	the new node "Variables with Restricted Values".

	* eval.texi (Function Indirection): Describe the errors that
	`indirect-function' can signal.
	(Eval): Clarify the descriptions of `eval-region' and `values'.
	Describe `eval-buffer' instead of `eval-current-buffer' and
	mention `eval-current-buffer' as an alias for `current-buffer'.
	Correct the description and mention all optional arguments.

	* nonascii.texi: Various small changes in addition to the
	following.
	(Converting Representations): Clarify behavior of
	`string-make-multibyte' and `string-to-multibyte' for unibyte all
	ASCII arguments.
	(Character Sets): Document the variable `charset-list' and adapt
	the definition of the function `charset-list' accordingly.
	(Translation of Characters): Clarify use of generic characters in
	`make-translation-table'.  Clarify and correct the description of
	the use of translation tables in encoding and decoding.
	(User-Chosen Coding Systems): Correct and clarify the description
	of `select-safe-coding-system'.
	(Default Coding Systems): Clarify description of
	`file-coding-system-alist'.

2003-11-30  Luc Teirlinck  <teirllm@auburn.edu>

	* strings.texi (Text Comparison): Correctly describe when two
	strings are `equal'.  Combine and clarify descriptions of
	`assoc-ignore-case' and `assoc-ignore-representation'.

	* objects.texi (Non-ASCII in Strings): Clarify description of
	when a string is unibyte or multibyte.
	(Bool-Vector Type): Update examples.
	(Equality Predicates): Correctly describe when two strings are
	`equal'.

2003-11-29  Luc Teirlinck  <teirllm@auburn.edu>

	* lists.texi (Building Lists): `append' no longer accepts integer
	arguments.  Update the description of `number-sequence' to reflect
	recent changes.
	(Sets And Lists): Describe `member-ignore-case' after `member'.

2003-11-27  Kim F. Storm  <storm@cua.dk>

	* commands.texi (Click Events): Click object may be an images.
	Describe (dx . dy) element of click positions.
	(Accessing Events): Remove duplicate posn-timestamp.
	New functions posn-object and posn-object-x-y.

2003-11-23  Kim F. Storm  <storm@cua.dk>

	* commands.texi (Click Events): Describe enhancements to event
	position lists, including new text-pos and (col . row) items.
	Mention left-fringe and right-fringe area events.
	(Accessing Events): New functions posn-area and
	posn-actual-col-row.  Mention posn-timestamp.  Mention that
	posn-point in non-text area still returns buffer position.
	Clarify posn-col-row.

2003-11-21  Lars Hansen  <larsh@math.ku.dk>

	* files.texi (File Attributes): Describe new parameter ID-FORMAT.
	* anti.texi (File Attributes): Describe removed parameter
	ID-FORMAT.

2003-11-20  Luc Teirlinck  <teirllm@auburn.edu>

	* positions.texi (Positions): Mention that, if a marker is used as
	a position, its buffer is ignored.

	* markers.texi (Overview of Markers): Mention it here too.

2003-11-12  Luc Teirlinck  <teirllm@auburn.edu>

	* numbers.texi (Numeric Conversions): Not just `floor', but also
	`truncate', `ceiling' and `round' accept optional argument DIVISOR.

2003-11-10  Luc Teirlinck  <teirllm@auburn.edu>

	* markers.texi (Creating Markers): Specify insertion type of
	created markers.  Add xref to `Marker Insertion Types'.
	Second argument to `copy-marker' is optional.
	(Marker Insertion Types): Mention that most markers are created
	with insertion type nil.
	(The Mark): Correctly describe when `mark' signals an error.
	(The Region): Correctly describe when `region-beginning' and
	`region-end' signal an error.

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

	* hash.texi (Creating Hash): Clarify description of `eql'.
	`makehash' is obsolete.
	(Hash Access): Add Common Lisp notes for `remhash' and `clrhash'.

	* positions.texi (Point): Change description of `buffer-end', so
	that it is also correct for floating point arguments.
	(List Motion): Correct argument lists of `beginning-of-defun' and
	`end-of-defun'.
	(Excursions): Add xref to `Marker Insertion Types'.
	(Narrowing): Argument to `narrow-to-page' is optional.

2003-11-06  Luc Teirlinck  <teirllm@auburn.edu>

	* streams.texi (Output Streams): Clarify behavior of point for
	marker output streams.

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

	* variables.texi (Defining Variables): Second argument to
	`defconst' is not optional.
	(Setting Variables): Mention optional argument APPEND to
	`add-to-list'.
	(Creating Buffer-Local): Expand description of
	`make-variable-buffer-local'.
	(Frame-Local Variables): Expand description of
	`make-variable-frame-local'.
	(Variable Aliases): Correct description of optional argument
	DOCSTRING to `defvaralias'.  Mention return value of
	`defvaralias'.
	(File Local Variables): Add xref to `File variables' in Emacs
	Manual.  Correct description of `hack-local-variables'.  Mention
	`safe-local-variable' property.  Mention optional second argument
	to `risky-local-variable-p'.

2003-11-03  Luc Teirlinck  <teirllm@auburn.edu>

	* symbols.texi (Symbol Plists): Mention return value of `setplist'.

2003-11-02  Jesper Harder  <harder@ifa.au.dk>  (tiny change)

	* lispref/anti.texi, lispref/backups.texi, lispref/commands.texi
	lispref/customize.texi, lispref/display.texi, lispref/files.texi,
	lispref/internals.texi, lispref/keymaps.texi, lispref/loading.texi,
	lispref/modes.texi, lispref/nonascii.texi, lispref/numbers.texi,
	lispref/objects.texi, lispref/os.texi, lispref/positions.texi,
	lispref/processes.texi, lispref/searching.texi,
	lispref/sequences.texi, lispref/streams.texi, lispref/strings.texi,
	lispref/syntax.texi, lispref/text.texi: Replace @sc{foo} with
	@acronym{FOO}.

2003-10-27  Luc Teirlinck  <teirllm@auburn.edu>

	* strings.texi (Creating Strings): Argument START to `substring'
	can not be `nil'.  Expand description of
	`substring-no-properties'.  Correct description of `split-string',
	especially with respect to empty matches.  Prevent very bad line
	break in definition of `split-string-default-separators'.
	(Text Comparison): `string=' and `string<' also accept symbols as
	arguments.
	(String Conversion): More completely describe argument BASE in
	`string-to-number'.
	(Formatting Strings): `%s' and `%S' in `format' do require
	corresponding object.  Clarify behavior of numeric prefix after
	`%' in `format'.
	(Case Conversion): The argument to `upcase-initials' can be a
	character.

2003-10-27  Kenichi Handa  <handa@m17n.org>

	* display.texi (Fontsets): Fix texinfo usage.

2003-10-25  Kenichi Handa  <handa@m17n.org>

	* display.texi (Fontsets): Add description of the function
	set-fontset-font.

2003-10-23  Luc Teirlinck  <teirllm@auburn.edu>

	* display.texi (Temporary Displays): Add xref to `Documentation
	Tips'.

	* functions.texi (Function Safety): Use inforef instead of pxref
	for SES.

2003-10-23  Andreas Schwab  <schwab@suse.de>

	* Makefile.in (TEX, texinputdir): Don't define.
	(TEXI2DVI): Define.
	(srcs): Remove $(srcdir)/index.perm and $(srcdir)/index.unperm,
	add $(srcdir)/index.texi.
	($(infodir)/elisp): Remove index.texi dependency.
	(elisp.dvi): Likewise.  Use $(TEXI2DVI).
	(index.texi): Remove target.
	(dist): Don't link $(srcdir)/permute-index.
	(clean): Don't remove index.texi.

	* permute-index, index.perm: Remove.
	* index.texi: Rename from index.unperm.

2003-10-22  Luc Teirlinck  <teirllm@auburn.edu>

	* tips.texi (Documentation Tips): Document new behavior for face
	and variable hyperlinks in Help mode.

2003-10-21  Luc Teirlinck  <teirllm@auburn.edu>

	* objects.texi (Integer Type): Update for extra bit of integer range.
	(Character Type): Ditto.

2003-10-16  Eli Zaretskii  <eliz@gnu.org>

	* numbers.texi (Integer Basics): Add index entries for reading
	numbers in hex, octal, and binary.

2003-10-16  Lute Kamstra  <lute@gnu.org>

	* modes.texi (Mode Line Format): Mention force-mode-line-update's
	argument.

2003-10-13  Luc Teirlinck  <teirllm@auburn.edu>

	* windows.texi (Choosing Window): Fix typo.
	* edebug.texi (Edebug Execution Modes): Fix typo.

2003-10-13  Richard M. Stallman  <rms@gnu.org>

	* windows.texi (Basic Windows): A window has fringe settings,
	display margins and scroll-bar settings.
	(Splitting Windows): Doc split-window return value.
	Clean up one-window-p.
	(Selecting Windows): Fix typo.
	(Cyclic Window Ordering): Explain frame as ALL-FRAMES in next-window.
	(Buffers and Windows): In set-window-buffer, explain effect
	on fringe settings and scroll bar settings.
	(Displaying Buffers): In pop-to-buffer, explain nil as buffer arg.
	(Choosing Window): Use defopt for pop-up-frame-function.
	For special-display-buffer-names, explain same-window and same-frame.
	Clarify window-dedicated-p return value.
	(Textual Scrolling): scroll-up and scroll-down can get an error.
	(Horizontal Scrolling): Clarify auto-hscroll-mode.
	Clarify set-window-hscroll.
	(Size of Window): Don't mention tool bar in window-height.
	(Coordinates and Windows): Explain what coordinates-in-window-p
	returns for fringes and display margins.
	(Window Configurations): Explain saving fringes, etc.

	* tips.texi (Library Headers): Clean up Documentation.

	* syntax.texi (Parsing Expressions): Clean up forward-comment
	and parse-sexp-lookup-properties.

	* sequences.texi (Sequence Functions): sequencep accepts bool-vectors.

	* os.texi (System Environment): Clean up text for load-average errors.

	* modes.texi (Hooks): Don't explain local hook details at front.
	Clarify run-hooks and run-hook-with-args a little.
	Clean up add-hook and remove-hook.

	* edebug.texi (Edebug Execution Modes): Clarify t.
	Document edebug-sit-for-seconds.
	(Coverage Testing): Document C-x X = and =.
	(Instrumenting Macro Calls): Fix typo.
	(Specification List): Don't index the specification keywords.

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

	* processes.texi (Network): Introduce make-network-process.

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

	* tips.texi (Library Headers): Fix typo.

2003-10-07  Juri Linkov  <juri@jurta.org>

	* modes.texi (Imenu): Mention imenu-create-index-function's
	default value.  Explain submenus better.

2003-10-07  Lute Kamstra  <lute@gnu.org>

	* modes.texi (Faces for Font Lock): Fix typo.
	(Hooks): Explain how buffer-local hook variables can refer to
	global hook variables.
	Various minor clarifications.

2003-10-06  Lute Kamstra  <lute@gnu.org>

	* tips.texi (Coding Conventions): Mention naming conventions for
	hooks.

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

	* loading.texi (Library Search): Correct default value of
	load-suffixes.
	(Named Features): Fix typo.

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

	* loading.texi (Named Features): In `provide',
	say how to test for subfeatures.
	(Unloading): In unload-feature, use new var name
	unload-feature-special-hooks.

2003-10-03  Lute Kamstra  <lute@gnu.org>

	* modes.texi (Major Mode Conventions): Mention third way to set up
	Imenu.
	(Imenu): A number of small fixes.
	Delete documentation of internal variable imenu--index-alist.
	Document the return value format of imenu-create-index-function
	functions.

2003-09-30  Richard M. Stallman  <rms@gnu.org>

	* processes.texi (Network): Say what stopped datagram connections do.

	* lists.texi (Association Lists): Clarify `assq-delete-all'.

	* display.texi (Overlay Properties): Clarify `evaporate' property.

2003-09-29  Lute Kamstra  <lute@gnu.org>

	* modes.texi (Mode Line Data): Explain when symbols in mode-line
	constructs should be marked as risky.
	Change cons cell into proper list.
	(Mode Line Variables): Change cons cell into proper list.

2003-09-26  Lute Kamstra  <lute@gnu.org>

	* modes.texi (Mode Line Data): Document the :propertize construct.
	(Mode Line Variables): Reorder the descriptions of the variables
	to match their order in the default mode-line-format.
	Describe the new variables mode-line-position and mode-line-modes.
	Update the default values of mode-line-frame-identification,
	minor-mode-alist, and default-mode-line-format.
	(Properties in Mode): Mention the :propertize construct.

2003-09-26  Richard M. Stallman  <rms@gnu.org>

	* buffers.texi, commands.texi, debugging.texi, eval.texi:
	* loading.texi, minibuf.texi, text.texi, variables.texi:
	Avoid @strong{Note:}.

2003-09-26  Richard M. Stallman  <rms@gnu.org>

	* keymaps.texi (Remapping Commands): Fix typo.

2003-09-23  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* processes.texi (Low-Level Network): Fix typo.

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

	* processes.texi (Network, Network Servers): Fix typos.
	(Low-Level Network): Add timeout value for :server keyword.
	Add new option keywords to make-network-process.
	Add set-network-process-options.
	Explain how to test availability of network options.

2003-09-19  Richard M. Stallman  <rms@gnu.org>

	* text.texi (Motion by Indent): Arg to
	backward-to-indentation and forward-to-indentation is optional.

	* strings.texi (Creating Strings): Add substring-no-properties.

	* processes.texi
	(Process Information): Add list-processes arg QUERY-ONLY.
	Delete process-contact from here.
	Add new status values for process-status.
	Add process-get, process-put, process-plist, set-process-plist.
	(Synchronous Processes): Add call-process-shell-command.
	(Signals to Processes): signal-process allows process objects.
	(Network): Complete rewrite.
	(Network Servers, Datagrams, Low-Level Network): New nodes.

	* positions.texi (Word Motion): forward-word, backward-word
	arg is optional.  Reword.

	* abbrevs.texi (Defining Abbrevs): Index no-self-insert.

	* variables.texi (Creating Buffer-Local):
	Delete duplicate definition of buffer-local-value.
	(File Local Variables): Explain about discarding text props.

2003-09-11  Richard M. Stallman  <rms@gnu.org>

	* minibuf.texi (Intro to Minibuffers): Explain that the minibuffer
	changes variables that record input events.
	(Minibuffer Misc): Add minibuffer-selected-window.

	* lists.texi (Building Lists): Add copy-tree.

	* display.texi (Fontsets): Add char-displayable-p.
	(Scroll Bars): New node.

2003-09-08  Lute Kamstra  <lute@gnu.org>

	* modes.texi (%-Constructs): Document new `%i' and `%I'
	constructs.

2003-09-03  Peter Runestig  <peter@runestig.com>

	* makefile.w32-in: New file.

2003-08-29  Richard M. Stallman  <rms@gnu.org>

	* display.texi (Overlay Properties): Clarify how priorities
	affect use of the properties.

2003-08-19  Luc Teirlinck  <teirllm@mail.auburn.edu>

	* customize.texi (Type Keywords): Correct the description of
	`:help-echo' in the case where `motion-doc' is a function.

2003-08-14  John Paul Wallington  <jpw@gnu.org>

	* modes.texi (Emulating Mode Line): Subsection, not section.

2003-08-13  Richard M. Stallman  <rms@gnu.org>

	* elisp.texi (Top): Update subnode lists in menu.

	* text.texi (Insertion): Add insert-buffer-substring-no-properties.
	(Kill Functions): kill-region has new arg yank-handler.
	(Yanking): New node.
	(Yank Commands): Add yank-undo-function.
	(Low-Level Kill Ring):
	kill-new and kill-append have new arg yank-handler.
	(Changing Properties): Add remove-list-of-text-properties.
	(Atomic Changes): New node.

	* symbols.texi (Other Plists): Add lax-plist-get, lax-plist-put.

	* streams.texi (Output Variables): Add eval-expression-print-length
	and eval-expression-print-level.

	* os.texi (Time Conversion): For encode-time, explain limits on year.

	* objects.texi (Character Type): Define anchor "modifier bits".

	* modes.texi (Emulating Mode Line): New node.
	(Search-based Fontification): Font Lock uses font-lock-face property.
	(Other Font Lock Variables): Likewise.

	* keymaps.texi (Format of Keymaps): Keymaps contain char tables,
	not vectors.
	(Active Keymaps): Add emulation-mode-map-alists.
	(Functions for Key Lookup): key-binding has new arg no-remap.
	(Remapping Commands): New node.
	(Scanning Keymaps): where-is-internal has new arg no-remap.
	(Tool Bar): Add tool-bar-local-item-from-menu.
	Clarify when to use tool-bar-add-item-from-menu.

	* commands.texi (Interactive Call): commandp has new arg.
	(Command Loop Info): Add this-original-command.

2003-08-06  John Paul Wallington  <jpw@gnu.org>

	* compile.texi (Compiler Errors): Say `@end defmac' after `@defmac'.

	* display.texi (Warning Basics): Fix typo.
	(Fringes): Add closing curly bracket and fix typo.

	* elisp.texi (Top): Fix typo.

2003-08-05  Richard M. Stallman  <rms@gnu.org>

	* elisp.texi: Update lists of subnodes.

	* windows.texi (Buffers and Windows): set-window-buffer has new arg.

	* variables.texi (Local Variables): Use lc for example variable names.

	* tips.texi (Library Headers): Explain where to put -*-.

	* strings.texi (Creating Strings): Fix xref for vconcat.

	* sequences.texi (Vector Functions):
	vconcat no longer allows integer args.

	* minibuf.texi (Reading File Names): read-file-name has new
	arg PREDICATE.  New function read-directory-name.

	* macros.texi (Defining Macros): Give definition of `declare'
	(Indenting Macros): New node.

	* frames.texi (Parameter Access): Add modify-all-frames-parameters.
	(Window Frame Parameters): Make separate table of parameters
	that are coupled with specific face attributes.
	(Deleting Frames): delete-frame-hooks renamed to
	delete-frame-functions.

	* files.texi (Magic File Names): Add file-remote-p.
	Clarify file-local-copy.

	* edebug.texi (Instrumenting Macro Calls): Don't define `declare'
	here; instead xref Defining Macros.

	* display.texi (Warnings): New node, and subnodes.
	(Fringes): New node.

	* debugging.texi (Test Coverage): New node.

	* compile.texi (Compiler Errors): Explain with-no-warnings
	and other ways to suppress warnings.

	* commands.texi (Interactive Call): Minor clarification.

	* buffers.texi (Buffer File Name): set-visited-file-name
	renames the buffer too.

	* abbrevs.texi (Abbrev Tables): Add copy-abbrev-table.

2003-07-24  Markus Rost  <rost@math.ohio-state.edu>

	* abbrevs.texi (Abbrev Expansion): Use \s syntax in example.

2003-07-22  Markus Rost  <rost@math.ohio-state.edu>

	* internals.texi (Garbage Collection): Fix previous change.

2003-07-22  Richard M. Stallman  <rms@gnu.org>

	* files.texi (Truenames): Add LIMIT arg to file-chase-links.

	* display.texi (Width): Use \s syntax in example.
	(Font Selection): Add face-font-rescale-alist.

	* modes.texi (Imenu): Add xref to Emacs Manual node on Imenu.
	Remove spurious indent in example.

	* lists.texi (Building Lists): Add number-sequence.

	* internals.texi (Garbage Collection): Add gcs-done, gc-elapsed.

	* functions.texi (Function Documentation): Explain how to
	show calling convention explicitly in the doc string.

	* windows.texi (Selecting Windows): save-selected-window saves
	selected window of each frame.
	(Window Configurations): Minor change.

	* syntax.texi (Syntax Table Functions): Use \s syntax in examples.

	* streams.texi (Output Variables): Add print-continuous-numbering
	and print-number-table.

	* processes.texi (Decoding Output): New node.

	* os.texi (Time Conversion): decode-time arg is optional.

	* objects.texi (Character Type): Don't use space as example for \.
	Make list of char names and \-sequences correspond.
	Explain that \s is not used in strings.  `\ ' needs space after.

	* nonascii.texi (Converting Representations): Add string-to-multibyte.
	(Translation of Characters): Add translation-table-for-input.
	(Default Coding Systems): Add auto-coding-functions.
	(Explicit Encoding): Add decode-coding-inserted-region.
	(Locales): Add locale-info.

	* minibuf.texi (Basic Completion): Describe test-completion.
	Collections can be lists of strings.
	Clean up lazy-completion-table.
	(Programmed Completion): Mention test-completion.
	Clarify why lambda expressions are not accepted.
	(Minibuffer Misc): Describe minibufferp.

2003-07-14  Richard M. Stallman  <rms@gnu.org>

	* buffers.texi (Killing Buffers): kill-buffer-hook is perm local.

	* windows.texi (Selecting Windows): New arg to select-window.
	(Selecting Windows): Add with-selected-window.
	(Size of Window): Add window-inside-edges, etc.

	* internals.texi (Garbage Collection): Add post-gc-hook.

	* processes.texi (Subprocess Creation): Add exec-suffixes.

	* keymaps.texi (Functions for Key Lookup): Add current-active-maps.
	(Scanning Keymaps): Add map-keymaps.
	(Defining Menus): Add keymap-prompt.

	* numbers.texi (Integer Basics): Add most-positive-fixnum,
	most-negative-fixnum.

	* compile.texi (Byte Compilation): Explain no-byte-compile
	(Compiler Errors): New node.

	* os.texi (User Identification): user-uid, user-real-uid
	can return float.

	* modes.texi (Major Mode Conventions): Explain about run-mode-hooks
	and about derived modes.
	(Minor Modes): Add minor-mode-list.
	(Defining Minor Modes): Keyword args for define-minor-mode.
	(Search-based Fontification): Explain managing other properties.
	(Other Font Lock Variables): Add font-lock-extra-managed-props.
	(Faces for Font Lock): Add font-locl-preprocessor-face.
	(Hooks): Add run-mode-hooks and delay-mode-hooks.

	* variables.texi (Creating Buffer-Local): Add buffer-local-value.
	(Variable Aliases): Clarify defvaralias.

	* loading.texi (Library Search): Add load-suffixes.

	* minibuf.texi (Basic Completion): Add lazy-completion-table.
	(Programmed Completion): Add dynamic-completion-table.

	* files.texi (Changing Files): copy-file allows dir as NEWNAME.
	(Magic File Names): Specify precedence order of handlers.

	* commands.texi (Command Overview): Emacs server runs pre-command-hook
	and post-command-hook.
	(Waiting): New calling convention for sit-for.

	* text.texi (Special Properties): local-map and keymap properties
	apply based on their stickiness.

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

	* modes.texi (Minor Mode Conventions): Specify only some kinds
	of list values as args to minor modes.

	* files.texi (File Name Expansion): Warn about iterative use
	of substitute-in-file-name.

	* advice.texi (Activation of Advice): Clean up previous change.

2003-07-06  Markus Rost  <rost@math.ohio-state.edu>

	* advice.texi (Activation of Advice): Note that ad-start-advice is
	turned on by default.

2003-06-30  Richard M. Stallman  <rms@gnu.org>

	* text.texi (Buffer Contents): Document current-word.
	(Change Hooks): Not called for *Messages*.

	* functions.texi (Defining Functions): Explain about redefining
	primitives.
	(Function Safety): Renamed.  Minor changes.
	Comment out the detailed criteria for what is safe.

2003-06-22  Andreas Schwab  <schwab@suse.de>

	* objects.texi (Symbol Type): Fix description of examples.

2003-06-16  Andreas Schwab  <schwab@suse.de>

	* hash.texi (Creating Hash): Fix description of :weakness.

2003-06-13  Kai Gro,A_(Bjohann  <kai.grossjohann@gmx.net>

	* files.texi (Changing Files): copy-file copies file modes, too.

2003-05-28  Richard M. Stallman  <rms@gnu.org>

	* strings.texi (Creating Strings): Clarify split-string.

2003-05-22  Stephen J. Turnbull  <stephen@xemacs.org>

	* strings.texi (Creating Strings): Update split-string specification
	and examples.

2003-05-19  Richard M. Stallman  <rms@gnu.org>

	* elisp.texi: Correct invariant section names.

2003-04-20  Richard M. Stallman  <rms@gnu.org>

	* os.texi (Timers): Explain about timers and quitting.

2003-04-19  Richard M. Stallman  <rms@gnu.org>

	* internals.texi (Writing Emacs Primitives): Strings are
	no longer special for GCPROs.  Mention GCPRO5, GCPRO6.
	Explain GCPRO convention for varargs function args.

2003-04-16  Richard M. Stallman  <rms@gnu.org>

	* minibuf.texi (Minibuffer Misc): Document fn minibuffer-message.

2003-04-08  Richard M. Stallman  <rms@gnu.org>

	* files.texi (Kinds of Files): Correct return value of file-symlink-p.

2003-02-13  Kim F. Storm  <storm@cua.dk>

	* objects.texi (Character Type): New \s escape for space.

2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>

	* os.texi (System Environment): Added cygwin system-type.

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

	* keymaps.texi: Document that a symbol can act as a keymap.

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

	* text.texi (Changing Properties): Say string indices are origin-0.

	* positions.texi (Screen Lines) <compute-motion>:
	Correct order of elts in return value.

	* keymaps.texi (Changing Key Bindings) <define-key>: Mention
	how to define a default binding.

2002-12-07  Markus Rost  <rost@math.ohio-state.edu>

	* loading.texi (Unloading): Fix recent change for load-history.

	* customize.texi (Simple Types): Clarify description of custom
	type 'number. Describe new custom type 'float.

2002-12-04  Markus Rost  <rost@math.ohio-state.edu>

	* variables.texi (File Local Variables): Fix typo.

2002-10-23  Kai Gro,A_(Bjohann  <kai.grossjohann@uni-duisburg.de>

	From Michael Albinus <Michael.Albinus@alcatel.de>.

	* README: Target for Info file is `make info'.

	* files.texi (File Name Components): Fixed typos in
	`file-name-sans-extension'.
	(Magic File Names): Complete list of operations for magic file
	name handlers.

2002-09-16  Jonathan Yavner  <jyavner@engineer.com>

	* variables.texi (File Local Variables): New function
	risky-local-variable-p.

2002-09-15  Jonathan Yavner  <jyavner@engineer.com>

	* functions.texi (Function safety): New node about unsafep.

2002-08-05  Per Abrahamsen  <abraham@dina.kvl.dk>

	* customize.texi (Splicing into Lists): Fixed example.
	Reported by Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>

2002-06-17  Juanma Barranquero  <lektu@terra.es>

	* frames.texi (Display Feature Testing): Fix typo.

2002-06-12  Andreas Schwab  <schwab@suse.de>

	* frames.texi (Initial Parameters, Resources): Fix references to
	the Emacs manual.

2002-05-13  Kim F. Storm  <storm@cua.dk>

	* variables.texi (Intro to Buffer-Local): Updated warning and
	example relating to changing buffer inside let.

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

	* os.texi (Session Management): New node about X Session management.

2002-01-18  Eli Zaretskii  <eliz@is.elta.co.il>

	* elisp.texi (VERSION): Set to 2.9.  Update the version of Emacs
	to which the manual corresponds, and the copyright years.

	* Makefile.in (VERSION): Set to 2.9.

2001-11-29  Eli Zaretskii  <eliz@is.elta.co.il>

	* elisp.texi: Change the category in @dircategory to "Emacs", to
	make it consistent with info/dir.

2001-11-25  Miles Bader  <miles@gnu.org>

	* text.texi (Fields): Describe new `limit' arg in
	field-beginning/field-end.

2001-11-17  Eli Zaretskii  <eliz@is.elta.co.il>

	* permute-index: Don't depend on csh-specific features.  Replace
	the interpreter name with /bin/sh.

	* two-volume-cross-refs.txt: New file.
	* two.el: New file.
	* spellfile: New file.

2001-11-16  Eli Zaretskii  <eliz@is.elta.co.il>

	* permute-index: New file.

	* vol1.texi, vol2.texi: Renamed from elisp-vol1.texi and
	elisp-vol2.texi, respectively, to avoid file-name clashes in DOS
	8+3 restricted namespace.

	* Makefile.in (infodir): Define relative to $(srcdir).
	($(infodir)/elisp): Don't chdir into $(srcdir), but add it to the
	include directories list via -I switch to makeinfo.
	(index.texi): Use cp if both hard and symbolic links fail.

2001-11-10  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile.in (distclean): Add.

	The following changes make ELisp manual part of the Emacs
	distribution:

	* Makefile.in: Add Copyright notice.
	(prefix): Remove.
	(infodir): Change value to "../info".
	(VPATH): New variable.
	(MAKE): Don't define.
	(texmacrodir): Don't define.
	(texinputdir): Append the existing value of TEXINPUTS.
	($(infodir)/elisp): Instead of just "elisp".  Reformat the
	command to be compatible with man/Makefile.in, and to put the
	output into ../info.
	(info): Add target.
	(installall): Target removed.

2001-10-31  Pavel Jan,Bm(Bk  <Pavel@Janik.cz>

	* tips.texi (Coding Conventions): Fix typo.

2001-10-23  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in (srcs): Add gpl.texi and doclicense.texi.

2001-10-22  Eli Zaretskii  <eliz@is.elta.co.il>

	* files.texi (File Name Components): Update the description of
	file-name-sans-extension and file-name-extension, as they now
	ignore leading dots.

2001-10-20  Gerd Moellmann  <gerd@gnu.org>

	* (Version 21.1 released.)

2001-10-19  Miles Bader  <miles@gnu.org>

	* positions.texi (Text Lines): Describe behavior of
	`beginning-of-line'/`end-of-line' in the presence of field properties.

2001-10-17  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in (VERSION): Set to 2.8.
	(manual): Use `manual-21'.

	* elisp.texi (VERSION): Add and use it where the version
	number was used.  Set it to 2.8.

	* intro.texi: Likewise.

2001-10-13  Eli Zaretskii  <eliz@is.elta.co.il>

	* files.texi (File Name Completion): Document the significance of
	a trailing slash in elements of completion-ignored-extensions.

2001-10-06  Miles Bader  <miles@gnu.org>

	* variables.texi (Variable Aliases): It's `@defmac', not `@defmacro'.

2001-10-04  Gerd Moellmann  <gerd@gnu.org>

	* variables.texi (Variable Aliases): New node.

2001-10-04  Gerd Moellmann  <gerd@gnu.org>

	* Branch for 21.1.

2001-10-02  Miles Bader  <miles@gnu.org>

	* minibuf.texi (Minibuffer Misc): Add entries for
	`minibuffer-contents', `minibuffer-contents-no-properties', and
	`delete-minibuffer-contents'.
	Correct description for `minibuffer-prompt-end'.

	* text.texi (Property Search): Correct descriptions of
	`next-char-property-change' and `previous-char-property-change'.
	Add entries for `next-single-char-property-change' and
	`previous-single-char-property-change'.
	Make operand names a bit more consistent.

2001-09-30  Eli Zaretskii  <eliz@is.elta.co.il>

	* frames.texi (Finding All Frames): Document that next-frame and
	previous-frame are local to current terminal.

2001-09-26  Eli Zaretskii  <eliz@is.elta.co.il>

	* keymaps.texi (Creating Keymaps): Fix the description of the
	result of make-keymap.

2001-09-23  Eli Zaretskii  <eliz@is.elta.co.il>

	* display.texi (Font Lookup, Attribute Functions)
	(Image Descriptors): Add cross-references to the definition of
	selected frame.

	* buffers.texi (The Buffer List): Add cross-references to the
	definition of selected frame.

	* frames.texi (Input Focus): Clarify which frame is _the_ selected
	frame at any given time.
	(Multiple Displays, Size and Position): Add a cross-reference to
	the definition of the selected frame.

2001-09-08  Eli Zaretskii  <eliz@is.elta.co.il>

	* strings.texi (String Conversion) <string-to-number>: Document
	that a float is returned for integers that are too large.

	* frames.texi (Mouse Position): Document mouse-position-function.
	(Display Feature Testing): Document display-images-p.
	(Window Frame Parameters): Document the cursor-type variable.

	* numbers.texi (Integer Basics): Document CL style read syntax for
	integers in bases other than 10.

	* positions.texi (List Motion): Document
	open-paren-in-column-0-is-defun-start.

	* lists.texi (Sets And Lists): Document member-ignore-case.

	* internals.texi (Garbage Collection): Document the used and free
	strings report.
	(Memory Usage): Document strings-consed.

	* os.texi (Time of Day): Document float-time.
	(Recording Input): Document that clear-this-command-keys clears
	the vector to be returned by recent-keys.

	* keymaps.texi (Scanning Keymaps) <where-is-internal>: The
	argument keymap can be a list.

	* nonascii.texi (User-Chosen Coding Systems)
	<select-safe-coding-system>: Document the new argument
	accept-default-p and the variable
	select-safe-coding-system-accept-default-p.  Tell what happens if
	buffer-file-coding-system is undecided.
	(Default Coding Systems): Document auto-coding-regexp-alist.

	* display.texi (The Echo Area) <message>: Document
	message-truncate-lines.
	(Glyphs): Document that the glyph table is unused on windowed
	displays.

	* help.texi (Describing Characters) <single-key-description>:
	Document the new argument no-angles.
	(Accessing Documentation) <documentation-property>: Document that
	a non-string property is evaluated.
	<documentation>: Document that the function-documentation property
	is looked for.

	* windows.texi (Selecting Windows): Document some-window.

	* text.texi (MD5 Checksum): New node, documents the md5 primitive.

	* hooks.texi (Standard Hooks): Add kbd-macro-termination-hook and
	apropos-mode-hook.

	* commands.texi (Using Interactive): Document interactive-form.
	(Keyboard Macros): Document kbd-macro-termination-hook.
	(Command Loop Info): Document that clear-this-command-keys clears
	the vector to be returned by recent-keys.

2001-09-04  Werner LEMBERG  <wl@gnu.org>

	* Makefile.in (srcdir, texinputdir): New variables.
	(srcs, index.texi, install): Use $(srcdir).
	(.PHONY): Remove elisp.dvi.
	(elisp): Use -I switch for makeinfo.
	(elisp.dvi): Use $(srcdir) and $(texinputdir).
	(installall, dist): Use $(srcdir).
	Fix path to texinfo.tex.
	(maintainer-clean): Add elisp.dvi and elisp.oaux.

2001-08-30  Gerd Moellmann  <gerd@gnu.org>

	* display.texi (Conditional Display): Adjust to API change.

	* configure: New file.

2001-07-30  Gerd Moellmann  <gerd@gnu.org>

	* commands.texi (Repeat Events): Add description of
	double-click-fuzz.

2001-05-08  Stefan Monnier  <monnier@cs.yale.edu>

	* syntax.texi (Syntax Class Table): Add the missing designator for
	comment and string fences.
	(Syntax Properties): Add a xref to syntax table internals.
	(Syntax Table Internals): Document string-to-syntax.

2001-05-07  Gerd Moellmann  <gerd@gnu.org>

	* Makefile.in (install): Use install-info command line options
	like in Emacs' Makefile.in.

2000-12-09  Miles Bader  <miles@gnu.org>

	* windows.texi (Window Start): Update documentation for
	`pos-visible-in-window-p'.

2000-11-12  Stefan Monnier  <monnier@cs.yale.edu>

	* lists.texi (Building Lists): Add footnote to explain how to add
	to the end of a list.

2000-10-25  Gerd Moellmann  <gerd@gnu.org>

	* files.texi (Visiting Functions): Typos.

2000-10-25  Kenichi Handa  <handa@etl.go.jp>

	* files.texi (Visiting Functions): Return value of
	find-file-noselect may be a list of buffers if wildcards are used.

2000-10-24  Miles Bader  <miles@lsi.nec.co.jp>

	* display.texi (Defining Faces): Document `graphic' display type
	in face specs.

2000-10-18  Kai Grossjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>

	* hooks.texi (Standard Hooks): Replace obsolete
	`after-make-frame-hook' with `after-make-frame-functions'.

	* frames.texi (Creating Frames): Ditto.

	* variables.texi (Future Local Variables): Ditto.

2000-10-16  Gerd Moellmann  <gerd@gnu.org>

	* display.texi (Other Image Types): Add description of :foreground
	and :background properties of mono PBM images.

2000-08-17  Werner LEMBERG  <wl@gnu.org>

	* .cvsignore: New file.

2000-01-05  Gerd Moellmann  <gerd@gnu.org>

	* tindex.pl: New script.

1999-12-03  Dave Love  <fx@gnu.org>

	* Makefile.in (MAKEINFO): New parameter.

1999-09-17  Richard Stallman  <rms@gnu.org>

	* Makefile.in (srcs): Add hash.texi.
	(VERSION): Update to 20.6.

1999-09-13  Richard Stallman  <rms@gnu.org>

	* Makefile.in (index.texi): If cannot make a symlink, make a hard link.

1998-08-29  Karl Heuer  <kwzh@gnu.org>

	* configure.in: New file.
	* Makefile.in: Renamed from Makefile.
	(prefix, infodir): Use value obtained from configure.
	(emacslibdir): Obsolete variable deleted.
	(dist): Distribute configure.in, configure, Makefile.in.

1998-06-12  Richard Stallman  <rms@psilocin.ai.mit.edu>

	* Makefile (INSTALL_INFO): New variable.
	(install): Run install-info.

1998-05-09  Richard Stallman  <rms@psilocin.ai.mit.edu>

	* Makefile (elisp.dvi): Add missing backslash.

1998-05-02  Richard Stallman  <rms@psilocin.gnu.org>

	* Makefile (elisp.dvi): Don't depend on texindex or on elisp.tps.
	Run texindex without `./'.  Always run texindex on elisp.tp.
	(elisp.tps): Target deleted.

1998-04-05  Richard Stallman  <rms@psilocin.gnu.org>

	* Makefile (srcs): Add nonascii.texi and customize.texi.
	(dist): Start by deleting `temp'.

1998-02-17  Richard Stallman  <rms@psilocin.gnu.org>

	* Makefile (makeinfo, texindex): Targets deleted.
	(makeinfo.o, texindex.o): Targets deleted.
	(clean, dist): Don't do anything with them or with getopt*.

1998-01-30  Richard Stallman  <rms@psilocin.gnu.org>

	* Makefile (SHELL): Defined.

1998-01-27  Richard Stallman  <rms@psilocin.gnu.org>

	* Makefile (elisp.tps): New target.
	(elisp.dvi): Depend on elisp.tps.

Wed Apr  3 15:24:25 1996  Karl Heuer  <kwzh@gnu.ai.mit.edu>

	* README: Update phone number.

	* Makefile (elisp): Make this be the default target.
	Depend on makeinfo.c instead of makeinfo.
	(install): Don't depend on elisp.dvi, since we don't install that.
	Use mkinstalldirs.
	(dist): Add mkinstalldirs.

Mon Jun 19 14:35:26 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile (VERSION): Update version number.
	(maintainer-clean): Renamed from realclean.

Wed Jun  7 17:04:59 1995  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>

	* Makefile (realclean): New target.
	(elisp): Remove any old elisp-* files first.

Tue Nov 23 19:59:40 1993  Noah Friedman  (friedman@nutrimat.gnu.ai.mit.edu)

	* Makefile (VERSION): New variable.
	(dist): Make packaged directory name `elisp-manual-19-$(VERSION)'.
	Compressed file suffix should be `.gz', not `.z'.

Mon Nov 22 15:06:19 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (elisp): Depend on makeinfo.

Fri Nov 19 02:29:33 1993  Noah Friedman  (friedman@gnu.ai.mit.edu)

	* Makefile (srcs): Add anti.texi.

Fri May 28 18:04:53 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (infodir, prefix): New vars.
	(install): Use infodir.
	(emacsinfodir): Deleted.

Thu May 27 02:11:25 1993  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (srcs): Add calendar.texi.

	* Makefile (dist): Copy texindex.c and makeinfo.c.
	Limit elisp-* files to those with one or two digits.

Sun May 16 17:58:21 1993  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Makefile (dist): Changed to use Gzip instead of compress.

Fri Apr 23 01:05:23 1993  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* loading.texi (Unloading): define-function changed back to
	defalias.  It may not stay this way, but at least it's
	consistent with the known-good version of the code patch.

Fri Mar 26 21:14:54 1993  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* modes.texi (Hooks): Document new optional arg of add-hook.

Wed Mar 17 08:48:24 1993  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* variables.texi: Document nil initial value of buffer-local variables.

	* tips.texi: Add new section on standard library headers.

Sat Feb 27 18:00:25 1993  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Makefile (srcs): Add frame.texi to the list of sources.

Tue Feb 23 10:50:25 1993  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Makefile (dist): Don't bother excluding autosave files; they'll
	never make it into the temp directory anyway, and the hash marks
	in the name are problematic for make and the Bourne shell.
	(srcs):

Fri Feb 12 16:54:38 1993  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Makefile (dist): Don't include backup files or autosave files in
	the distribution tar file.

Tue Nov 26 21:10:34 1991  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (srcs): Added index.perm.
	(elisp.dvi): Remove erroneous shell comment.
	Expect output of permute-index in permuted.fns.
	Save old elisp.aux in elisp.oaux.
	(clean): Added index.texi to be deleted.

Sat Aug 11 17:39:10 1990  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* Makefile (elisp.dvi, index.texi): Use shell if instead of ifdef.

Tue Jun 26 09:57:26 1990  David Lawrence  (tale@geech)

	* files.texi:  Noted that completion-ignored-extensions is ignored
	when making *Completions*.

Fri Jun  8 16:44:44 EDT 1990 Jay Fenlason (hack@ai.mit.edu)

	* Makefile  make dist now depends on elisp.dvi, since it tries
	to include it in the dist file.

Wed Mar 28 22:57:35 1990  Jim Kingdon  (kingdon@mole.ai.mit.edu)

	* functions.texinfo (Mapping Functions): Add missing quote

Mon Jun 19 18:09:24 1989  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* texinfo.tex (frenchspacing): Use decimal codes for char to be set.
	(defunargs): Turn off \hyphenchar of \sl font temporarily.

Wed May 10 18:01:17 1989  Robert J. Chassell  (bob@rice-chex.ai.mit.edu)

	* @result{}, @expansion{}, @print{}, @quiv{}, @point{},
	and @error{} are the terms now being used.  The files in the
	directory have been changed to reflect this.

	* All instances of @indentedresultt{} have been changed to
	`     @result{}', using 5 spaces at the begining of the line.

Mon Apr 24 21:02:55 1989  Robert J. Chassell  (bob@rice-chex.ai.mit.edu)

	* @result{}, @expandsto{}, @prints{}, @quiv{}, @error{}, and the
	experimental @indentedresult{}, @indentedexpandsto{} are part of
	the texinfo.tex in this directory.  These TeX macros are not
	stable yet.

Mon Apr 17 18:56:50 1989  Robert J. Chassell  (bob@rice-chex.ai.mit.edu)

	* texinfo.tex:  temporarily added
		\let\result=\dblarrow
		\def\error{{\it ERROR} \longdblarrow}
	We need to do this better soon.

Tue Apr 11 12:23:28 1989  Robert J. Chassell  (bob@rice-chex.ai.mit.edu)

	* Applied Karl Berry's patches to *.texinfo files, but not to
	texinfo.tex; those diffs are in `berry-texinfo-tex-diffs'. (Karl's
	new title page format is also not applied, since it requires
	texinfo.tex changes.)

	* Cleaned up `Makefile' and defined the `emacslibdir' directory
	for the Project GNU development environment.

;; Local Variables:
;; coding: iso-2022-7bit
;; End:

    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
      2005, 2006 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: 985ae0ce-df29-475b-b3f8-4bbcbf6f7fda