summaryrefslogtreecommitdiff
path: root/src/TAGS
blob: a19e57556146c68bc1f140fe80f1a0d4a752e645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961

acldef.h,0

buffer.h,457
#define BUF_BEG(60,2434
#define BUF_BEGV(62,2530
#define BUF_BEG_ADDR(75,3033
#define BUF_CHAR_ADDRESS(87,3505
#define BUF_GAP_SIZE(83,3324
#define BUF_GPT(66,2700
#define BUF_MODIFF(72,2948
#define BUF_PT(64,2618
#define BUF_Z(70,2886
#define BUF_ZV(68,2804
#define BufferSafeCeiling(266,10301
#define BufferSafeFloor(268,10372
#define FETCH_CHAR(262,10067
#define PTR_CHAR_POS(92,3711
#define SET_BUF_PT(80,3245
#define SET_BUF_ZV(79,3187

chpdef.h,0

cm.h,46
#define	cmat(93,2972
#define	cmplus(94,3023

commands.h,20
#define Ctl(21,794

dir.h,0

dispextern.h,0

emacssignal.h,311
#define sigblock(19,594
#define sighold(22,796
#define sigmask(11,222
#define sigmask(47,1377
#define sigpause(18,528
#define sigrelse(23,842
#define sigsetmask(21,728
#define sigunblock(20,660
#define sigunblock(51,1443
#define sys_sigdel(31,1120
#define sys_sigdel(56,1571
int (*sys_signal 25,889

filetypes.h,0

getpagesize.h,112
#define getpagesize(17,192
#define getpagesize(20,280
#define getpagesize(23,357
#define getpagesize(28,468

gettime.h,0

indent.h,0

ioctl.h,0

lisp.h,2660
#define CHECK_BUFFER(504,14997
#define CHECK_CONS(495,14676
#define CHECK_IMPURE(527,15869
#define CHECK_IMPURE(537,16250
#define CHECK_IMPURE(544,16479
#define CHECK_LIST(489,14449
#define CHECK_MARKER(516,15434
#define CHECK_NUMBER(513,15327
#define CHECK_NUMBER_COERCE_MARKER(519,15543
#define CHECK_PROCESS(510,15215
#define CHECK_STRING(492,14567
#define CHECK_SYMBOL(498,14779
#define CHECK_VECTOR(501,14888
#define CHECK_WINDOW(507,15106
#define CONSP(486,14356
#define DEFUN(600,19086
#define DEFVARBOOL(616,19608
#define DEFVARINT(617,19673
#define DEFVARLISP(615,19543
#define DEFVARPERBUFFER(618,19736
#define DEFVAR_BOOL(623,19964
#define DEFVAR_INT(624,20030
#define DEFVAR_LISP(621,19820
#define DEFVAR_LISP_NOPRO(622,19886
#define DEFVAR_PER_BUFFER(625,20094
#define DOWNCASE(686,21687
#define EQ(487,14400
#define GCPRO1(721,22845
#define GCPRO2(725,22967
#define GCPRO3(730,23170
#define GCPRO4(736,23452
#define LOWERCASEP(669,21166
#define NOCASEP(674,21312
#define NULL(484,14256
#define UPCASE(678,21441
#define UPCASE1(682,21567
#define UPPERCASEP(665,21082
#define XBUFFER(393,11894
#define XCONS(392,11845
#define XFASTINT(269,8286
#define XFASTINT(359,10771
#define XFUNCTION(398,12150
#define XGCTYPE(325,9973
#define XGCTYPE(383,11628
#define XINT(274,8440
#define XINT(363,10905
#define XINT(365,10947
#define XINTPTR(401,12301
#define XMARK(343,10379
#define XMARK(386,11743
#define XMARKBIT(335,10237
#define XMARKBIT(384,11661
#define XMARKER(399,12202
#define XOBJFWD(400,12255
#define XPNTR(286,8792
#define XPNTR(295,9176
#define XPNTR(297,9251
#define XPNTR(369,11039
#define XPROCESS(403,12387
#define XSET(314,9542
#define XSET(374,11209
#define XSETBUFFER(406,12489
#define XSETCONS(405,12443
#define XSETFUNCTION(411,12727
#define XSETINT(302,9328
#define XSETINT(370,11068
#define XSETINTPTR(414,12873
#define XSETMARKBIT(339,10301
#define XSETMARKBIT(385,11698
#define XSETMARKER(412,12777
#define XSETOBJFWD(413,12825
#define XSETPNTR(310,9483
#define XSETPNTR(372,11161
#define XSETPROCESS(416,12969
#define XSETSTRING(409,12631
#define XSETSUBR(408,12585
#define XSETSYMBOL(410,12679
#define XSETTYPE(264,8070
#define XSETTYPE(355,10580
#define XSETUINT(306,9420
#define XSETUINT(371,11114
#define XSETVECTOR(407,12537
#define XSETWINDOW(415,12921
#define XSTRING(396,12044
#define XSUBR(395,11995
#define XSYMBOL(397,12097
#define XTYPE(260,7992
#define XTYPE(354,10533
#define XUINT(281,8656
#define XUINT(368,11010
#define XUNMARK(347,10437
#define XUNMARK(387,11778
#define XVECTOR(394,11942
#define XWINDOW(402,12339

m-7300.h,34
#define SIGN_EXTEND_CHAR(48,1470

m-all2800.h,64
#define LOAD_AVE_CVT(88,2871
#define SIGN_EXTEND_CHAR(49,1701

m-alliant.h,34
#define SIGN_EXTEND_CHAR(53,1761

m-alliant1.h,0

m-alliant4.h,29
#define LOAD_AVE_CVT(17,432

m-altos.h,34
#define SIGN_EXTEND_CHAR(38,1277

m-amdahl.h,57
#define SIGN_EXTEND_CHAR(55,1840
#define XINT(130,4227

m-apollo.h,34
#define SIGN_EXTEND_CHAR(37,1227

m-att3b.h,108
#define SIGN_EXTEND_CHAR(49,1743
#define XADDRFIX(144,4720
#define XINT(130,4279
#define XTYPE(142,4637

m-aviion.h,90
#define	ADDR_CORRECT(133,4257
#define SIGN_EXTEND_CHAR(48,1574
#define alloca(111,3477

m-bullx20.h,82
#define SIGN_EXTEND_CHAR(50,1730
#define bcopy(108,3646
#define bzero(109,3689

m-celerity.h,64
#define LOAD_AVE_CVT(58,1749
#define SIGN_EXTEND_CHAR(42,1327

m-convex.h,87
#define LOAD_AVE_CVT(74,2227
#define SIGN_EXTEND_CHAR(48,1573
#define XINT(120,3741

m-cydra5.h,64
#define LOAD_AVE_CVT(74,2354
#define SIGN_EXTEND_CHAR(48,1577

m-delta.h,34
#define SIGN_EXTEND_CHAR(50,1678

m-delta88.h,34
#define SIGN_EXTEND_CHAR(58,1975

m-dpx2-200.h,0

m-dpx2-300.h,0

m-dpx2.h,66
#define LOAD_AVE_CVT(143,4539
#define SIGN_EXTEND_CHAR(114,3680

m-dual.h,34
#define SIGN_EXTEND_CHAR(42,1345

m-elxsi.h,34
#define SIGN_EXTEND_CHAR(49,1606

m-gec63.h,154
#define SIGN_EXTEND_CHAR(37,1223
#define XPNTR(69,1931
#define XSET(72,2036
#define XSETPNTR(70,1965
#define XSETTYPE(67,1854
#define XTYPE(66,1786

m-gould.h,96
#define A_TEXT_OFFSET(117,3612
#define LOAD_AVE_CVT(76,2318
#define SIGN_EXTEND_CHAR(48,1606

m-hp9000s300.h,143
#define LOAD_AVE_CVT(86,2512
#define LOAD_AVE_CVT(122,3558
#define SIGN_EXTEND_CHAR(58,1788
#define bcopy(163,4671
#define bzero(164,4707

m-hp9000s800.h,322
#define LOAD_AVE_CVT(77,2393
#define SIGN_EXTEND_CHAR(48,1568
#define XMARKBIT(148,4560
#define XSET(142,4297
#define XSETINT(145,4428
#define XSETMARKBIT(149,4590
#define XSETPNTR(147,4516
#define XSETUINT(146,4472
#define XUINT(140,4223
#define XUNMARK(152,4717
#define bcopy(179,5585
#define bzero(180,5621

m-ibmps2-aix.h,90
#define LOAD_AVE_CVT(182,5226
#define SIGN_EXTEND_CHAR(47,1555
#define alloca(195,5713

m-ibmrs6000.h,198
#define ADDR_CORRECT(97,3000
#define A_TEXT_OFFSET(91,2829
#define N_BADMAG(88,2734
#define N_SYMOFF(90,2797
#define N_TXTOFF(89,2764
#define SIGN_EXTEND_CHAR(43,1438
#define signal(142,4323

m-ibmrt-aix.h,245
#define ADDR_CORRECT(94,2918
#define A_TEXT_OFFSET(89,2753
#define N_BADMAG(86,2658
#define N_SYMOFF(88,2721
#define N_TXTOFF(87,2688
#define SIGN_EXTEND_CHAR(43,1435
#define bcmp(177,6209
#define bzero(176,6168
#define killpg(179,6274

m-ibmrt.h,64
#define LOAD_AVE_CVT(75,2362
#define SIGN_EXTEND_CHAR(48,1561

m-intel386.h,174
#define LOAD_AVE_CVT(75,2343
#define LOAD_AVE_CVT(88,2748
#define LOAD_AVE_CVT(98,3027
#define SIGN_EXTEND_CHAR(47,1549
#define alloca(169,4938
#define signal(177,5111

m-intel860.h,89
#define LOAD_AVE_CVT(77,2405
#define SIGN_EXTEND_CHAR(47,1543
#define alloca(114,3353

m-iris4d.h,274
#define LOAD_AVE_CVT(82,2487
#define SIGN_EXTEND_CHAR(48,1581
#define XMARKBIT(181,5591
#define XSET(174,5323
#define XSETINT(177,5458
#define XSETMARKBIT(182,5621
#define XSETPNTR(179,5546
#define XSETUINT(178,5502
#define XUINT(172,5247
#define XUNMARK(183,5693

m-irist.h,120
#define LOAD_AVE_CVT(109,3650
  Date: 04 May 87 23:53:11 PDT 25,970
#define SIGN_EXTEND_CHAR(78,2816
    if 34,1383

m-is386.h,0

m-isi-ov.h,154
#define A_TEXT_OFFSET(84,2233
#define A_TEXT_SEEK(85,2272
#define LOAD_AVE_CVT(64,1718
#define LOAD_AVE_CVT(66,1788
#define SIGN_EXTEND_CHAR(39,1239

m-masscomp.h,64
#define LOAD_AVE_CVT(76,2412
#define SIGN_EXTEND_CHAR(48,1587

m-mega68.h,64
#define LOAD_AVE_CVT(57,1627
#define SIGN_EXTEND_CHAR(41,1293

m-mg1.h,64
#define LOAD_AVE_CVT(78,2783
#define SIGN_EXTEND_CHAR(49,1815

m-mips.h,217
#define LOAD_AVE_CVT(77,2381
#define SIGN_EXTEND_CHAR(48,1555
#define XSET(176,5239
#define XSETINT(181,5400
#define XSETPNTR(183,5488
#define XSETUINT(182,5444
#define XUINT(174,5161
#define XUNMARK(185,5533

m-mips4.h,0

m-news-risc.h,24
#define alloca(66,1167

m-news.h,64
#define LOAD_AVE_CVT(63,1733
#define SIGN_EXTEND_CHAR(47,1393

m-next.h,95
#define A_TEXT_OFFSET(66,1960
#define LOAD_AVE_CVT(60,1726
#define SIGN_EXTEND_CHAR(44,1375

m-ns16000.h,64
#define LOAD_AVE_CVT(53,1603
#define SIGN_EXTEND_CHAR(37,1266

m-ns32000.h,34
#define SIGN_EXTEND_CHAR(48,1610

m-nu.h,34
#define SIGN_EXTEND_CHAR(42,1342

m-orion.h,64
#define LOAD_AVE_CVT(75,2180
#define SIGN_EXTEND_CHAR(55,1687

m-orion105.h,89
#define LOAD_AVE_CVT(62,1922
#define SIGN_EXTEND_CHAR(44,1488
#define sigmask(66,2078

m-pfa50.h,109
#define SIGN_EXTEND_CHAR(38,1326
#define XGCTYPE(84,2527
#define XTYPE(83,2465
#define sigblock(110,3044

m-plexus.h,34
#define SIGN_EXTEND_CHAR(48,1570

m-pmax.h,0

m-pyramid.h,64
#define LOAD_AVE_CVT(64,1901
#define SIGN_EXTEND_CHAR(49,1513

m-pyrmips.h,216
#define LOAD_AVE_CVT(68,1963
#define SIGN_EXTEND_CHAR(52,1533
#define XSET(100,3021
#define XSETINT(103,3152
#define XSETPNTR(105,3240
#define XSETUINT(104,3196
#define XUINT(98,2947
#define XUNMARK(107,3285

m-seq386.h,0

m-sequent.h,96
#define A_TEXT_OFFSET(133,4218
#define LOAD_AVE_CVT(91,2830
#define SIGN_EXTEND_CHAR(51,1678

m-sgi3000.h,0

m-sparc.h,96
#define A_TEXT_OFFSET(113,3277
#define LOAD_AVE_CVT(73,2011
#define SIGN_EXTEND_CHAR(42,1382

m-stride.h,64
#define LOAD_AVE_CVT(78,2442
#define SIGN_EXTEND_CHAR(47,1565

m-sun1.h,64
#define LOAD_AVE_CVT(60,1698
#define SIGN_EXTEND_CHAR(37,1223

m-sun2.h,64
#define LOAD_AVE_CVT(64,1875
#define SIGN_EXTEND_CHAR(39,1378

m-sun3.h,30
#define A_TEXT_OFFSET(14,334

m-sun386.h,30
#define LOAD_AVE_CVT(35,1155

m-tad68k.h,34
#define SIGN_EXTEND_CHAR(48,1645

m-tahoe.h,64
#define LOAD_AVE_CVT(67,1836
#define SIGN_EXTEND_CHAR(41,1272

m-tandem-s2.h,0

m-targon31.h,89
#define LOAD_AVE_CVT(77,2409
#define SIGN_EXTEND_CHAR(48,1567
#define alloca(106,3397

m-tek4300.h,64
#define LOAD_AVE_CVT(66,1933
#define SIGN_EXTEND_CHAR(47,1512

m-template.h,64
#define LOAD_AVE_CVT(74,2330
#define SIGN_EXTEND_CHAR(48,1553

m-tower32.h,34
#define SIGN_EXTEND_CHAR(48,1590

m-tower32v3.h,34
#define SIGN_EXTEND_CHAR(48,1590

m-triton88.h,0

m-ustation.h,64
#define LOAD_AVE_CVT(76,2368
#define SIGN_EXTEND_CHAR(48,1567

m-vax.h,94
#define LOAD_AVE_CVT(63,1899
#define LOAD_AVE_CVT(75,2138
#define SIGN_EXTEND_CHAR(37,1236

m-wicat.h,82
#define SIGN_EXTEND_CHAR(48,1555
#define bcopy(140,4003
#define bzero(141,4038

macros.h,0

ndir.h,27
#define rewinddir(51,1216

param.h,0

process.h,29
#define ChannelMask(76,2938

regex.h,0

s-386bsd.h,37
#define PENDING_OUTPUT_COUNT(31,771

s-386ix.h,0

s-aix3-1.h,29
#define sigsetmask(175,4626

s-aix3-2.h,0

s-bsd4-1.h,0

s-bsd4-2.h,0

s-bsd4-3.h,0

s-dgux.h,130
#define	_longjmp(208,6237
#define _setjmp(207,6199
#define getpgrp(203,6137
#define setpgrp(202,6092
#define signal(262,7517

s-dgux4-31.h,0

s-esix.h,0

s-esix5r4.h,0

s-hpux7.h,52
#define WRETCODE(259,7124
#define	killpg(252,6984

s-hpux8.h,0

s-iris3-5.h,60
#define ADDR_CORRECT(180,4936
#define sigsetmask(139,3708

s-iris3-6.h,87
#define ADDR_CORRECT(185,5043
#define sigblock(144,3839
#define sigsetmask(143,3793

s-irix3-3.h,0

s-irix4-0.h,0

s-isc2-2.h,0

s-isc3-0.h,0

s-mach2.h,0

s-newsos5.h,0

s-osf1.h,0

s-rtu.h,24
#define fsync(156,4813

s-sco.h,23
#define alloca(34,655

s-sco3-2-1.h,44
#define bcopy(16,436
#define bzero(14,372

s-sco3-2-2.h,0

s-sco3-2-4.h,0

s-sol2.h,0

s-sunos4-0.h,0

s-sunos4-1.h,0

s-template.h,0

s-umax.h,0

s-unipl5-0.h,60
#define ADDR_CORRECT(180,5028
#define sigsetmask(151,4205

s-unipl5-2.h,60
#define ADDR_CORRECT(174,4695
#define sigsetmask(145,3872

s-usg5-0.h,60
#define ADDR_CORRECT(179,4988
#define sigsetmask(144,3931

s-usg5-2-2.h,60
#define ADDR_CORRECT(178,4976
#define sigsetmask(143,3919

s-usg5-2.h,60
#define ADDR_CORRECT(178,4989
#define sigsetmask(143,3932

s-usg5-3.h,60
#define ADDR_CORRECT(195,5352
#define sigsetmask(158,4243

s-usg5-4.h,51
#define WRETCODE(109,2882
#define wait3(107,2798

s-vms.h,39
#define PENDING_OUTPUT_COUNT(251,8090

s-vms4-0.h,0

s-vms4-2.h,0

s-vms4-4.h,0

s-vms5-5.h,0

s-xenix.h,60
#define ADDR_CORRECT(204,5924
#define sigsetmask(175,5085

sink.h,0

sink11.h,0

sink11mask.h,0

sinkmask.h,0

syntax.h,208
#define SYNTAX(51,2020
#define SYNTAX_COMEND_FIRST(74,3170
#define SYNTAX_COMEND_SECOND(77,3297
#define SYNTAX_COMSTART_FIRST(68,2911
#define SYNTAX_COMSTART_SECOND(71,3040
#define SYNTAX_MATCH(57,2258

termchar.h,0

termhooks.h,0

termopts.h,0

uaf.h,0

vlimit.h,0

vms-pwd.h,0

vmspaths.h,0

window.h,0

x11term.h,152
#define BLOCK_INPUT(12,244
#define BLOCK_INPUT(15,388
#define BLOCK_INPUT_DECLARE(10,172
#define UNBLOCK_INPUT(13,312
#define UNBLOCK_INPUT(16,426

xkeys-aix.h,0

xterm.h,390
#define BLOCK_INPUT(23,320
#define BLOCK_INPUT_DECLARE(22,268
#define BLOCK_INPUT_DECLARE(50,908
#define RESIGNAL_INPUT(27,486
#define RESIGNAL_INPUT(54,1040
#define SIGNAL_INPUT(25,442
#define SIGNAL_INPUT_WHILE(34,615
#define UNBLOCK_INPUT(24,388
#define UNBLOCK_INPUT(52,960
#define UNBLOCK_INPUT_RESIGNAL(41,745
#define UNBLOCK_INPUT_RESIGNAL(56,1133
#define sigmask(17,207

abbrev.c,676
DEFUN ("abbrev-expansion", Fabbrev_expansion,189,5635
DEFUN ("abbrev-symbol", Fabbrev_symbol,163,4833
DEFUN ("clear-abbrev-table", Fclear_abbrev_table,87,2581
DEFUN ("define-abbrev", Fdefine_abbrev,102,2962
DEFUN ("define-abbrev-table", Fdefine_abbrev_table,423,12265
DEFUN ("define-global-abbrev", Fdefine_global_abbrev,138,4010
DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,149,4373
DEFUN ("expand-abbrev", Fexpand_abbrev,204,6133
  Finsert_abbrev_table_description,383,11229
DEFUN ("make-abbrev-table", Fmake_abbrev_table,80,2389
DEFUN ("unexpand-abbrev", Funexpand_abbrev,314,9361
describe_abbrev 361,10672
syms_of_abbrev 460,13290
write_abbrev 342,10235

alloc.c,1279
DEFUN ("cons", Fcons,202,5385
DEFUN ("garbage-collect", Fgarbage_collect,796,21342
DEFUN ("list", Flist,234,6294
DEFUN ("make-list", Fmake_list,253,6737
DEFUN ("make-marker", Fmake_marker,422,11091
DEFUN ("make-string", Fmake_string,525,14138
DEFUN ("make-symbol", Fmake_symbol,355,9375
DEFUN ("make-vector", Fmake_vector,275,7258
DEFUN ("purecopy", Fpurecopy,673,18178
DEFUN ("vector", Fvector,306,8139
#define STRING_FULLSIZE(508,13669
#define VALIDATE_LISP_STORAGE(34,1185
build_string 559,14984
clear_marks 933,25417
compact_strings 1368,35666
display_malloc_warning 115,3435
free_cons 195,5266
gc_sweep 1188,31561
init_alloc 1529,40182
init_alloc_once 1510,39728
init_cons 185,5011
init_marker 413,10852
init_strings 512,13761
init_symbol 346,9136
make_pure_string 624,16986
make_pure_vector 658,17836
make_string 548,14767
make_uninit_string 566,15085
malloc_warning 109,3361
malloc_warning_1 98,2944
mark_buffer 1168,31126
mark_object 999,27001
#define max(28,918
memory_full 125,3684
pure_cons 643,17471
int pure[PURESIZE / sizeof 81,2401
int pure[PURESIZE / sizeof 83,2483
char staticvec1[NSTATICS * sizeof 730,19487
staticpro 737,19688
syms_of_alloc 1535,40223
truncate_all_undos 1488,39136
xmalloc 134,3831
xrealloc 147,4048

alloca.c,47
alloca 141,3996
find_stack_direction 85,2553

buffer.c,1598
DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only,742,21565
DEFUN ("buffer-enable-undo", Fbuffer_enable_undo,520,15258
DEFUN ("buffer-file-name", Fbuffer_file_name,336,9855
DEFUN ("buffer-flush-undo", Fbuffer_flush_undo,510,15016
DEFUN ("buffer-list", Fbuffer_list,106,3582
DEFUN ("buffer-local-variables", Fbuffer_local_variables,348,10214
DEFUN ("buffer-modified-p", Fbuffer_modified_p,408,12172
DEFUN ("buffer-name", Fbuffer_name,309,9122
DEFUN ("bury-buffer", Fbury_buffer,752,21883
DEFUN ("current-buffer", Fcurrent_buffer,711,20468
DEFUN ("erase-buffer", Ferase_buffer,897,26503
DEFUN ("generate-new-buffer", Fgenerate_new_buffer,279,8359
DEFUN ("get-buffer", Fget_buffer,113,3726
DEFUN ("get-buffer-create", Fget_buffer_create,150,4850
DEFUN ("get-file-buffer", Fget_file_buffer,128,4151
DEFUN ("kill-all-local-variables", Fkill_all_local_variables,1012,29950
DEFUN ("kill-buffer", Fkill_buffer,540,15726
DEFUN ("list-buffers", Flist_buffers,996,29374
DEFUN ("other-buffer", Fother_buffer,481,14139
DEFUN ("pop-to-buffer", Fpop_to_buffer,692,19820
DEFUN ("rename-buffer", Frename_buffer,456,13390
DEFUN ("set-buffer", Fset_buffer,720,20687
DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p,427,12642
DEFUN ("switch-to-buffer", Fswitch_to_buffer,660,18784
init_buffer 1129,34366
init_buffer_once 1044,31085
keys_of_buffer 1354,43702
list_buffers_1 932,27451
nsberror 98,3409
record_buffer 635,18208
reset_buffer 233,6942
reset_buffer_local_variables(249,7323
set_buffer_internal 790,22915
syms_of_buffer 1147,34839
validate_region 911,26981

bytecode.c,118
#define DISCARD(139,3430
DEFUN ("byte-code", Fbyte_code,146,3573
#define PUSH(131,3274
syms_of_bytecode 727,14021

callint.c,259
DEFUN ("call-interactively", Fcall_interactively,135,4548
DEFUN ("interactive", Finteractive,87,3470
DEFUN ("prefix-numeric-value", Fprefix_numeric_value,460,13569
check_mark 127,4375
quotify_arg 98,3732
quotify_args 110,4023
syms_of_callint 486,14130

callproc.c,234
DEFUN ("call-process", Fcall_process,100,2475
DEFUN ("call-process-region", Fcall_process_region,287,6866
call_process_cleanup 78,2088
child_setup 334,8569
init_callproc 429,11108
#define max(46,1198
syms_of_callproc 465,12187

casefiddle.c,583
DEFUN ("capitalize", Fcapitalize,88,2249
DEFUN ("capitalize-region", Fcapitalize_region,152,4200
DEFUN ("capitalize-word", Fcapitalize_word,217,5963
DEFUN ("downcase", Fdowncase,80,2043
DEFUN ("downcase-region", Fdowncase_region,140,3785
DEFUN ("downcase-word", Fdowncase_word,205,5597
DEFUN ("upcase", Fupcase,72,1845
DEFUN ("upcase-region", Fupcase_region,128,3378
DEFUN ("upcase-word", Fupcase_word,193,5239
casify_object 30,983
casify_region 100,2689
keys_of_casefiddle 244,6703
operate_on_word 177,4929
syms_of_casefiddle 231,6424
upcase_initials_region 169,4799

cm.c,179
Wcm_clear 380,9432
Wcm_init 392,9553
addcol 71,1619
at 61,1504
calccost 147,3842
cmcostinit 107,2475
cmgoto 279,7037
cmputc 44,1159
evalcost 37,1113
losecursor 269,6937

cmds.c,524
DEFUN ("backward-char", Fbackward_char,55,1475
DEFUN ("beginning-of-line", Fbeginning_of_line,102,2662
DEFUN ("delete-backward-char", Fdelete_backward_char,180,4427
DEFUN ("delete-char", Fdelete_char,146,3643
DEFUN ("end-of-line", Fend_of_line,119,3081
DEFUN ("forward-char", Fforward_char,30,967
DEFUN ("forward-line", Fforward_line,70,1833
DEFUN ("newline", Fnewline,208,5295
DEFUN ("self-insert-command", Fself_insert_command,193,4902
keys_of_cmds 330,8442
self_insert_internal 250,6417
syms_of_cmds 305,7788

crt0.c,209
_start 96,3451
_start 119,3847
_start(141,4250
_start 215,5914
_start 298,7839
_start(503,12645
static foo 276,7442
start1 127,3993
start1 223,6030
start1 311,8103
start1 313,8130
start1 481,12333

data.c,2874
DEFUN ("1+", Fadd1,1328,36298
DEFUN ("aref", Faref,940,27011
Farray_length 991,28478
DEFUN ("arrayp", Farrayp,219,5197
DEFUN ("aset", Faset,965,27733
DEFUN ("ash", Fash,1290,35277
DEFUN ("atom", Fatom,147,3706
DEFUN ("boundp", Fboundp,369,8665
DEFUN ("bufferp", Fbufferp,239,5691
DEFUN ("car", Fcar,287,6827
DEFUN ("car-safe", Fcar_safe,303,7158
DEFUN ("cdr", Fcdr,314,7406
DEFUN ("cdr-safe", Fcdr_safe,330,7737
DEFUN ("char-or-string-p", Fchar_or_string_p,276,6520
DEFUN ("consp", Fconsp,138,3537
DEFUN ("default-value", Fdefault_value,608,15266
DEFUN ("eq", Feq,119,3210
DEFUN ("=", Feqlsign,1003,28779
DEFUN ("fboundp", Ffboundp,379,8924
DEFUN ("fmakunbound", Ffmakunbound,398,9412
DEFUN ("fset", Ffset,437,10409
DEFUN (">=", Fgeq,1055,29994
DEFUN (">", Fgtr,1029,29371
DEFUN ("int-to-string", Fint_to_string,1092,30807
DEFUN ("integer-or-marker-p", Finteger_or_marker_p,257,6064
DEFUN ("integerp", Fintegerp,174,4299
DEFUN ("kill-local-variable", Fkill_local_variable,889,25531
DEFUN ("<=", Fleq,1042,29677
DEFUN ("listp", Flistp,156,3896
DEFUN ("logand", Flogand,1263,34639
DEFUN ("logior", Flogior,1272,34849
DEFUN ("lognot", Flognot,1348,36697
DEFUN ("logxor", Flogxor,1281,35058
DEFUN ("lsh", Flsh,1309,35769
DEFUN ("<", Flss,1016,29068
DEFUN ("make-local-variable", Fmake_local_variable,838,23736
DEFUN ("make-variable-buffer-local", Fmake_variable_buffer_local,801,22303
DEFUN ("makunbound", Fmakunbound,389,9206
DEFUN ("markerp", Fmarkerp,248,5873
DEFUN ("max", Fmax,1245,34222
DEFUN ("min", Fmin,1254,34430
DEFUN ("-", Fminus,1197,33145
DEFUN ("natnump", Fnatnump,183,4473
DEFUN ("/=", Fneq,1068,30314
DEFUN ("nlistp", Fnlistp,165,4094
DEFUN ("null", Fnull,129,3393
DEFUN ("+", Fplus,1188,32961
DEFUN ("/", Fquo,1217,33622
DEFUN ("%", Frem,1226,33820
DEFUN ("sequencep", Fsequencep,228,5417
DEFUN ("set", Fset,633,16041
DEFUN ("set-default", Fset_default,726,19784
DEFUN ("setcar", Fsetcar,341,7985
DEFUN ("setcdr", Fsetcdr,354,8302
DEFUN ("setplist", Fsetplist,450,10820
DEFUN ("setq-default", Fsetq_default,785,21868
DEFUN ("string-to-int", Fstring_to_int,1104,31107
DEFUN ("stringp", Fstringp,210,5023
DEFUN ("1-", Fsub1,1338,36497
DEFUN ("subrp", Fsubrp,267,6343
DEFUN ("symbol-function", Fsymbol_function,407,9638
DEFUN ("symbol-name", Fsymbol_name,426,10152
DEFUN ("symbol-plist", Fsymbol_plist,418,9956
DEFUN ("symbol-value", Fsymbol_value,535,12832
DEFUN ("symbolp", Fsymbolp,192,4675
DEFUN ("*", Ftimes,1208,33430
DEFUN ("vectorp", Fvectorp,201,4849
DEFUN ("zerop", Fzerop,1081,30622
args_out_of_range 76,2417
args_out_of_range_3 84,2555
arith_error 1599,44050
do_symval_forwarding 466,11225
init_data 1621,44490
make_number 92,2722
pure_write_error 70,2339
sign_extend_lisp_int 108,3019
store_symval_forwarding 495,11823
syms_of_data 1359,36907
wrong_type_argument 49,1749

dired.c,491
DEFUN ("directory-files", Fdirectory_files,73,1721
DEFUN ("file-attributes", Ffile_attributes,416,11462
DEFUN ("file-name-all-completions", Ffile_name_all_completions,160,4307
DEFUN ("file-name-all-versions", Ffile_name_all_versions,171,4604
DEFUN ("file-name-completion", Ffile_name_completion,140,3478
#define NAMLEN(31,962
#define NAMLEN(42,1184
file_name_completion 183,4907
file_name_completion_stat 377,10514
make_time 409,11336
#define min(58,1399
syms_of_dired 487,13873

dispnew.c,1440
DEFUN ("baud-rate", Fbaud_rate,1351,37928
DEFUN ("ding", Fding,1378,38620
DEFUN ("open-termscript", Fopen_termscript,1194,33027
DEFUN ("screen-height", Fscreen_height,1238,34459
DEFUN ("screen-width", Fscreen_width,1245,34633
DEFUN ("send-string-to-terminal", Fsend_string_to_terminal,1360,38113
DEFUN ("set-screen-height", Fset_screen_height,1214,33601
DEFUN ("set-screen-width", Fset_screen_width,1226,34031
DEFUN ("sit-for", Fsit_for,1504,41552
DEFUN ("sleep-for", Fsleep_for,1409,39193
#define	PENDING_OUTPUT_COUNT(82,2066
#define PENDING_OUTPUT_COUNT(84,2143
bell 1398,38963
cancel_line 345,8765
cancel_my_columns 563,14897
change_screen_size 1297,36240
change_screen_size_1 1318,36882
clear_screen_records 351,8836
count_blanks 1177,32753
count_match 1185,32866
direct_output_for_insert 584,15674
direct_output_forward_char 637,17231
do_pending_window_change 1271,35292
free_screen_structure 263,7015
get_display_line 363,9099
init_display 1567,43189
line_draw_cost 321,8164
line_hash_code 278,7343
make_screen_structure 224,5795
#define max(74,1733
#define min(75,1775
preserve_other_columns 522,13666
quit_error_check 791,21526
remake_screen_structures 188,4760
rotate_vector 473,12578
safe_bcopy 490,12950
scroll_screen_lines 393,9899
scrolling 803,21744
syms_of_display 1634,44793
timeval_subtract 1476,40717
update_line 876,24089
update_screen 666,18180
window_change_signal 1253,34821

doc.c,293
DEFUN ("documentation", Fdocumentation,103,2474
DEFUN ("documentation-property", Fdocumentation_property,151,4180
DEFUN ("Snarf-documentation", Fsnarf_documentation,167,4696
DEFUN ("substitute-command-keys", Fsubstitute_command_keys,278,7748
get_doc_string 39,1091
syms_of_doc 425,11982

doprnt.c,15
doprnt 26,966

editfns.c,2442
DEFUN ("bobp", Fbobp,408,10985
DEFUN ("bolp", Fbolp,428,11439
DEFUN ("buffer-string", Fbuffer_string,643,16397
DEFUN ("buffer-substring", Fbuffer_substring,626,15954
DEFUN ("buffer-size", Fbufsize,338,9217
DEFUN ("char-after", Fchar_after,447,11867
DEFUN ("char-equal", Fchar_equal,1018,26672
DEFUN ("char-to-string", Fchar_to_string,122,3575
DEFUN ("current-time-string", Fcurrent_time_string,511,13386
DEFUN ("delete-region", Fdelete_region,752,19086
DEFUN ("eobp", Feobp,418,11219
DEFUN ("eolp", Feolp,437,11626
DEFUN ("following-char", Ffollchar,384,10479
DEFUN ("format", Fformat,901,23506
DEFUN ("getenv", Fgetenv,1035,27222
DEFUN ("goto-char", Fgoto_char,190,4923
DEFUN ("insert", Finsert,527,13732
DEFUN ("insert-before-markers", Finsert_before_markers,559,14390
DEFUN ("insert-buffer-substring", Finsert_buffer_substring,652,16628
DEFUN ("insert-char", Finsert_char,593,15235
DEFUN ("mark", Fmark,231,5933
DEFUN ("mark-marker", Fmark_marker,241,6257
DEFUN ("message", Fmessage,882,22868
DEFUN ("narrow-to-region", Fnarrow_to_region,776,19757
DEFUN ("point", Fpoint,161,4397
DEFUN ("point-marker", Fpoint_marker,171,4600
DEFUN ("point-max", Fpoint_max,365,9922
DEFUN ("point-max-marker", Fpoint_max_marker,376,10222
DEFUN ("point-min", Fpoint_min,347,9402
DEFUN ("point-min-marker", Fpoint_min_marker,357,9658
DEFUN ("preceding-char", Fprevchar,396,10729
DEFUN ("region-beginning", Fregion_beginning,216,5582
DEFUN ("region-end", Fregion_end,223,5755
DEFUN ("save-excursion", Fsave_excursion,321,8708
DEFUN ("save-restriction", Fsave_restriction,859,21991
DEFUN ("set-mark", Fset_mark,251,6565
DEFUN ("string-to-char", Fstring_to_char,134,3815
DEFUN ("subst-char-in-region", Fsubst_char_in_region,711,18062
DEFUN ("system-name", Fsystem_name,504,13225
DEFUN ("user-full-name", Fuser_full_name,497,13059
DEFUN ("user-login-name", Fuser_login_name,466,12292
DEFUN ("user-real-login-name", Fuser_real_login_name,474,12513
DEFUN ("user-real-uid", Fuser_real_uid,490,12900
DEFUN ("user-uid", Fuser_uid,483,12750
DEFUN ("widen", Fwiden,764,19425
buildmark 152,4245
clip_to_bounds 179,4753
format1 996,26244
format1 999,26337
init_editfns 49,1428
insert1 521,13670
#define max(39,1064
#define min(38,1022
region_limit 204,5306
save_excursion_restore 295,7928
save_excursion_save 286,7696
save_restriction_restore 828,21285
save_restriction_save 815,20899
syms_of_editfns 1052,27649

emacs.c,366
DEFUN ("dump-emacs", Fdump_emacs,673,16359
DEFUN ("dump-emacs-data", Fdump_emacs_data,642,15620
DEFUN ("kill-emacs", Fkill_emacs,577,14314
__do_clobal_ctors 222,5186
__do_clobal_ctors_aux 224,5210
__do_global_dtors 226,5238
__main 230,5358
decode_env_path 724,17538
fatal_error_signal 137,3333
init_cmdargs 186,4360
main 236,5440
syms_of_emacs 753,18070

environ.c,331
DEFUN ("getenv", Fgetenv,258,6379
DEFUN ("setenv", Fsetenv,284,7178
current_environ 208,5295
egetenv 137,3690
get_current_environ 171,4399
getenv 130,3583
getenv_1 72,1745
init_environ 311,7752
initialize_environment_alist 56,1429
set_environment_alist 35,1016
size_of_current_environ 146,3852
syms_of_environ 304,7649

eval.c,1811
DEFUN ("and", Fand,196,5000
DEFUN ("apply", Fapply,1469,38837
DEFUN ("autoload", Fautoload,1180,31385
DEFUN ("backtrace", Fbacktrace,2050,52779
DEFUN ("backtrace-debug", Fbacktrace_debug,2028,52236
DEFUN ("catch", Fcatch,772,19856
DEFUN ("commandp", Fcommandp,1130,29770
DEFUN ("cond", Fcond,245,6042
DEFUN ("condition-case", Fcondition_case,914,23823
DEFUN ("defconst", Fdefconst,539,13532
DEFUN ("defmacro", Fdefmacro,488,11940
DEFUN ("defun", Fdefun,470,11455
DEFUN ("defvar", Fdefvar,509,12651
DEFUN ("eval", Feval,1272,34099
DEFUN ("funcall", Ffuncall,1672,43489
DEFUN ("function", Ffunction,421,9850
DEFUN ("if", Fif,226,5571
DEFUN ("interactive-p", Finteractive_p,432,10144
DEFUN ("let", Flet,617,15879
DEFUN ("let*", FletX,582,14945
DEFUN ("macroexpand", Fmacroexpand,693,17766
DEFUN ("or", For,166,4433
DEFUN ("prog1", Fprog1,315,7654
DEFUN ("prog2", Fprog2,348,8320
DEFUN ("progn", Fprogn,277,6879
DEFUN ("quote", Fquote,413,9665
DEFUN ("setq", Fsetq,383,9003
DEFUN ("signal", Fsignal,1017,26508
DEFUN ("throw", Fthrow,855,22212
DEFUN ("unwind-protect", Funwind_protect,885,22907
DEFUN ("user-variable-p", Fuser_variable_p,563,14310
DEFUN ("while", Fwhile,671,17350
apply1 1555,41214
apply_lambda 1811,47068
call0 1588,41948
call1 1597,42081
call2 1622,42543
call3 1648,43041
call_debugger 143,3802
do_autoload 1242,33270
do_debug_on_call 154,4093
error 1121,29611
find_handler_clause 1081,28541
funcall_lambda 1856,48200
grow_specpdl 1909,49469
init_eval 131,3619
init_eval_once 123,3432
internal_catch 795,20616
internal_condition_case 979,25687
record_unwind_protect 1953,50632
specbind 1931,50063
syms_of_eval 2104,54045
top_level_set 2009,51905
top_level_value 1994,51622
un_autoload 1219,32737
unbind_catch 836,21825
unbind_to 1966,50911

fileio.c,2234
DEFUN ("add-name-to-file", Fadd_name_to_file,1200,29934
DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,2008,52242
DEFUN ("copy-file", Fcopy_file,1045,25150
DEFUN ("define-logical-name", Fdefine_logical_name,1299,33301
DEFUN ("delete-file", Fdelete_file,1135,27842
DEFUN ("directory-file-name", Fdirectory_file_name,418,10168
DEFUN ("do-auto-save", Fdo_auto_save,2042,53029
DEFUN ("expand-file-name", Fexpand_file_name,457,11410
DEFUN ("file-directory-p", Ffile_directory_p,1462,37598
DEFUN ("file-exists-p", Ffile_exists_p,1369,35084
DEFUN ("file-modes", Ffile_modes,1479,38165
DEFUN ("file-name-absolute-p", Ffile_name_absolute_p,1346,34482
DEFUN ("file-name-as-directory", Ffile_name_as_directory,258,5853
DEFUN ("file-name-directory", Ffile_name_directory,131,2916
DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,160,3654
DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p,1539,39908
DEFUN ("file-readable-p", Ffile_readable_p,1387,35600
DEFUN ("file-symlink-p", Ffile_symlink_p,1400,35989
DEFUN ("file-writable-p", Ffile_writable_p,1442,36978
DEFUN ("insert-file-contents", Finsert_file_contents,1574,40738
DEFUN ("make-symbolic-link", Fmake_symbolic_link,1241,31325
DEFUN ("make-temp-name", Fmake_temp_name,446,11113
DEFUN ("read-file-name", Fread_file_name,2215,58187
DEFUN ("read-file-name-internal", Fread_file_name_internal,2137,56152
DEFUN ("recent-auto-save-p", Frecent_auto_save_p,2126,55778
DEFUN ("rename-file", Frename_file,1148,28305
DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,2115,55432
DEFUN ("set-file-modes", Fset_file_modes,1494,38536
DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,800,19443
DEFUN ("sysnetunam", Fsysnetunam,1327,34062
DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,1974,51189
DEFUN ("write-region", Fwrite_region,1706,44252
auto_save_1 2034,52906
auto_save_error 2019,52544
barf_or_query_if_file_exists 1019,24454
close_file_unwind 1568,40664
directory_file_name 287,6807
e_write 1941,50598
#define err_str(52,1224
expand_and_dir_to_file 993,23722
file_name_as_directory 186,4272
#define max(95,1882
#define min(94,1840
report_file_error 110,2324
syms_of_fileio 2275,60006

filelock.c,600
# define CREATE_LOCK_FILE_NAME(104,2953
# define CREATE_LOCK_FILE_NAME(110,3115
DEFUN ("file-locked-p", Ffile_locked_p,398,9605
DEFUN ("lock-buffer", Flock_buffer,357,8583
DEFUN ("unlock-buffer", Funlock_buffer,375,9034
current_lock_owner 268,6945
current_lock_owner_1 283,7287
static dummy 50,1211
fill_in_lock_file_name 156,4325
fill_in_lock_short_file_name 176,4640
lock_file 119,3295
lock_file_1 216,5820
lock_file_owner_name 63,1442
lock_if_free 244,6378
lock_superlock 315,7793
syms_of_filelock 421,10162
unlock_all_files 341,8228
unlock_buffer 390,9413
unlock_file 300,7549

filemode.c,73
filemodestring 78,2555
ftypelet(102,3253
rwx 155,4052
setst 168,4368

fns.c,1454
DEFUN ("append", Fappend,205,5060
DEFUN ("assoc", Fassoc,529,13491
DEFUN ("assq", Fassq,489,12469
DEFUN ("concat", Fconcat,216,5396
DEFUN ("copy-alist", Fcopy_alist,374,9429
DEFUN ("copy-sequence", Fcopy_sequence,238,6110
DEFUN ("delq", Fdelq,569,14596
DEFUN ("elt", Felt,453,11582
DEFUN ("equal", Fequal,779,19324
DEFUN ("featurep", Ffeaturep,1302,32124
DEFUN ("fillarray", Ffillarray,833,20779
DEFUN ("get", Fget,734,18159
DEFUN ("identity", Fidentity,75,1886
DEFUN ("length", Flength,104,2629
DEFUN ("load-average", Fload_average,1143,28250
DEFUN ("mapcar", Fmapcar,1011,24814
DEFUN ("mapconcat", Fmapconcat,975,23922
DEFUN ("memq", Fmemq,471,12004
DEFUN ("nconc", Fnconc,879,21817
DEFUN ("nreverse", Fnreverse,601,15328
DEFUN ("nth", Fnth,444,11364
DEFUN ("nthcdr", Fnthcdr,427,11026
DEFUN ("provide", Fprovide,1317,32645
DEFUN ("put", Fput,752,18631
DEFUN ("random", Frandom,83,2021
DEFUN ("rassq", Frassq,549,14051
DEFUN ("require", Frequire,1332,33076
DEFUN ("reverse", Freverse,622,15764
DEFUN ("sort", Fsort,643,16345
DEFUN ("string-equal", Fstring_equal,138,3266
DEFUN ("string-lessp", Fstring_lessp,157,3896
DEFUN ("substring", Fsubstring,400,10147
DEFUN ("vconcat", Fvconcat,227,5765
DEFUN ("y-or-n-p", Fy_or_n_p,1032,25344
DEFUN ("yes-or-no-p", Fyes_or_no_p,1082,26721
assq_no_quit 513,13140
concat 250,6505
concat2 192,4821
mapcar1 926,22827
merge 675,17144
nconc2 866,21611
syms_of_fns 1364,34019

hftctl.c,176
#define BYTE4(99,4062
GT_ACK 214,7466
#define HFTYPE(97,4006
#define RD_BUF(102,4162
WR_REQ 302,10707
hfqry 202,7170
hfskbd 191,6889
hft_alrm 279,9676
hftctl 122,4733

indent.c,501
DEFUN ("current-column", Fcurrent_column,50,1592
DEFUN ("current-indentation", Fcurrent_indentation,235,6018
DEFUN ("indent-to", Findent_to,187,4824
DEFUN ("move-to-column", Fmove_to_column,284,7056
DEFUN ("vertical-motion", Fvertical_motion,591,15252
ToCol 152,4157
compute_motion 346,8676
current_column 74,2396
invalidate_current_column 68,2327
#define max(36,1110
#define min(35,1068
pos_tab_offset 480,12270
position_indentation 248,6358
syms_of_indent 617,16110
vmotion 505,12836

insdel.c,339
InsStr 244,5626
adjust_markers 166,3931
del_range 356,8312
gap_left 41,1218
gap_right 104,2505
insert 254,5849
insert_before_markers 333,7722
insert_char 236,5509
insert_from_string 292,6770
insert_from_string_before_markers 344,7989
make_gap 198,4546
modify_region 404,9285
move_gap 29,960
prepare_to_modify_buffer 416,9575

keyboard.c,2235
DEFUN ("abort-recursive-edit", Fabort_recursive_edit,572,13916
DEFUN ("command-execute", Fcommand_execute,1647,40381
DEFUN ("discard-input", Fdiscard_input,1840,45730
DEFUN ("execute-extended-command", Fexecute_extended_command,1710,42036
DEFUN ("exit-recursive-edit", Fexit_recursive_edit,563,13640
DEFUN ("input-pending-p", Finput_pending_p,1778,44013
DEFUN ("open-dribble-file", Fopen_dribble_file,1822,45288
DEFUN ("read-key-sequence", Fread_key_sequence,1623,39635
DEFUN ("recent-keys", Frecent_keys,1788,44329
DEFUN ("recursion-depth", Frecursion_depth,1813,45066
DEFUN ("recursive-edit", Frecursive_edit,363,9103
DEFUN ("set-input-mode", Fset_input_mode,2094,52892
DEFUN ("suspend-emacs", Fsuspend_emacs,1858,46092
DEFUN ("this-command-keys", Fthis_command_keys,1806,44849
DEFUN ("top-level", Ftop_level,556,13507
cancel_echoing 349,8841
clear_input_pending 1773,43964
clear_waiting_for_input 1972,49427
cmd_error 419,10273
command_loop 504,12243
command_loop_1 587,14343
command_loop_2 528,12921
consume_available_input 1236,30348
detect_input_pending 1762,43649
echo 327,8448
echo_char 279,7528
echo_dash 311,8118
echo_prompt 264,7254
fast_read_one_key 1434,35107
force_input_read 1172,28327
get_input_pending 1184,28589
gobble_input 1341,33017
init_keyboard 2128,54012
input_available_signal 1357,33235
input_poll_signal 848,20957
interrupt_signal 1992,50107
kbd_buffer_read_command_char 1109,26879
kbd_buffer_store_char 1079,26406
keys_of_keyboard 2281,58985
#define	max(255,7015
#define	min(254,6980
print_help 1064,26035
quit_throw_to_read_command_char 2079,52574
read_avail_input 1256,30893
read_command_char 901,21947
read_key_sequence 1497,36596
record_auto_save 356,8985
recursive_edit_1 388,9764
recursive_edit_unwind 408,10087
request_echo 802,20103
set_waiting_for_input 1948,48856
#define sigblockx(210,5788
#define sigblockx(218,6025
#define sigfree(208,5695
#define sigholdx(209,5739
#define sigpausex(212,5885
#define sigpausex(220,6102
#define sigunblockx(211,5836
#define sigunblockx(219,6062
start_polling 863,21255
stop_polling 881,21532
stuff_buffered_input 1919,48225
syms_of_keyboard 2178,55160
top_level_1 544,13159
top_level_2 538,13098

keymap.c,1915
DEFUN ("accessible-keymaps", Faccessible_keymaps,553,14523
DEFUN ("apropos", Fapropos,1214,29789
DEFUN ("copy-keymap", Fcopy_keymap,232,5721
DEFUN ("current-global-map", Fcurrent_global_map,546,14372
DEFUN ("current-local-map", Fcurrent_local_map,539,14186
DEFUN ("define-key", Fdefine_key,272,7003
DEFUN ("define-prefix-command", Fdefine_prefix_command,504,13360
DEFUN ("describe-bindings", Fdescribe_bindings,868,21922
DEFUN ("global-key-binding", Fglobal_key_binding,430,11046
DEFUN ("global-set-key", Fglobal_set_key,442,11453
DEFUN ("global-unset-key", Fglobal_unset_key,482,12778
DEFUN ("key-binding", Fkey_binding,389,9888
DEFUN ("key-description", Fkey_description,605,15967
DEFUN ("keymapp", Fkeymapp,113,3125
DEFUN ("local-key-binding", Flocal_key_binding,416,10615
DEFUN ("local-set-key", Flocal_set_key,459,12071
DEFUN ("local-unset-key", Flocal_unset_key,492,13048
DEFUN ("lookup-key", Flookup_key,336,8688
DEFUN ("make-keymap", Fmake_keymap,65,1836
DEFUN ("make-sparse-keymap", Fmake_sparse_keymap,75,2118
DEFUN ("single-key-description", Fsingle_key_description,679,17183
DEFUN ("text-char-description", Ftext_char_description,722,17948
DEFUN ("use-global-map", Fuse_global_map,514,13641
DEFUN ("use-local-map", Fuse_local_map,525,13890
DEFUN ("where-is", Fwhere_is,848,21205
DEFUN ("where-is-internal", Fwhere_is_internal,737,18310
access_keymap 189,4829
apropos1 1146,28226
apropos_accum 1133,27875
describe_alist 995,25040
describe_buffer_bindings 880,22314
describe_command 948,23899
describe_map 975,24542
describe_map_tree 915,23212
describe_vector 1051,26222
get_keyelt 169,4385
get_keymap 162,4288
get_keymap_1 138,3786
insert_first_line 1185,29242
keys_of_keymap 1325,33329
#define min(28,909
ndefkey 89,2542
push_key_description 616,16333
push_text_char_description 697,17588
store_in_keymap 207,5210
syms_of_keymap 1237,30659
synkey 102,2866

lastfile.c,22
static dummy 40,1506

lread.c,1085
DEFUN ("eval-current-buffer", Feval_current_buffer,418,10471
DEFUN ("eval-region", Feval_region,439,11140
DEFUN ("get-file-char", Fget_file_char,152,3793
DEFUN ("intern", Fintern,933,22501
DEFUN ("intern-soft", Fintern_soft,964,23283
DEFUN ("load", Fload,164,4047
DEFUN ("mapatoms", Fmapatoms,1068,25761
DEFUN ("read", Fread,470,12158
DEFUN ("read-char", Fread_char,136,3474
DEFUN ("read-from-string", Fread_from_string,502,13200
#define UNREAD(129,3309
absolute_filename_p 239,6228
check_obarray 899,21664
defalias 1136,27471
defsubr 1126,27263
defvar_bool 1167,28298
defvar_int 1153,27987
defvar_lisp 1180,28594
defvar_lisp_nopro 1196,29034
defvar_per_buffer 1212,29446
hash_string 1021,24821
init_obarray 1086,26160
init_read 1235,30066
intern 916,22070
load_unwind 228,5985
map_obarray 1040,25172
mapatoms_1 1062,25672
oblookup 985,23847
openp 264,6999
read0 545,14406
read1 565,14770
read_escape 818,20341
read_list 757,18824
read_vector 725,18028
static int readchar 68,1795
readevalloop 360,9381
syms_of_read 1282,31353
unreadpure 353,9264

macros.c,380
DEFUN ("call-last-kbd-macro", Fcall_last_kbd_macro,137,3802
DEFUN ("end-kbd-macro", Fend_kbd_macro,72,2084
DEFUN ("execute-kbd-macro", Fexecute_kbd_macro,165,4552
DEFUN ("start-kbd-macro", Fstart_kbd_macro,41,1132
finalize_kbd_macro_chars 132,3735
init_macros 207,5618
keys_of_macros 238,6479
pop_kbd_macro 155,4376
store_kbd_macro_char 113,3205
syms_of_macros 215,5718

malloc.c,523
#define ASSERT(176,5873
#define ASSERT(179,5974
#define CHAIN(164,5419
calloc 607,16050
cfree 621,16276
free 488,13322
get_lim_data 748,18703
get_lim_data 764,18953
get_lim_data 771,19046
getpool 374,10270
malloc 413,11140
malloc_init 218,6870
malloc_mem_free 719,18126
malloc_mem_used 700,17869
malloc_stats 675,17506
malloc_usable_size 233,7154
memalign 630,16350
morecore 244,7387
realloc 545,14491
#define start_of_data(108,3475
#define start_of_data(113,3535
sys_sbrk 827,20989
valloc 657,17217

marker.c,294
DEFUN ("copy-marker", Fcopy_marker,265,6431
DEFUN ("marker-buffer", Fmarker_buffer,27,879
DEFUN ("marker-position", Fmarker_position,45,1394
DEFUN ("set-marker", Fset_marker,74,2047
marker_position 244,5990
set_marker_restricted 138,3645
syms_of_marker 291,7063
unchain_marker 199,5039

minibuf.c,1458
DEFUN ("all-completions", Fall_completions,546,16915
DEFUN ("completing-read", Fcompleting_read,654,19925
DEFUN ("display-completion-list", Fdisplay_completion_list,981,28898
DEFUN ("eval-minibuffer", Feval_minibuffer,258,8273
DEFUN ("exit-minibuffer", Fexit_minibuffer,1056,31120
DEFUN ("minibuffer-complete", Fminibuffer_complete,811,24527
DEFUN ("minibuffer-complete-and-exit", Fminibuffer_complete_and_exit,832,24952
DEFUN ("minibuffer-complete-word", Fminibuffer_complete_word,870,25696
DEFUN ("minibuffer-completion-help", Fminibuffer_completion_help,1026,30241
DEFUN ("minibuffer-depth", Fminibuffer_depth,1063,31267
DEFUN ("read-buffer", Fread_buffer,325,10555
DEFUN ("read-command", Fread_command,291,9522
DEFUN ("read-from-minibuffer", Fread_from_minibuffer,224,6867
DEFUN ("read-function", Fread_function,302,9833
DEFUN ("read-minibuffer", Fread_minibuffer,245,7765
DEFUN ("read-no-blanks-input", Fread_no_blanks_input,279,9089
DEFUN ("read-string", Fread_string,270,8744
DEFUN ("read-variable", Fread_variable,313,10153
DEFUN ("self-insert-and-exit", Fself_insert_and_exit,1048,30919
DEFUN ("try-completion", Ftry_completion,354,11417
assoc_for_completion 785,23936
do_completion 715,21967
get_minibuffer 172,5291
init_minibuf_once 1071,31470
keys_of_minibuf 1154,34197
#define min(29,939
read_minibuf 79,2354
read_minibuf_unwind 202,6006
scmp 525,16597
syms_of_minibuf 1077,31556
temp_echo_area_contents 682,21275

mocklisp.c,436
DEFUN ("insert-string", Finsert_string,197,4972
DEFUN ("ml-arg", Fml_arg,116,2815
DEFUN ("ml-if", Fml_if,45,1283
DEFUN ("ml-interactive", Fml_interactive,127,3172
DEFUN ("ml-nargs", Fml_nargs,108,2600
DEFUN ("ml-prefix-argument-loop", Fml_prefix_argument_loop,147,3732
DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument,134,3375
DEFUN ("ml-substr", Fml_substr,179,4371
ml_apply 96,2352
syms_of_mocklisp 228,5680

pre-crt0.c,0

print.c,540
DEFUN ("prin1", Fprin1,338,8274
DEFUN ("prin1-to-string", Fprin1_to_string,366,9078
DEFUN ("princ", Fprinc,394,9902
DEFUN ("print", Fprint,416,10503
DEFUN ("terpri", Fterpri,320,7881
DEFUN ("with-output-to-temp-buffer", Fwith_output_to_temp_buffer,284,6814
DEFUN ("write-char", Fwrite_char,191,4917
#define PRINTCHAR(92,2885
internal_with_output_to_temp_buffer 264,6387
print 452,11426
printchar 98,3027
strout 141,3797
syms_of_print 673,16494
temp_output_buffer_setup 246,6011
write_string 211,5407
write_string_1 228,5707

process.c,3023
#define FD_CLR(270,6528
#define FD_ISSET(271,6571
#define FD_SET(269,6486
#define FD_ZERO(272,6614
DEFUN ("accept-process-output", Faccept_process_output,1541,40832
DEFUN ("continue-process", Fcontinue_process,2342,63420
DEFUN ("delete-process", Fdelete_process,630,15492
DEFUN ("get-buffer-process", Fget_buffer_process,583,14363
DEFUN ("get-process", Fget_process,572,14071
DEFUN ("interrupt-process", Finterrupt_process,2293,61738
DEFUN ("kill-process", Fkill_process,2308,62345
DEFUN ("list-processes", Flist_processes,951,24532
DEFUN ("open-network-stream", Fopen_network_stream,1369,35955
DEFUN ("process-buffer", Fprocess_buffer,755,19548
DEFUN ("process-command", Fprocess_command,730,18784
DEFUN ("process-exit-status", Fprocess_exit_status,692,17551
DEFUN ("process-filter", Fprocess_filter,792,20638
DEFUN ("process-id", Fprocess_id,708,18138
DEFUN ("process-kill-without-query", Fprocess_kill_without_query,827,21667
DEFUN ("process-list", Fprocess_list,962,24860
DEFUN ("process-mark", Fprocess_mark,767,19858
DEFUN ("process-name", Fprocess_name,719,18456
DEFUN ("process-send-eof", Fprocess_send_eof,2356,63833
DEFUN ("process-send-region", Fprocess_send_region,2098,56514
DEFUN ("process-send-string", Fprocess_send_string,2121,57113
DEFUN ("process-sentinel", Fprocess_sentinel,816,21376
DEFUN ("process-status", Fprocess_status,657,16400
DEFUN ("processp", Fprocessp,564,13898
DEFUN ("quit-process", Fquit_process,2318,62678
DEFUN ("set-process-buffer", Fset_process_buffer,742,19202
DEFUN ("set-process-filter", Fset_process_filter,777,20095
DEFUN ("set-process-sentinel", Fset_process_sentinel,803,20934
DEFUN ("start-process", Fstart_process,969,25011
DEFUN ("stop-process", Fstop_process,2328,63026
DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p,2020,54563
#define NETCONN_P(123,2849
#define NETCONN_P(125,2924
#define WCOREDUMP(151,3779
#define WCOREDUMP(162,3975
#define WIFEXITED(146,3635
#define WIFEXITED(186,4468
#define WIFSIGNALED(145,3575
#define WIFSIGNALED(183,4374
#define WIFSTOPPED(144,3534
#define WIFSTOPPED(180,4302
#define WRETCODE(147,3672
#define WRETCODE(161,3943
#define WSTOPSIG(148,3701
#define WSTOPSIG(177,4244
#define WTERMSIG(149,3730
#define WTERMSIG(174,4188
allocate_pty 405,10185
close_process_descs 1519,40380
create_process 1062,27562
create_process_1 1034,26973
create_process_sigchld 1052,27441
deactivate_process 1491,39644
decode_status 339,8560
static dummy 29,1005
exec_sentinel 2655,72178
get_process 607,15017
init_process 2677,72719
kill_buffer_processes 2389,64730
list_processes_1 843,22195
make_process 507,12435
process_send_signal 2142,57820
read_process_output 1949,52680
remove_process 552,13638
run_filter 1936,52289
send_process 2042,55085
send_process_trap 2033,54946
sigchld_handler 2430,66243
status_convert 320,8028
status_message 366,9075
status_notify 2555,69354
syms_of_process 2698,73082
update_status 306,7665
wait_reading_process_input 1582,42328

regex.c,531
#define PATFETCH(140,3614
#define PATFETCH_RAW(145,3747
#define PATPUSH(138,3572
#define SIGN_EXTEND_CHAR(100,2436
#define SYNTAX(49,1571
bcmp_translate 1537,39895
error 1718,44565
init_syntax_once 60,1708
insert_jump 679,16174
main 1630,42648
print_buf 1679,43653
printchar 1704,44340
re_comp 1558,40305
re_compile_fastmap 700,16836
re_compile_pattern 172,4457
re_exec 1580,40767
re_match 1004,24329
re_match_2 1036,25423
re_search 881,20973
re_search_2 903,21776
re_set_syntax 113,2793
store_jump 662,15726

scroll.c,239
CalcIDCosts 429,13526
CalcIDCosts1 464,14845
CalcLID 491,15737
calculate_scrolling 93,3268
do_scrolling 226,7572
#define max(27,937
#define min(28,979
scroll_cost 375,11666
scrolling_1 58,1834
scrolling_max_lines_saved 331,10607

search.c,1140
DEFUN ("looking-at", Flooking_at,109,3300
DEFUN ("match-beginning", Fmatch_beginning,1101,32918
DEFUN ("match-data", Fmatch_data,1123,33789
DEFUN ("match-end", Fmatch_end,1112,33363
DEFUN ("re-search-backward", Fre_search_backward,929,27320
DEFUN ("re-search-forward", Fre_search_forward,947,28255
DEFUN ("regexp-quote", Fregexp_quote,1213,36101
DEFUN ("replace-match", Freplace_match,963,29052
DEFUN ("search-backward", Fsearch_backward,868,24233
DEFUN ("search-forward", Fsearch_forward,884,25022
DEFUN ("skip-chars-backward", Fskip_chars_backward,295,7783
DEFUN ("skip-chars-forward", Fskip_chars_forward,282,7247
DEFUN ("store-match-data", Fstore_match_data,1167,35011
DEFUN ("string-match", Fstring_match,158,4394
DEFUN ("word-search-backward", Fword_search_backward,899,25785
DEFUN ("word-search-forward", Fword_search_forward,914,26563
compile_pattern 71,2539
find_next_newline 276,7129
match_limit 1085,32541
#define max(28,919
#define min(29,961
scan_buffer 199,5615
search_buffer 453,11352
search_command 385,9639
signal_failure 102,3189
skip_chars 305,8084
syms_of_search 1269,37303
wordify 824,23345

sunfns.c,644
#define CHECK_GFX(72,2332
#define CtoSX(64,2109
#define CtoSY(65,2151
       Fsit_for_millisecs,163,5489
	Fsleep_for_millisecs,195,6416
	Fsun_change_cursor_icon,222,6915
DEFUN ("sun-get-selection", Fsun_get_selection,354,10081
       Fsun_menu_internal,436,12164
DEFUN ("sun-set-selection", Fsun_set_selection,332,9491
DEFUN ("sun-window-init", Fsun_window_init,113,3897
DEFUN ("update-display", Fupdate_display,209,6666
#define StoCX(68,2223
#define StoCY(69,2265
make_menu_label 415,11671
sel_clear 287,8559
sel_read 294,8644
sel_write 278,8393
sun_item_create 366,10369
sun_menu_create 395,11179
syms_of_sunfns(509,14367

syntax.c,927
DEFUN ("backward-prefix-chars", Fbackward_prefix_chars,762,19167
DEFUN ("char-syntax", Fchar_syntax,138,4387
DEFUN ("copy-syntax-table", Fcopy_syntax_table,70,1898
DEFUN ("describe-syntax", Fdescribe_syntax,353,10079
DEFUN ("forward-word", Fforward_word,427,11482
DEFUN ("modify-syntax-entry", Fmodify_syntax_entry,179,6254
DEFUN ("parse-partial-sexp", Fparse_partial_sexp,1036,26570
DEFUN ("scan-lists", Fscan_lists,719,17600
DEFUN ("scan-sexps", Fscan_sexps,743,18502
DEFUN ("set-syntax-table", Fset_syntax_table,92,2560
DEFUN ("standard-syntax-table", Fstandard_syntax_table,61,1683
DEFUN ("syntax-table", Fsyntax_table,53,1482
DEFUN ("syntax-table-p", Fsyntax_table_p,30,986
char_quoted 705,17318
check_syntax_table 42,1275
describe_syntax 236,7597
describe_syntax_1 343,9827
init_syntax_once 1067,27601
scan_lists 450,11996
scan_sexps_forward 797,20336
scan_words 368,10634
syms_of_syntax 1105,28941

sysdep.c,3361
#define DESCRIPTOR(2933,69402
#define ITEMSETUP(2946,69684
#define OSPEED(192,4306
#define OSPEED(226,5133
#define OSPEED(379,8013
#define SETOSPEED(195,4373
#define SETOSPEED(229,5192
#define TABS_OK(197,4454
#define TABS_OK(231,5250
#define TABS_OK(380,8049
bcmp 2159,50144
bcopy 2136,49739
bzero 2113,49199
child_setup_tty 591,12843
closedir 2746,64341
closedir 2786,65228
cnv_uaf_pw 3819,90391
creat_copy_attrs 3427,80318
croak 2654,61193
croak 4177,99004
define_logical_name 3951,93567
delete_logical_name 3965,93989
discard_tty_input 383,8124
dup2 2599,60191
end_kbd_input 1487,35486
end_of_data 1683,40254
end_of_text 1667,39984
execvp 3985,94324
flush_pending_output 570,12263
get_screen_size 1197,28202
get_system_name 1714,40870
get_uaf_name 3688,87404
get_uaf_uic 3752,88855
getppid 3312,77857
getpwnam 3854,91568
getpwuid 3896,92384
gettimeofday 2636,60877
getwd 2481,58040
getwd 3296,77632
hft_init 4211,99419
hft_reset 4264,101090
init_baud_rate 432,9079
init_sigio 818,18650
init_sigio 1559,37340
init_sigio 1966,46575
init_signals 2045,47745
init_sys_modes 923,20458
init_vms_input 1364,32731
input_wait_timeout 1513,36043
insque(4200,99312
kbd_input_ast 1403,33503
link 4110,97761
#define min(30,1006
opendir 2760,64656
perror 2584,59928
queue_kbd_input 1388,33168
long random 2180,50620
random 2208,51020
random 4186,99134
read_input_waiting 1913,45717
readdir 2807,65595
readdirver 2866,67495
rename 2507,58692
rename 3991,94391
rename_sans_version 4048,95996
request_sigio 833,18870
request_sigio 855,19258
request_sigio 872,19482
request_sigio 1569,37421
request_sigio 1982,46799
reset_sigio 826,18763
reset_sigio 1564,37379
reset_sigio 1974,46686
reset_sys_modes 1234,29080
restore_signal_handlers 804,18395
save_signal_handlers 793,18158
select 1781,42425
select_alarm 1767,42170
set_exclusive_use 457,9553
setpgrp 3982,94309
setpgrp_of_tty 676,15540
setpriority 1942,46245
setpriority 2528,59066
setpriority 3979,94290
setup_pty 1313,30891
sigbit 2030,47443
sigfree 2021,47293
sigholdx 2001,47039
sigisheld 2008,47129
sigunhold 2014,47200
srandom 2185,50660
srandom 2214,51118
srandom 4192,99232
start_of_data 1647,39547
start_of_text 1604,38038
stop_vms_input 1378,32973
stuff_char 419,8815
sys_abort 2270,52468
sys_access 2958,70110
sys_access 3071,73156
sys_access_reinit 3065,73115
sys_close 2349,54264
sys_creat 3505,82531
sys_fwrite 3621,85543
sys_getenv 2233,51499
sys_getuid 3329,78139
sys_open 1956,46409
sys_open 2334,54010
sys_read 2364,54462
sys_read 3335,78202
sys_sigblock 2085,48735
sys_signal 2056,47918
sys_sigpause 2072,48360
sys_sigsetmask 2101,49015
sys_sigunblock 2093,48873
sys_sleep 1545,37004
sys_suspend 699,15923
sys_translate_unix 3216,76471
sys_translate_vms 3162,75632
sys_write 2377,54680
sys_write 3345,78375
sys_write 3374,79048
tabs_safe_p 1179,27786
#define tcgetattr(201,4598
ulimit 3976,94276
unrequest_sigio 843,19026
unrequest_sigio 862,19349
unrequest_sigio 877,19532
unrequest_sigio 1574,37470
unrequest_sigio 1989,46871
utimes 2550,59342
utimes 2566,59577
#define va_count(3501,82459
vfork 2539,59179
vlimit 3916,92825
vms_truncate 3641,86195
vmserrstr 2909,68896
wait_for_kbd_input 1442,34234
wait_for_termination 485,10127
wait_without_blocking 468,9720

term.c,1066
#define OUTPUT(32,1047
#define OUTPUT1(33,1105
#define OUTPUT1_IF(36,1269
#define OUTPUTL(34,1145
#define OUTPUT_IF(35,1196
background_highlight 320,9440
calculate_costs 922,23314
calculate_ins_del_char_costs 864,21794
change_line_highlight 392,11518
clear_end_of_line 520,14285
clear_end_of_line_raw 534,14754
clear_screen 492,13689
clear_to_end 465,13249
delete_chars 704,18200
fatal 1233,33153
highlight_if_desired 333,9674
ins_del_lines 741,18836
insert_chars 651,17253
#define max(29,962
#define min(30,1004
move_cursor 427,12490
output_chars 567,15474
per_line_cost 851,21602
raw_move_cursor 446,12882
reassert_line_highlight 371,10893
reset_terminal_modes 206,7179
ring_bell 183,6783
set_scroll_region 253,8012
set_terminal_modes 193,6949
set_terminal_window 239,7735
string_cost 829,21188
string_cost_one_line 840,21400
term_init 972,24733
turn_off_highlight 296,8988
turn_off_insert 282,8583
turn_on_highlight 306,9141
turn_on_insert 275,8492
update_begin 221,7488
update_end 227,7563
write_standout_marker 354,10376

termcap.c,340
compare_contin 523,11183
find_capability 88,2121
gobble_line 562,12292
legal_filename_p 299,6278
main 613,13398
memory_out 47,1418
name_match 507,10840
scan_file 466,10051
tgetent 326,6840
tgetflag 110,2464
tgetnum 100,2301
tgetst1 149,3586
tgetstr 123,2847
tprint 639,13795
tputs 231,5099
xmalloc 54,1507
xrealloc 64,1630

terminfo.c,16
tparam 37,1276

tparam.c,63
main 263,6694
tgoto 68,2148
tparam 44,1718
tparam1 81,2354

undo.c,252
DEFUN ("primitive-undo", Fprimitive_undo,198,5716
DEFUN ("undo-boundary", Fundo_boundary,119,3635
record_change 100,3047
record_delete 71,2222
record_first_change 111,3371
record_insert 33,1157
syms_of_undo 283,7926
truncate_undo_list 141,4366

unexaix.c,390
#define ADDR_CORRECT(240,8117
#define ERROR0(256,8342
#define ERROR1(257,8405
#define ERROR2(258,8470
#define PERROR(161,6104
#define PERROR(164,6174
adjust_lnnoptrs 716,19853
copy_sym 636,17693
copy_text_and_data 573,16157
make_hdr 324,9920
mark_x 674,18446
report_error 246,8195
report_error_1 261,8545
unexec 280,8855
unrelocate_symbols 766,20888
write_segment 592,16523

unexconvex.c,305
#define ERROR0(212,7619
#define ERROR1(213,7682
#define ERROR2(214,7747
#define PERROR(169,6622
copy_sym 536,15868
copy_text_and_data 475,14367
first_pty_letter 589,16942
make_hdr 273,9175
mark_x 569,16512
report_error 203,7490
report_error_1 217,7822
unexec 231,8036
write_segment(486,14531

unexec.c,442
#define ADDR_CORRECT(271,9076
#define ERROR0(287,9301
#define ERROR1(288,9364
#define ERROR2(289,9429
#define	N_BADMAG(249,8418
#define N_SYMOFF(232,8038
#define N_TXTOFF(231,8003
#define PERROR(159,6122
#define PERROR(162,6192
adjust_lnnoptrs 929,26108
copy_sym 844,23894
copy_text_and_data 684,19319
make_hdr 352,10805
mark_x 886,24689
report_error 277,9154
report_error_1 292,9504
unexec 311,9814
write_segment 802,22730

unexelf.c,195
#define NEW_PROGRAM_H(345,13212
#define NEW_SECTION_H(341,12998
#define OLD_PROGRAM_H(343,13105
#define OLD_SECTION_H(339,12891
#define fatal(330,12672
round_up 353,13392
unexec 372,13750

unexenix.c,161
#define READ(55,2156
#define SEEK(64,2481
#define WRITE(60,2326
check_exec 80,2856
copyrec 211,6784
fatal_unexec 249,7556
mark_x 235,7246
unexec 86,2899

unexfx2800.c,13
unexec 5,60

unexhp9k800.c,254
calculate_checksum(230,7324
copy_file(245,7597
copy_rest(264,8048
display_header(279,8372
#define min(48,1749
read_header(183,5963
#define roundup(47,1678
save_data_space(115,3859
unexec(53,1863
update_file_ptrs(132,4339
write_header(211,6712

unexmips.c,123
#define READ(48,1694
#define SEEK(57,2023
#define WRITE(53,1866
fatal_unexec 303,9282
mark_x 289,8972
unexec 90,2895

unexnext.c,204
fatal_unexec(94,2486
filldatagap(153,3926
get_data_region(174,4333
grow(61,1797
my_free(232,5415
my_malloc(219,5222
read_macho(106,2669
save_command(79,2144
unexec(390,8538
unexec_doit(241,5525

unexshm.c,44
map_in_data 69,2373
map_out_data 229,7266

vms-pp.c,195
static char *buy(93,2845
check_pp(180,5140
static char *gather_word(106,3101
init_table(123,3445
main(65,2108
process_line(157,4513
replace_word(233,6860
static char *skip_white(115,3288

vmsfns.c,1008
  Fdefault_subproc_input_handler,285,9542
  Fsend_command_to_subprocess,378,11966
DEFUN ("setprv", Fsetprv,589,16782
DEFUN ("shrink-to-icon", Fshrink_to_icon,933,25536
DEFUN ("spawn-subprocess", Fspawn_subprocess,296,9849
DEFUN ("stop-subprocess", Fstop_subprocess,398,12506
DEFUN ("vms-system-info", Fvms_system_info,645,18372
create_mbx 528,15377
exit_ast 418,12965
getjpi 749,21536
init_vmsfns 961,26585
kill_vms_processes 506,14848
mbx_input_ast 561,16207
mbx_msg 370,11817
process_command_input 431,13232
process_exit 475,14323
start_mbx_input 569,16316
syms_of_vmsfns 967,26647
translate_id 691,20145
vms_account 770,22107
vms_cliname 777,22226
vms_grp 784,22345
vms_image 791,22456
vms_owner 798,22574
vms_parent 805,22689
vms_pid 812,22810
vms_prcnam 819,22921
vms_proclist 912,25075
vms_symbol 890,24522
vms_terminal 826,23038
vms_trnlog 870,23949
vms_uic_int 833,23159
vms_uic_str 840,23274
vms_username 847,23389
vms_version_fn 854,23510
write_to_mbx 580,16585

vmsmap.c,63
mapin_data 79,2656
mapout_data 143,4312
write_data 210,6017

window.c,2739
#define CURBEG(1204,31880
#define CURSIZE(1207,31953
	Fcurrent_window_configuration,1796,48848
DEFUN ("delete-other-windows", Fdelete_other_windows,662,17588
DEFUN ("delete-window", Fdelete_window,340,9849
DEFUN ("delete-windows-on", Fdelete_windows_on,672,17834
DEFUN ("display-buffer", Fdisplay_buffer,944,25148
DEFUN ("enlarge-window", Fenlarge_window,1162,30827
DEFUN ("get-buffer-window", Fget_buffer_window,651,17278
DEFUN ("get-largest-window", Fget_largest_window,644,17116
DEFUN ("get-lru-window", Fget_lru_window,631,16738
DEFUN ("minibuffer-window", Fminibuffer_window,124,3497
DEFUN ("move-to-window-line", Fmove_to_window_line,1563,41664
DEFUN ("next-window", Fnext_window,453,12643
DEFUN ("other-window", Fother_window,527,14707
DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,131,3654
DEFUN ("previous-window", Fprevious_window,491,13726
DEFUN ("recenter", Frecenter,1518,40511
DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,687,18173
DEFUN ("save-window-excursion", Fsave_window_excursion,1913,52396
DEFUN ("scroll-down", Fscroll_down,1426,37791
DEFUN ("scroll-left", Fscroll_left,1436,38078
DEFUN ("scroll-other-window", Fscroll_other_window,1468,39028
DEFUN ("scroll-right", Fscroll_right,1452,38551
DEFUN ("scroll-up", Fscroll_up,1416,37513
DEFUN ("select-window", Fselect_window,898,23900
DEFUN ("selected-window", Fselected_window,117,3313
DEFUN ("set-window-buffer", Fset_window_buffer,835,22066
       Fset_window_configuration,1633,43717
DEFUN ("set-window-hscroll", Fset_window_hscroll,239,6499
DEFUN ("set-window-point", Fset_window_point,305,8700
DEFUN ("set-window-start", Fset_window_start,320,9126
DEFUN ("shrink-window", Fshrink_window,1173,31157
DEFUN ("split-window", Fsplit_window,1055,28097
DEFUN ("window-buffer", Fwindow_buffer,202,5471
DEFUN ("window-edges", Fwindow_edges,258,7083
DEFUN ("window-height", Fwindow_height,210,5668
DEFUN ("window-hscroll", Fwindow_hscroll,231,6268
DEFUN ("window-point", Fwindow_point,276,7731
DEFUN ("window-start", Fwindow_start,297,8472
DEFUN ("window-width", Fwindow_width,218,5884
DEFUN ("windowp", Fwindowp,83,2383
#define MINSIZE(1200,31758
#define SAVED_WINDOW_N(1629,43588
change_window_height 1214,32158
count_windows 1782,48451
decode_window 192,5294
init_window_once 1932,52978
keys_of_window 2047,56791
make_dummy_parent 1026,27523
make_window 92,2568
replace_window 420,11822
save_window_save 1831,50203
scroll_command 1394,37014
set_window_height 708,18786
set_window_width 773,20496
syms_of_window 1963,53959
temp_output_buffer_show 997,26817
unshow_buffer 873,23104
window_height 1185,31492
window_loop 554,15161
window_scroll 1328,35587
window_width 1193,31628

x11fns.c,1716
DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,588,14584
DEFUN ("x-color-p", Fx_color_p,458,11686
DEFUN ("x-debug", Fx_debug,933,23823
DEFUN ("x-flip-color", Fx_flip_color,170,4124
DEFUN ("x-get-background-color", Fx_get_background_color,482,12137
DEFUN ("x-get-border-color", Fx_get_border_color,494,12398
DEFUN ("x-get-cursor-color", Fx_get_cursor_color,506,12643
DEFUN ("x-get-cut-buffer", Fx_get_cut_buffer,782,19977
DEFUN ("x-get-default", Fx_get_default,530,13136
DEFUN ("x-get-foreground-color", Fx_get_foreground_color,470,11876
DEFUN ("x-get-mouse-color", Fx_get_mouse_color,518,12888
DEFUN ("x-get-mouse-event", Fx_get_mouse_event,701,17711
DEFUN ("x-mouse-events", Fx_mouse_events,627,15749
DEFUN ("x-proc-mouse-event", Fx_proc_mouse_event,640,15991
DEFUN ("x-rebind-key", Fx_rebind_key,848,21445
DEFUN ("x-rebind-keys", Fx_rebind_keys,891,22800
DEFUN ("x-set-background-color", Fx_set_background_color,229,5708
DEFUN ("x-set-bell", Fx_set_bell,152,3746
DEFUN ("x-set-border-color", Fx_set_border_color,285,7404
DEFUN ("x-set-border-width", Fx_set_border_width,800,20356
DEFUN ("x-set-cursor-color", Fx_set_cursor_color,347,8868
DEFUN ("x-set-font", Fx_set_font,561,13980
DEFUN ("x-set-foreground-color", Fx_set_foreground_color,179,4291
DEFUN ("x-set-internal-border-width", Fx_set_internal_border_width,824,20846
DEFUN ("x-set-mouse-color", Fx_set_mouse_color,397,10265
DEFUN ("x-store-cut-buffer", Fx_store_cut_buffer,760,19354
XCleanUp 958,24251
XExitWithCoreDump 927,23772
XRedrawDisplay 953,24207
#define abs(73,1876
check_xterm 146,3652
#define max(76,1994
#define min(75,1953
#define sgn(74,1915
syms_of_xfns 967,24370
x_set_cursor_colors 429,11039

x11term.c,1549
ClearCursor 826,21283
CursorToggle 739,18572
HLmode 282,7839
XExitGracefully 1536,36125
XFlipColor 2211,51321
XIgnoreError 1542,36174
XInitWindow 2589,60011
XNewFont 2175,50725
XSetFeep 2142,50046
XSetFlash 2137,50001
XSetWindowSize(2579,59813
XT_CalcForFont(2153,50299
XT_GetDefaults 1582,36860
XT_Set_Class_Hints(2273,52698
XT_Set_Command_Line(2293,53068
XT_Set_Host(2306,53266
XT_Set_Icon_Title(2364,54327
XT_Set_Size_Hints(2397,54931
XT_Set_Title(2324,53688
XT_Set_WM_Hints(2542,58979
XT_Set_Zoom_Sizes(2532,58819
XTcalculate_costs 1008,25092
XTchange_line_highlight 303,8277
XTclear_end_of_line 390,10083
XTclear_screen 480,12184
XTdelete_chars 1030,25494
XTfeep 719,18012
XTflash 655,16441
XTins_del_lines 989,24729
XTinsert_chars 1018,25326
XTmove_cursor 339,9065
XToutput_chars 644,16250
XTread_socket 1125,27700
XTreassert_line_highlight 294,8079
XTreset_terminal_modes 471,12064
XTset_terminal_modes 317,8663
XTset_terminal_window 976,24523
XTupdate_begin 855,21809
XTupdate_end 882,22291
cleanup 381,9948
dumpchars 509,12699
dumprectangle 905,22702
internal_socket_read(1297,30257
#define max(137,3727
#define min(136,3688
scraplines 1082,26629
#define sigblockx(142,3835
#define sigunblockx(141,3786
char *stringFuncVal(1143,28031
char *stringFuncVal(1229,29272
stufflines 1042,25725
updateline 541,13801
writechars 583,14831
x_clear_end_of_line 432,11151
x_error_handler 1687,39658
x_init_1 2100,48963
x_io_error_handler 1697,39898
x_term_init 1708,40097
xfixscreen 1549,36237

xdisp.c,602
DEFUN ("redraw-display", Fredraw_display,153,4862
decode_mode_spec 1812,52629
display_echo_area_contents 240,7038
display_mode_element 1624,47432
display_mode_line 1576,45684
display_string 1962,56201
display_text_line 1276,38311
init_xdisp 2105,60043
mark_window_display_accurate 532,15554
#define max(42,1276
message 181,5818
message1 217,6606
#define min(41,1234
redisplay 298,8782
redisplay_all_windows 575,16568
redisplay_preserve_echo_area 520,15315
redisplay_window 589,16823
redisplay_windows 582,16674
syms_of_xdisp 2060,58314
try_window 834,23897
try_window_id 889,25822

xfns.c,2220
DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,574,14138
DEFUN ("x-change-display", Fx_change_display,1014,26570
DEFUN ("x-color-p", Fx_color_p,414,10177
DEFUN ("x-create-x-window", Fx_create_x_window,812,20859
DEFUN ("x-debug", Fx_debug,1317,35883
DEFUN ("x-flip-color", Fx_flip_color,181,4285
DEFUN ("x-get-background-color", Fx_get_background_color,435,10629
DEFUN ("x-get-border-color", Fx_get_border_color,445,10875
DEFUN ("x-get-cursor-color", Fx_get_cursor_color,455,11105
DEFUN ("x-get-cut-buffer", Fx_get_cut_buffer,773,19904
DEFUN ("x-get-default", Fx_get_default,475,11568
DEFUN ("x-get-foreground-color", Fx_get_foreground_color,425,10383
DEFUN ("x-get-mouse-color", Fx_get_mouse_color,465,11335
DEFUN ("x-get-mouse-event", Fx_get_mouse_event,680,17300
DEFUN ("x-mouse-events", Fx_mouse_events,609,15330
DEFUN ("x-pop-up-window", Fx_pop_up_window,154,3720
DEFUN ("x-proc-mouse-event", Fx_proc_mouse_event,632,15828
DEFUN ("x-rebind-key", Fx_rebind_key,1232,33261
DEFUN ("x-rebind-keys", Fx_rebind_keys,1277,34824
DEFUN ("x-rubber-band", Fx_rubber_band,789,20262
DEFUN ("x-set-background-color", Fx_set_background_color,236,5690
DEFUN ("x-set-bell", Fx_set_bell,163,3898
DEFUN ("x-set-border-color", Fx_set_border_color,286,7020
DEFUN ("x-set-border-width", Fx_set_border_width,850,21865
DEFUN ("x-set-cursor-color", Fx_set_cursor_color,331,8148
DEFUN ("x-set-font", Fx_set_font,510,12404
DEFUN ("x-set-foreground-color", Fx_set_foreground_color,190,4455
DEFUN ("x-set-icon", Fx_set_icon,495,12074
DEFUN ("x-set-internal-border-width", Fx_set_internal_border_width,927,24076
DEFUN ("x-set-keyboard-enable", Fx_set_keyboard_enable,723,18746
DEFUN ("x-set-mouse-color", Fx_set_mouse_color,370,9074
DEFUN ("x-set-mouse-inform-flag", Fx_set_mouse_inform_flag,745,19236
DEFUN ("x-set-window-edges", Fx_set_window_edges,546,13331
DEFUN ("x-store-cut-buffer", Fx_store_cut_buffer,755,19488
XCleanUp 1339,36298
XExitWithCoreDump 1309,35774
XRedrawDisplay 1334,36253
XRestoreDisplay 1009,26486
#define abs(44,1243
check_xterm 148,3622
grey_p 843,21701
#define max(47,1361
#define min(46,1320
#define sgn(45,1282
syms_of_xfns 1348,36417
window_fetch 1168,31490

xmenu.c,252
DEFUN ("x-popup-menu",Fx_popup_menu,111,2622
#define X11ONLY(70,1906
#define X11ONLY(73,1959
XEmacsMenu(226,5750
XMenuQuit 106,2572
list_of_items 391,10841
list_of_panes 349,9446
#define max(79,2054
#define min(78,2011
syms_of_xmenu 344,9396

xterm.c,1307
ClearCursor 710,16429
CursorToggle 639,14490
HLmode 204,5103
XBitmapIcon 1204,27908
XExitGracefully 1239,28545
XFlipColor 1738,42180
XNewFont 1712,41557
XPopUpWindow 1841,44583
XSetFeep 1707,41513
XSetFlash 1702,41467
XSetOffset 1800,43680
XSetWindowSize 1828,44198
XTchange_line_highlight 225,5515
XTclear_end_of_line 325,7563
XTclear_screen 417,9354
XTdelete_chars 884,20666
XTextIcon 1218,28150
XTfeep 619,13963
XTflash 566,12737
XTins_del_lines 861,20277
XTinsert_chars 873,20476
XTmove_cursor 270,6508
XToutput_chars 549,12386
XTread_socket 1006,23618
XTreassert_line_highlight 215,5309
XTreset_terminal_modes 408,9226
XTset_terminal_modes 243,5994
XTset_terminal_window 849,20061
XTupdate_begin 739,17053
XTupdate_end 764,17506
cleanup 315,7415
dumpchars 448,9882
dumpqueue 1680,40990
dumprectangle 784,17912
fixxrepbuffer 1926,46580
flashback 598,13463
loadxrepbuffer 1901,46003
#define max(96,2471
#define min(95,2432
refreshicon 1191,27646
scraplines 951,22247
#define sigblockx(98,2548
#define sigunblockx(97,2510
spacecheck 1878,45472
stufflines 895,20887
unloadxrepbuffer 1912,46255
writechars 482,11047
x_clear_end_of_line 368,8457
x_init_1 1647,40252
x_io_error 1247,28653
x_io_error 1258,28854
x_term_init 1330,31030
xfixscreen 1276,29294

../lisp/abbrev.el,733
(defun abbrev-mode 22,819
(defun abbrev-prefix-mark 239,8271
(defun add-abbrev 186,6466
(defun add-global-abbrev 177,6092
(defun add-mode-abbrev 163,5621
(defun define-abbrevs 108,3577
(defun edit-abbrevs 87,2791
(defvar edit-abbrevs-map 33,1207
(defun edit-abbrevs-mode 79,2557
(defun edit-abbrevs-redefine 102,3417
(defun expand-region-abbrevs 251,8704
(defun insert-abbrevs 49,1708
(defun inverse-add-abbrev 222,7695
(defun inverse-add-global-abbrev 214,7370
(defun inverse-add-mode-abbrev 201,6955
(defun kill-all-abbrevs 41,1480
(defun list-abbrevs 61,2038
(defun prepare-abbrev-list-buffer 66,2170
(defun quietly-read-abbrev-file 141,4831
(defun read-abbrev-file 132,4458
(defun write-abbrev-file 147,5064

../lisp/abbrevlist.el,37
(defun list-one-abbrev-table 24,896

../lisp/ada.el,1517
(defun ada-array 202,7408
(defun ada-backward-to-same-indent 188,6898
(defun ada-bind 614,19336
(defvar ada-bind-opts 588,18322
(defun ada-case 215,7757
(defun ada-compile 599,18744
(defun ada-declare-block 229,8089
(defun ada-display-comment 579,18065
(defun ada-else 287,9438
(defun ada-elsif 360,11650
(defun ada-exception 279,9267
(defun ada-exception-block 253,8678
(defun ada-exit 295,9591
(defun ada-find-listing 608,19110
(defun ada-for-loop 317,10405
(defun ada-forward-to-same-indent 195,7147
(defun ada-function-spec 442,13936
(defun ada-get-arg-list 424,13305
(defun ada-go-to-this-indent 175,6414
(defun ada-header 340,11057
(defun ada-if 349,11399
(defvar ada-indent 85,3224
(defun ada-inline-comment 570,17720
(defvar ada-lib-dir-name 587,18248
(defun ada-library-name 590,18383
(defun ada-loop 369,11879
(defun ada-mode 87,3306
(defvar ada-mode-map 39,1374
(defvar ada-mode-syntax-table 9,315
(defun ada-newline 158,5979
(defun ada-options-for-bind 595,18580
(defun ada-package-body 402,12747
(defun ada-package-spec 390,12427
(defun ada-paired-parens 564,17572
(defun ada-private 416,13134
(defun ada-procedure-spec 451,14202
(defun ada-record 516,16263
(defun ada-separate 494,15701
(defun ada-subprogram-body 478,15256
(defun ada-subtype 526,16456
(defun ada-tab 165,6148
(defun ada-tabsize 153,5814
(defun ada-type 533,16694
(defun ada-untab 170,6284
(defun ada-when 308,10130
(defun ada-while-loop 543,17036
(defun get-ada-subprogram-name 458,14415

../lisp/add-log.el,86
(defun add-change-log-entry 21,823
(defun add-change-log-entry-other-window 84,3060

../lisp/autoinsert.el,115
(defvar auto-insert-alist 51,1915
(defvar auto-insert-directory 62,2416
(defun insert-auto-insert-files 65,2516

../lisp/backquote.el,950
(defmacro ` 93,3619
(defconst backquote-splice 88,3487
(defconst backquote-unquote 84,3381
(defmacro bq-caar 69,2968
(defmacro bq-cadr 72,3020
(defmacro bq-cdar 75,3072
(defun bq-evalappend 282,10705
(defun bq-evalcons 248,9733
(defconst bq-evalfns 182,7565
(defun bq-evallist 273,10420
(defun bq-evalnil 293,11028
(defun bq-evalquote 259,10104
(defun bq-id 130,5275
(defun bq-iterative-list-builder 157,6589
(defun bq-make-list 134,5343
(defun bq-make-maker 111,4624
(defmacro bq-push 64,2827
(defun bq-quoteappend 234,9323
(defun bq-quotecar 132,5296
(defun bq-quotecons 209,8580
(defconst bq-quotefns 188,7726
(defun bq-quotelist 228,9143
(defun bq-quotenil 242,9576
(defun bq-quotequote 222,8934
(defconst bq-singles 125,5156
(defun bq-spliceappend 314,11619
(defun bq-splicecons 300,11255
(defconst bq-splicefns 176,7412
(defun bq-splicelist 310,11512
(defun bq-splicenil 317,11678
(defun bq-splicequote 306,11396

../lisp/bg-mouse.el,963
(defconst bg-button-c 36,1366
(defconst bg-button-l 37,1391
(defconst bg-button-m 35,1341
(defconst bg-button-r 34,1316
(defun bg-command-execute 270,9339
(defun bg-get-tty-num 214,7338
(defconst bg-in-minibuf 40,1474
(defconst bg-in-modeline 38,1416
(defconst bg-in-scrollbar 39,1444
(defun bg-insert-moused-sexp 180,6248
(defun bg-kill-region 176,6153
(defconst bg-most-positive-fixnum 139,4955
(defvar bg-mouse-fast-select-window 29,1057
(defun bg-mouse-line-to-bottom 171,5977
(defun bg-mouse-line-to-center 165,5775
(defun bg-mouse-line-to-top 160,5622
(defun bg-mouse-report 47,1598
(defun bg-move-by-percentage 141,4999
(defun bg-move-point-to-x-y 233,7973
(defun bg-program-mouse 275,9455
(defun bg-set-mark 112,4233
(defun bg-set-point 105,3991
(defun bg-window-from-x-y 250,8730
(defun bg-yank 119,4406
(defun bg-yank-or-pop 130,4643
(defun bind-bg-mouse-click 285,9806
(defconst semicolon 43,1558
(defun yank-pop-1 126,4585

../lisp/bibtex.el,1235
(define-abbrev-table 'bibtex-mode-abbrev-table 29,1312
(defun bibtex-Article 188,7000
(defun bibtex-Book 193,7153
(defun bibtex-Booklet 199,7329
(defun bibtex-InBook 210,7683
(defun bibtex-InCollection 216,7881
(defun bibtex-InProceedings 223,8077
(defun bibtex-Manual 229,8278
(defun bibtex-MastersThesis 235,8434
(defun bibtex-Misc 240,8582
(defun bibtex-PhdThesis 245,8709
(defun bibtex-Proceedings 250,8849
(defun bibtex-TechReport 255,9016
(defun bibtex-Unpublished 261,9180
(defun bibtex-entry 170,6483
(defun bibtex-find-it 279,9575
(defun bibtex-make-entry 180,6821
(defun bibtex-make-opt-entry 184,6906
(defun bibtex-mode 32,1413
(defvar bibtex-mode-abbrev-table 28,1271
(defvar bibtex-mode-map 30,1363
(defvar bibtex-mode-syntax-table 27,1230
(defun bibtex-move-outside-of-entry 157,6201
(defun bibtex-next-position 273,9451
(defun bibtex-remove-double-quotes 307,10183
(defun bibtex-remove-opt 292,9866
(defun bibtex-string 266,9305
(defmenu bibtex-sun-entry-menu 372,12175
(defun bibtex-sun-environment 422,14135
(defmenu bibtex-sun-menu401,13356
(defun bibtex-sun-menu-eval 418,13996
(defun bibtex-x-environment 361,11748
(defun bibtex-x-help 328,10588
(defun kill-current-line 301,10071

../lisp/blackbox.el,655
(defun bb-bol 108,2552
(defun bb-delete 222,5638
(defun bb-done 176,4200
(defun bb-down 96,2365
(defun bb-eol 103,2472
(defun bb-goto 208,5214
(defun bb-init-board 55,1501
(defun bb-insert-board 66,1781
(defun bb-left 82,2143
(defun bb-member 218,5457
(defun bb-outside-box 205,5143
(defun bb-place-ball 124,2853
(defun bb-right 75,2032
(defun bb-romp 113,2633
(defun bb-show-bogus-balls 190,4712
(defun bb-show-bogus-balls-2 194,4860
(defun bb-trace-ray 134,3149
(defun bb-trace-ray-2 162,3772
(defun bb-up 89,2255
(defun bb-update-board 211,5291
(defun blackbox 39,1090
(defun blackbox-mode 25,741
(defvar blackbox-mode-map 6,100

../lisp/buff-menu.el,679
(defun Buffer-menu-1-window 248,8566
(defun Buffer-menu-2-window 265,9097
(defun Buffer-menu-backup-unmark 136,5269
(defun Buffer-menu-buffer 83,3559
(defvar Buffer-menu-buffer-column 81,3521
(defun Buffer-menu-delete 143,5459
(defun Buffer-menu-delete-backwards 154,5761
(defun Buffer-menu-execute 188,6695
(defun Buffer-menu-mark 111,4528
(defun Buffer-menu-mode 51,2298
(defvar Buffer-menu-mode-map 24,976
(defun Buffer-menu-not-modified 174,6327
(defun Buffer-menu-other-window 260,8911
(defun Buffer-menu-save 162,6010
(defun Buffer-menu-select 220,7668
(defun Buffer-menu-this-window 255,8769
(defun Buffer-menu-unmark 122,4818
(defun buffer-menu 99,4096

../lisp/bytecomp.el,5359
(defun batch-byte-compile 1125,39486
(defun batch-byte-compile-file 1155,40851
(defconst byte-add1 145,5058
(defconst byte-aref 133,4739
(defconst byte-aset 134,4763
(defconst byte-bobp 172,5850
(defconst byte-bolp 171,5825
(defconst byte-call 46,1761
(defconst byte-car 125,4543
(defconst byte-catch 94,3365
(defconst byte-cdr 126,4566
(defconst byte-char-after 163,5556
(defun byte-compile 302,10555
(defun byte-compile-and 990,34808
(defun byte-compile-body 890,31132
(defun byte-compile-catch 1033,36198
(defun byte-compile-concat 721,25207
(defun byte-compile-cond 951,33337
(defun byte-compile-cond-1 956,33460
(defun byte-compile-condition-case 1057,37267
(defun byte-compile-constant 486,17388
(defvar byte-compile-constants 24,946
(defvar byte-compile-constnum 22,858
(defvar byte-compile-depth 35,1408
(defun byte-compile-discard 924,32240
(defun byte-compile-file 203,7080
(defun byte-compile-file-form 271,9505
(defun byte-compile-find-vars 372,13206
(defun byte-compile-find-vars-1 381,13521
(defun byte-compile-form 439,15652
(defun byte-compile-function-form 775,26949
(defun byte-compile-goto 1083,38131
(defun byte-compile-if 929,32403
(defun byte-compile-indent-to 783,27231
(defun byte-compile-insert 793,27548
(defun byte-compile-interactive-p 700,24559
(defun byte-compile-lambda 308,10805
(defun byte-compile-let 830,28795
(defun byte-compile-let* 848,29511
(defun byte-compile-list 704,24691
(defvar byte-compile-macro-environment 27,1074
(defun byte-compile-make-tag 1073,37879
(defvar byte-compile-maxdepth 37,1476
(defun byte-compile-maybe-two-args 764,26551
(defun byte-compile-minus 742,25844
(defun byte-compile-no-args 656,22764
(defun byte-compile-noop 887,31068
(defun byte-compile-normal-call 469,16627
(defun byte-compile-one-arg 664,23072
(defun byte-compile-or 1006,35297
(defun byte-compile-out 1098,38624
(defun byte-compile-out-1 1117,39249
(defun byte-compile-out-const 1110,38992
(defun byte-compile-out-tag 1076,37930
(defvar byte-compile-output 32,1285
(defvar byte-compile-pc 30,1208
(defun byte-compile-prog1 902,31504
(defun byte-compile-prog2 915,31994
(defun byte-compile-progn 883,30948
(defun byte-compile-push-constant 501,18036
(defun byte-compile-quote 810,28126
(defun byte-compile-save-excursion 863,30132
(defun byte-compile-save-restriction 869,30358
(defun byte-compile-save-window-excursion 1040,36526
(defun byte-compile-setq 814,28249
(defun byte-compile-setq-default 805,27933
(defun byte-compile-store-goto 1090,38384
(defun byte-compile-substring 689,24116
(defun byte-compile-three-args 679,23692
(defun byte-compile-top-level 328,11463
(defun byte-compile-two-args 671,23362
(defun byte-compile-unwind-protect 1047,36837
(defun byte-compile-variable-ref 476,16932
(defun byte-compile-while 1020,35734
(defun byte-compile-with-output-to-temp-buffer 875,30608
(defconst byte-concat2 141,4953
(defconst byte-concat3 142,4980
(defconst byte-concat4 143,5007
(defconst byte-condition-case 101,3645
(defconst byte-cons 127,4589
(defconst byte-consp 119,4397
(defconst byte-constant 51,1910
(defconst byte-constant-limit 53,1989
(defconst byte-constant2 56,2076
(defconst byte-current-buffer 173,5875
(defconst byte-current-column 166,5657
(defconst byte-diff 151,5201
(defconst byte-discard 79,2838
(defconst byte-dup 82,2921
(defconst byte-eobp 170,5800
(defconst byte-eolp 169,5775
(defconst byte-eq 122,4474
(defconst byte-eqlsign 146,5082
(defconst byte-following-char 164,5587
(defconst byte-fset 138,4877
(defconst byte-geq 150,5178
(defconst byte-get 139,4901
(defconst byte-goto 59,2183
(defconst byte-goto-char 159,5441
(defconst byte-goto-if-nil 62,2253
(defconst byte-goto-if-nil-else-pop 68,2441
(defconst byte-goto-if-not-nil 65,2343
(defconst byte-goto-if-not-nil-else-pop 72,2583
(defconst byte-gtr 147,5109
(defconst byte-indent-to 167,5692
(defconst byte-insert 160,5470
(defconst byte-interactive-p 177,6017
(defconst byte-length 132,4713
(defconst byte-leq 149,5155
(defconst byte-list1 128,4613
(defconst byte-list2 129,4638
(defconst byte-list3 130,4663
(defconst byte-list4 131,4688
(defconst byte-listp 121,4449
(defconst byte-lss 148,5132
(defconst byte-max 154,5275
(defconst byte-memq 123,4496
(defconst byte-min 155,5298
(defconst byte-negate 152,5225
(defconst byte-not 124,4520
(defconst byte-nth 117,4347
(defconst byte-plus 153,5251
(defconst byte-point 157,5322
(defconst byte-point-max 161,5496
(defconst byte-point-min 162,5526
(defconst byte-preceding-char 165,5622
(defconst byte-read-char 175,5941
(defun byte-recompile-directory 179,6053
(defconst byte-return 76,2733
(defconst byte-save-excursion 85,3002
(defconst byte-save-restriction 91,3236
(defconst byte-save-window-excursion 88,3115
(defconst byte-set 137,4854
(defconst byte-set-buffer 174,5910
(defconst byte-stringp 120,4422
(defconst byte-sub1 144,5034
(defconst byte-substring 140,4924
(defconst byte-symbol-function 136,4819
(defconst byte-symbol-value 135,4787
(defconst byte-symbolp 118,4370
(defconst byte-temp-output-buffer-setup 105,3813
(defconst byte-temp-output-buffer-show 111,4068
(defconst byte-unbind 48,1830
(defconst byte-unwind-protect 97,3482
(defconst byte-varbind 44,1689
(defconst byte-varref 40,1548
(defconst byte-varset 42,1618

../lisp/c-fill.el,397
(defun c-comment 85,3179
(defvar c-comment-hanging-indent 61,2357
(defvar c-comment-indenting 59,2250
(defvar c-comment-mode-map 71,2693
(defvar c-comment-starting-blank 57,2148
(defvar c-hang-already-done 63,2460
(defun do-indented-auto-fill 185,6285
(defun get-current-fill 214,7166
(defun replace-letter 261,8555
(defun set-fill-and-fill 162,5678
(defun set-fill-and-return 173,5960

../lisp/c-mode.el,1057
(define-abbrev-table 'c-mode-abbrev-table 23,903
(defconst c-argdecl-indent 69,2759
(defconst c-auto-newline 79,3218
(defun c-backward-to-noncomment 493,18265
(defun c-backward-to-start-of-continued-exp 510,18739
(defun c-backward-to-start-of-if 518,18949
(defconst c-brace-imaginary-offset 65,2537
(defconst c-brace-offset 67,2654
(defun c-comment-indent 165,6650
(defconst c-continued-brace-offset 75,3061
(defconst c-continued-statement-offset 73,2962
(defun c-indent-command 258,9404
(defconst c-indent-level 63,2442
(defun c-indent-line 292,10595
(defun c-inside-parens-p 248,9124
(defconst c-label-offset 71,2853
(defun c-mode 87,3548
(defvar c-mode-abbrev-table 21,827
(defvar c-mode-map 25,950
(defvar c-mode-syntax-table 44,1661
(defconst c-tab-always-indent 83,3368
(defun calculate-c-indent 338,12127
(defun calculate-c-indent-within-comment 475,17693
(defun electric-c-brace 173,6930
(defun electric-c-semi 201,7685
(defun electric-c-terminator 208,7898
(defun indent-c-exp 543,19653
(defun mark-c-function 534,19446

../lisp/cal.el,272
(defun calendar 52,2476
(defvar calendar-hook 39,1804
(defun day-number 142,6178
(defun day-of-week 158,6787
(defun generate-month 176,7337
(defun insert-indented 213,9143
(defun leap-year-p 135,5992
(defvar offset-calendar-hook 46,2202
(defun star-date 233,9768

../lisp/chistory.el,428
(defun Command-history-setup 111,4360
(defvar command-history-hook 121,4778
(defvar command-history-map 124,4884
(defun command-history-mode 134,5236
(defun default-command-history-filter 72,2970
(defvar default-command-history-filter-garbage56,2163
(defun list-command-history 82,3390
(defvar list-command-history-filter 65,2570
(defvar list-command-history-max 78,3207
(defun repeat-matching-complex-command 29,1116

../lisp/cl-indent.el,373
(defun common-lisp-indent-hook 58,2045
(defun lisp-indent-259 185,8343
(defun lisp-indent-do 310,13781
(defun lisp-indent-function-lambda-hack 323,14269
(defvar lisp-indent-maximum-backtracking 38,1149
(defun lisp-indent-report-bad-format 178,8081
(defun lisp-indent-tagbody 284,12694
(defvar lisp-tag-body-indentation 47,1526
(defvar lisp-tag-indentation 43,1379

../lisp/cl.el,6308
(defvar *gensym-index* 327,12195
(defvar *gensym-prefix* 330,12271
(defvar *gentemp-index* 302,11259
(defvar *gentemp-prefix* 305,11337
(defvar *mvalues-count* 1249,44919
(defvar *mvalues-values* 1247,44846
(defkeyword :conc-name 2064,71894
(defkeyword :copier 2065,71952
(defkeyword :count 1056,36946
(defkeyword :end 1051,36591
(defkeyword :end1 1054,36797
(defkeyword :end2 1055,36871
(defkeyword :from-end 1057,37002
(defkeyword :include 2062,71778
(defkeyword :initial-offset 2069,72184
(defkeyword :key 1048,36392
(defkeyword :named 2063,71836
(defkeyword :predicate 1049,36459
(defkeyword :predicate 2066,72010
(defkeyword :print-function 2067,72068
(defkeyword :setf-update-doc1642,58940
(defkeyword :setf-update-fn1637,58745
(defkeyword :start 1050,36533
(defkeyword :start1 1052,36650
(defkeyword :start2 1053,36723
(defkeyword :structure-doc 2071,72243
(defkeyword :structure-indices 2074,72443
(defkeyword :structure-initforms 2075,72510
(defkeyword :structure-slots 2073,72382
(defkeyword :structure-slotsn 2072,72317
(defkeyword :test 1046,36248
(defkeyword :test-not 1047,36320
(defkeyword :type 2068,72126
(defun abs 1399,51138
(defun acons 1018,35229
(defun add-to-klist 1173,41930
(defun adjoin 864,31344
(defsetf apply1740,63162
(defsetf aref1760,63898
(defun build$accessors$for 2367,85476
(defun build-klist 188,7009
(defun butlast 847,30750
(defun caaaar 933,32996
(defsetf caaaar1872,66401
(defun caaadr 937,33102
(defsetf caaadr1876,66501
(defun caaar 901,32291
(defsetf caaar1840,65624
(defun caadar 941,33208
(defsetf caadar1880,66601
(defun caaddr 953,33526
(defsetf caaddr1892,66900
(defun caadr 905,32379
(defsetf caadr1844,65721
(defun caar 885,32011
(defsetf caar1824,65246
(defun cadaar 945,33314
(defsetf cadaar1884,66701
(defun cadadr 957,33632
(defsetf cadadr1896,67001
(defun cadar 909,32467
(defsetf cadar1848,65818
(defun caddar 965,33844
(defsetf caddar1904,67201
(defun cadddr 977,34162
(defsetf cadddr1916,67501
(defun caddr 917,32643
(defsetf caddr1856,66013
(defun cadr 889,32081
(defsetf cadr1828,65342
(defsetf car 1820,65146
(defmacro case 382,14095
(defun case-clausify 424,15683
(defun cdaaar 949,33420
(defsetf cdaaar1888,66801
(defun cdaadr 961,33738
(defsetf cdaadr1900,67101
(defun cdaar 913,32555
(defsetf cdaar1852,65916
(defun cdadar 969,33950
(defsetf cdadar1908,67301
(defun cdaddr 985,34375
(defsetf cdaddr1924,67701
(defun cdadr 921,32731
(defsetf cdadr1860,66110
(defun cdar 893,32151
(defsetf cdar1832,65436
(defun cddaar 973,34056
(defsetf cddaar1912,67401
(defun cddadr 981,34269
(defsetf cddadr1920,67601
(defun cddar 925,32819
(defsetf cddar1864,66207
(defun cdddar 989,34481
(defsetf cdddar1928,67801
(defun cddddr 993,34587
(defsetf cddddr1932,67901
(defun cdddr 929,32907
(defsetf cdddr1868,66304
(defun cddr 897,32221
(defsetf cddr1836,65530
(defsetf cdr 1822,65196
(defun ceiling 1524,55144
(defun check-do-endforms 567,21640
(defun check-do-stepforms 543,20864
(defmacro decf 1964,68624
(defmacro defkeyword 267,10294
(defmacro defsetf 1705,61367
(defmacro defstruct 2078,72583
(defmacro do 489,18223
(defmacro do* 515,19528
(defmacro do-all-symbols 720,27142
(defmacro do-symbols 688,25921
(defmacro dolist 627,23568
(defmacro dotimes 656,24657
(defun duplicate-symbols-p 230,9048
(defmacro ecase 401,14828
(defun eighth 785,28904
(defsetf eighth1804,64780
(defsetf elt1772,64072
(defun elt-satisfies-if-not-p 1202,43119
(defun elt-satisfies-if-p 1194,42764
(defun elt-satisfies-test-p 1178,42091
(defun elts-match-under-klist-p 1211,43560
(defun endp 801,29191
(defun evenp 1395,51054
(defun every 1078,37958
(defun extract$indices 2356,85034
(defun extract-do*-steps 599,22637
(defun extract-do-inits 576,21887
(defun extract-do-steps 592,22367
(defun extract-from-klist 1167,41661
(defun fifth 773,28666
(defsetf fifth1792,64499
(defun first 757,28377
(defsetf first1776,64127
(defun floor 1502,54490
(defun fourth 769,28586
(defsetf fourth1788,64405
(defun gcd 1417,51513
(defun gensym 333,12369
(defun gentemp 308,11437
(defsetf get1937,68002
(defmacro incf 1958,68435
(defun isqrt 1473,53523
(defun keyword-of 286,10815
(defun keywordp 276,10587
(defun last 808,29384
(defun lcm 1451,52816
(defun ldiff 874,31639
(defun list* 853,30985
(defun list-length 816,29650
(defmacro loop 728,27383
(defun make$structure$instance 2418,87881
(defun member 835,30409
(defun minusp 1387,50879
(defun mod 1593,57256
(defmacro multiple-value-bind 1312,47676
(defmacro multiple-value-call 1298,47021
(defmacro multiple-value-list 1283,46335
(defmacro multiple-value-prog1 1341,49136
(defmacro multiple-value-setq 1328,48456
(defun mv-bind-clausify 1357,49876
(defun ninth 789,28984
(defsetf ninth1808,64874
(defun notany 1097,38859
(defun notevery 1116,39753
(defsetf nth1764,63953
(defsetf nthcdr1768,64008
(defun oddp 1391,50966
(defun pair-with-newsyms 126,4612
(defun pairlis 1023,35385
(defun parse$defstruct$args 2172,77130
(defun parse$defstruct$options 2232,79717
(defun plusp 1383,50790
(defmacro pop 1978,69099
(defun process$slots 2205,78606
(defmacro psetf 1993,69619
(defmacro psetq 58,2410
(defmacro push 1970,68813
(defmacro pushnew 1974,68952
(defun reassemble-argslists 170,6323
(defun rem 1599,57486
(defun rest 797,29140
(defsetf rest1816,65058
(defmacro rotatef 2032,70910
(defun round 1568,56436
(defun safe-idiv 1612,58021
(defun second 761,28428
(defsetf second1780,64219
(defun select-stepping-forms 606,22909
(defun setelt 1139,40704
(defmacro setf 1646,59104
(defun setnth 999,34759
(defun setnthcdr 1003,34874
(defun seventh 781,28822
(defsetf seventh1800,64683
(defmacro shiftf 2014,70281
(defun signum 1407,51313
(defun simplify$inits 2345,84617
(defun sixth 777,28744
(defsetf sixth1796,64591
(defun some 1059,37057
(defsetf symbol-function1941,68063
(defsetf symbol-plist1945,68150
(defsetf symbol-value1949,68239
(defun tenth 793,29062
(defsetf tenth1812,64966
(defun third 765,28508
(defsetf third1784,64313
(defun truncate 1546,55795
(defmacro unless 373,13726
(defun unzip-list 154,5711
(defun values 1259,45411
(defun values-list 1270,45844
(defmacro when 369,13574
(defun zip-lists 138,5093

../lisp/cmacexp.el,27
(defun c-macro-expand 2,1

../lisp/compare-w.el,31
(defun compare-windows 21,821

../lisp/compile.el,560
(defvar compilation-error-list 27,1061
(defvar compilation-error-message 40,1624
(defvar compilation-error-regexp45,1838
(defun compilation-forget-errors 206,7871
(defun compilation-grab-filename 304,11580
(defun compilation-parse-errors 216,8253
(defvar compilation-parsing-end 37,1523
(defvar compilation-process 22,871
(defun compilation-sentinel 118,4694
(defun compile 49,2025
(defun compile1 67,2851
(define-key ctl-x-map 318,12015
(defun grep 59,2514
(defun kill-compilation 152,5861
(defun kill-grep 158,6033
(defun next-error 164,6195

../lisp/dabbrev.el,396
(defun dabbrev-expand 75,2920
(defvar dabbrevs-backward-only 47,1925
(defvar dabbrevs-limit 43,1771
(defun dabbrevs-search 192,7617
(defvar last-dabbrevs-abbrev-location 63,2468
(defvar last-dabbrevs-abbreviation 55,2183
(defvar last-dabbrevs-direction 59,2331
(defvar last-dabbrevs-expansion 67,2618
(defvar last-dabbrevs-expansion-location 71,2759
(defvar last-dabbrevs-table 51,2054

../lisp/dbx.el,303
(defvar dbx-break-point29,994
(defun dbx-filter 118,4548
(defvar dbx-process 26,927
(defun dbx-stop-at 157,5917
(defvar dbx-trace-flag 23,876
(defun dbx-trace-mode 104,4060
(defun dbx-where 134,5032
(defun inferior-dbx-mode 41,1431
(defvar inferior-dbx-mode-map 33,1138
(defun run-dbx 92,3540

../lisp/debug.el,498
(defun cancel-debug-on-entry 238,8039
(defun debug 23,852
(defun debug-on-entry 224,7424
(defun debug-on-entry-1 248,8414
(defun debugger-continue 107,3577
(defun debugger-eval-expression 181,5849
(defun debugger-frame 155,5046
(defun debugger-frame-clear 168,5444
(defun debugger-frame-number 123,4076
(defconst debugger-frame-offset 153,5007
(defun debugger-mode 209,6900
(defvar debugger-mode-map 190,6116
(defun debugger-return-value 113,3732
(defun debugger-step-through 99,3280

../lisp/dired.el,1421
(defun dired 67,2283
(defun dired-add-entry 456,16503
(defun dired-backup-unflag 235,8733
(defun dired-byte-recompile 536,19305
(defun dired-chgrp 554,19851
(defun dired-chmod 546,19614
(defun dired-chown 562,20092
(defun dired-clean-directory 343,12274
(defun dired-collect-file-versions 375,13734
(defun dired-compress 478,17372
(defun dired-copy-file 448,16233
(defun dired-do-deletions 579,20684
(defun dired-find-buffer 53,1919
(defun dired-find-file 252,9174
(defun dired-find-file-other-window 264,9556
(defun dired-flag-auto-save-files 324,11705
(defun dired-flag-backup-and-auto-save-files 425,15408
(defun dired-flag-backup-files 405,14848
(defun dired-flag-file-deleted 209,7975
(defun dired-flag-this-line-for-DEATH 400,14750
(defun dired-get-filename 269,9723
(defun dired-map-dired-file-lines 308,11163
(defun dired-mode 147,5657
(defvar dired-mode-map 109,3890
(defun dired-move-to-filename 294,10698
(defun dired-next-line 240,8874
(defun dired-noselect 84,3034
(defun dired-other-window 78,2745
(defun dired-previous-line 246,9021
(defun dired-readin 30,1157
(defun dired-redisplay 572,20423
(defun dired-rename-file 433,15669
(defun dired-repeat-over-lines 190,7457
(defun dired-revert 98,3547
(defun dired-summary 219,8248
(defun dired-trample-file-versions 389,14283
(defun dired-uncompress 507,18331
(defun dired-unflag 225,8469
(defun dired-view-file 257,9315

../lisp/disass.el,331
(defconst byte-code-vector251,8414
(defun disassemble 36,1212
(defun disassemble-1 108,3697
(defvar disassemble-column-1-indent 24,899
(defvar disassemble-column-2-indent 26,943
(defun disassemble-internal 51,1902
(defun disassemble-offset 209,7146
(defvar disassemble-recursive-indent 28,987
(defun write-spaces 241,8125

../lisp/dissociate.el,33
(defun dissociated-press 21,816

../lisp/doctex.el,106
(defun LaTeXify-DOC 27,898
(defvar LaTeXify-DOC-style 19,580
(defvar LaTeXify-DOC-style-options 24,790

../lisp/doctor.el,3047
(defmacro $ 38,1258
(defun // 36,1240
(defun doctor 836,27617
(defun doctor-$ 42,1349
(defun doctor-adjectivep 1176,38255
(defun doctor-adverbp 1184,38437
(defun doctor-alcohol 1485,47335
(defun doctor-articlep 1187,38527
(defun doctor-assm 1405,44824
(defun doctor-build 1383,44233
(defun doctor-caddr 22,866
(defun doctor-cadr 21,828
(defun doctor-cddr 23,911
(defun doctor-chat 1614,50946
(defun doctor-colorp 1200,38927
(defun doctor-concat 1399,44656
(defun doctor-conj 1445,46040
(defun doctor-correct-spelling 943,30935
(defun doctor-death 1582,50104
(defun doctor-def 991,32220
(defun doctor-define 969,31633
(defun doctor-defq 979,31858
(defun doctor-desire 1487,47385
(defun doctor-desire1 1418,45259
(defun doctor-doc 878,28728
(defun doctor-drug 1503,47949
(defun doctor-eliza 1598,50513
(defun doctor-family 1587,50208
(defun doctor-fear 1516,48278
(defun doctor-fix-2 1268,40548
(defun doctor-fixup 1240,40153
(defun doctor-forget 996,32333
(defun doctor-foul 1584,50156
(defun doctor-getnoun 1147,37490
(defun doctor-go 1414,45125
(defun doctor-hate 1521,48429
(defun doctor-hates 1532,48790
(defun doctor-hates1 1536,48863
(defun doctor-howdy 1430,45573
(defun doctor-huh 1421,45314
(defun doctor-love 1546,49091
(defun doctor-loves 1539,48939
(defun doctor-mach 1571,49834
(defun doctor-make-string 1393,44513
(defun doctor-math 1606,50744
(defun doctor-meaning 561,18001
(defun doctor-member 25,950
(defun doctor-mode 57,1768
(defvar doctor-mode-map 50,1552
(defun doctor-modifierp 1171,38139
(defun doctor-mood 1513,48187
(defun doctor-nmbrp 1190,38579
(defun doctor-nounp 1038,33581
(defun doctor-othermodifierp 1213,39262
(defun doctor-plural 1122,36694
(defun doctor-possess 1344,43040
(defun doctor-possessivepronounp 1210,39183
(defun doctor-prepp 1223,39675
(defun doctor-pronounp 1046,33789
(defmacro doctor-put-meaning 563,18053
(defun doctor-qloves 1543,49012
(defun doctor-query 1000,32458
(defun doctor-read-print 850,28009
(defun doctor-read-token 868,28447
(defun doctor-readin 860,28220
(defun doctor-remem 1427,45477
(defun doctor-remember 1231,39927
(defun doctor-replace 1306,41781
(defun doctor-ret-or-read 842,27762
(defun doctor-rms 1592,50321
(defun doctor-rthing 1425,45427
(defun doctor-school 1596,50458
(defun doctor-setprep 1134,37081
(defun doctor-sexnoun 1575,49923
(defun doctor-sexverb 1577,49967
(defun doctor-short 1457,46398
(defun doctor-shorten 952,31213
(defun doctor-sizep 1206,39080
(defun doctor-sports 1604,50689
(defun doctor-state 1510,48094
(defun doctor-subjsearch 1024,33062
(defun doctor-svo 1327,42356
(defun doctor-symptoms 1528,48665
(defun doctor-toke 1507,48043
(defun doctor-txtype 1359,43488
(defun doctor-type 1236,40066
(defun doctor-type-symbol 1365,43676
(defun doctor-verbp 1119,36603
(defun doctor-vowelp 1303,41725
(defun doctor-when 1438,45837
(defun doctor-wherego 1317,42087
(defun doctor-zippy 1608,50794
(defun make-doctor-variables 74,2358
(defun random-range 31,1093

../lisp/ebuff-menu.el,405
(defun Electric-buffer-menu-exit 194,7330
(defun Electric-buffer-menu-mode 108,3618
(defun Electric-buffer-menu-mode-view-buffer 231,8694
(defun Electric-buffer-menu-quit 211,7879
(defun Electric-buffer-menu-select 203,7568
(defun Electric-buffer-menu-undefined 217,8100
(defun electric-buffer-list 31,1112
(defun electric-buffer-menu-looper 92,3123
(defvar electric-buffer-menu-mode-map 30,1069

../lisp/echistory.el,265
(defun Electric-command-history-redo-expression 25,925
(defun Electric-history-quit 144,6389
(defun Electric-history-undefined 138,6232
(defun electric-command-history 78,3650
(defvar electric-command-history-hook 75,3540
(defvar electric-history-map 37,1416

../lisp/edt-doc.el,0

../lisp/edt.el,3012
(defvar GOLD-map 318,11380
(define-key GOLD-map 329,11801
(define-key GOLD-map 330,11875
(define-key GOLD-map 331,11941
(define-key GOLD-map 332,12010
(define-key GOLD-map 333,12076
(define-key GOLD-map 334,12123
(define-key GOLD-map 335,12185
(define-key GOLD-map 336,12247
(define-key GOLD-map 337,12309
(define-key GOLD-map 340,12408
(define-key GOLD-map 341,12470
(define-key GOLD-map 342,12532
(define-key GOLD-map 343,12594
(define-key GOLD-map 344,12656
(define-key GOLD-map 345,12718
(define-key GOLD-map 346,12780
(define-key GOLD-map 347,12842
(define-key GOLD-map 348,12904
(define-key GOLD-map 349,12966
(define-key GOLD-map 350,13028
(define-key GOLD-map 351,13080
(define-key GOLD-map 352,13132
(define-key GOLD-map 353,13202
(define-key GOLD-map 354,13272
(define-key GOLD-map 355,13342
(define-key GOLD-map 356,13412
(define-key GOLD-map 357,13482
(define-key GOLD-map 358,13552
(define-key GOLD-map 359,13622
(define-key GOLD-map 360,13692
(define-key GOLD-map 361,13762
(define-key GOLD-map 362,13832
(define-key GOLD-map 363,13902
(defun advance-direction 192,6190
(defun backup-direction 205,6772
(defun backward-line 131,4349
(defun backward-to-word 125,4196
(defun beginning-of-window 218,7363
(defun case-flip-character 233,7709
(defun define-keypad-key 322,11542
(defun delete-current-char 75,2597
(defun delete-current-line 30,1186
(defun delete-current-word 55,1971
(defun delete-previous-char 83,2919
(defun delete-previous-word 65,2281
(defun delete-to-eol 43,1613
(defun edt-bind-gold-keypad 368,14124
(defun edt-emulation-off 287,9868
(defun edt-emulation-on 266,8705
(defvar edt-last-deleted-chars 27,1082
(defvar edt-last-deleted-lines 23,886
(defvar edt-last-deleted-words 25,984
(defun forward-to-word 119,4030
(define-key function-keymap 298,10404
(define-key function-keymap 299,10463
(define-key function-keymap 300,10520
(define-key function-keymap 301,10582
(define-key function-keymap 302,10642
(define-key function-keymap 303,10702
(define-key function-keymap 304,10757
(define-key function-keymap 305,10818
(define-key function-keymap 306,10889
(define-key function-keymap 307,10943
(define-key function-keymap 308,10995
(define-key function-keymap 309,11046
(define-key function-keymap 310,11092
(define-key function-keymap 311,11146
(define-key function-keymap 312,11197
(define-key function-keymap 313,11256
(defun goto-percent 180,5772
(defun indent-or-fill-region 244,8055
(defun line-to-bottom-of-window 223,7471
(defun line-to-top-of-window 228,7592
(defun mark-section-wisely 251,8298
(defun move-to-beginning 170,5504
(defun move-to-end 175,5644
(defun next-end-of-line 106,3658
(defun next-paragraph 149,4921
(defun previous-end-of-line 113,3868
(defun previous-paragraph 160,5219
(defun scroll-window-down 137,4505
(defun scroll-window-up 143,4716
(defun undelete-chars 101,3513
(defun undelete-lines 91,3243
(defun undelete-words 96,3378
(defun update-mode-line 187,6033

../lisp/ehelp.el,704
(defvar ehelp-map 322,10982
(defun electric-command-apropos 311,10817
(defun electric-describe-bindings 303,10631
(defun electric-describe-function 295,10441
(defun electric-describe-key 278,10104
(defun electric-describe-mode 282,10189
(defun electric-describe-syntax 307,10726
(defun electric-describe-variable 299,10536
(defun electric-help-command-loop 126,4677
(defun electric-help-exit 174,6369
(defun electric-help-help 213,7467
(defvar electric-help-map 22,816
(defun electric-help-mode 47,1745
(defun electric-help-retain 179,6445
(defun electric-help-undefined 203,7130
(defun electric-helpify 226,8011
(defun electric-view-lossage 286,10276
(defun with-electric-help 59,2180

../lisp/electric.el,129
(defun Electric-command-loop 68,2919
(defun Electric-pop-up-window 146,5454
(defun shrink-window-if-larger-than-buffer 25,987

../lisp/emacsbug.el,64
(defvar bug-gnu-emacs 27,1114
(defun report-emacs-bug 30,1235

../lisp/files.el,3044
(defun after-find-file 288,11077
(defun append-to-file 843,32331
(defconst auto-save-default 101,4188
(defun auto-save-file-name-p 991,38049
(defun auto-save-mode 949,36441
(defconst auto-save-visited-file-name 104,4289
(defconst automount-dir-prefix 239,9208
(defun backup-buffer 524,20000
(defconst backup-by-copying 49,2061
(defconst backup-by-copying-when-linked 53,2206
(defconst backup-by-copying-when-mismatch 58,2467
(defun backup-extract-version 641,24676
(defun backup-file-name-p 598,22867
(defun basic-save-buffer 695,27105
(defconst buffer-offer-save 66,2907
(defun cd 155,6329
(defun create-file-buffer 230,8811
(defvar ctl-x-4-map 1074,41322
(define-key ctl-x-4-map 1078,41471
(define-key ctl-x-4-map 1079,41524
(define-key ctl-x-4-map 1080,41580
(define-key ctl-x-map 1062,40819
(define-key ctl-x-map 1063,40860
(define-key ctl-x-map 1064,40908
(define-key ctl-x-map 1065,40959
(define-key ctl-x-map 1066,41010
(define-key ctl-x-map 1067,41053
(define-key ctl-x-map 1068,41099
(define-key ctl-x-map 1069,41141
(define-key ctl-x-map 1071,41220
(define-key ctl-x-map 1072,41266
(define-key ctl-x-map 1077,41428
(defun delete-auto-save-file-if-necessary 684,26680
(defconst delete-auto-save-files 21,840
(defvar dired-kept-versions 82,3507
(define-key esc-map 1070,41181
(defun file-name-sans-versions 582,22241
(defun file-nlinks 647,24861
(defconst file-precious-flag 72,3133
(defun find-alternate-file 204,7934
(defun find-backup-file-name 606,23255
(defun find-file 183,7199
(defvar find-file-hooks 122,4991
(defun find-file-noselect 242,9318
(defvar find-file-not-found-hooks 115,4704
(defun find-file-other-window 190,7415
(defun find-file-read-only 197,7696
(defconst find-file-run-dired 112,4595
(defun hack-local-variables 393,15025
(defconst ignore-local-eval 138,5706
(defconst inhibit-local-variables 132,5395
(defun insert-file 836,32078
(defvar kept-new-versions 92,3829
(defvar kept-old-versions 89,3724
(defun kill-some-buffers 932,35960
(defun list-directory 1002,38507
(defconst list-directory-brief-switches 997,38273
(defconst list-directory-verbose-switches 999,38388
(defun load-file 166,6693
(defun load-library 171,6830
(defun make-auto-save-file-name 978,37580
(defun make-backup-file-name 593,22685
(defconst make-backup-files 31,1223
(defun normal-mode 325,12391
(defun not-modified 823,31669
(defun pwd 150,6208
(defun recover-file 907,34881
(defun rename-auto-save-file 966,37073
(defconst require-final-newline 96,3972
(defun revert-buffer 854,32768
(defvar revert-buffer-function 851,32662
(defconst save-abbrevs 108,4464
(defun save-buffer 651,24982
(defun save-buffers-kill-emacs 1037,39844
(defun save-some-buffers 786,30473
(defun set-auto-mode 346,13285
(defun set-visited-file-name 471,17971
(defun switch-to-buffer-other-window 177,6995
(defun toggle-read-only 829,31844
(defvar trim-versions-without-asking 85,3597
(defvar version-control 76,3285
(defun write-file 515,19701
(defvar write-file-hooks 127,5190

../lisp/fill.el,265
(defun fill-individual-paragraphs 226,8031
(defconst fill-individual-varying-indent 20,816
(defun fill-paragraph 137,5196
(defun fill-region 148,5491
(defun fill-region-as-paragraph 41,1666
(defun justify-current-line 165,6014
(defun set-fill-prefix 27,1186

../lisp/flame.el,1236
(define-element "adjective")232,8560
(define-element "der-term")233,8589
(define-element "group-adj")234,8617
(define-element "paper")237,8700
(define-element "person")238,8725
(define-element "quality")231,8533
(define-element "reason")239,8751
(define-element "sentence")230,8505
(define-element "statement")235,8646
(define-element "thing")236,8675
(defun *flame 241,8778
(defvar adjective63,2391
(defvar adjective-loop 73,2751
(defun append-suffixes-hack 286,9811
(defmacro define-element 221,8145
(defvar der-term75,2804
(defvar der-term-loop 86,3238
(defun flame 254,9048
(defun flame-expand 244,8827
(defun flame1 269,9432
(defun flame2 264,9320
(defun flatten 249,8943
(defvar group-adj106,3834
(defvar group-adj-loop 118,4268
(defvar paper192,7237
(defvar paper-loop 197,7377
(defvar person200,7419
(defvar person-loop 208,7708
(defun psychoanalyze-flamer 296,10116
(defvar quality53,2090
(defvar quality-loop 61,2344
(defvar reason210,7752
(defvar reason-loop 219,8101
(defvar sentence15,468
(defun sentence-ify 274,9594
(defvar sentence-loop 50,2039
(defvar statement120,4321
(defvar statement-loop 189,7183
(defun string-ify 279,9716
(defvar thing89,3289
(defvar thing-loop 103,3792

../lisp/float.el,1097
(defun abs 137,4704
(defconst decimal-digits 58,2189
(defconst exp-base 52,2007
(defconst expt-digits 61,2272
(defun extract-match 149,5074
(defun f 285,9456
(defun f% 224,7665
(defun f* 186,6260
(defun f+ 169,5718
(defun f- 180,6070
(defun f/ 204,6949
(defun f/= 263,8836
(defun f< 253,8582
(defun f<= 258,8703
(defun f= 230,7827
(defun f> 234,7933
(defun f>= 248,8435
(defun fabs 140,4776
(defun fashl 120,4084
(defun fashr 123,4191
(defun fint 315,10445
(defun float-to-string 326,10893
(defconst floating-point-regexp81,2949
(defun floatp 280,9277
(defun fmax 272,9061
(defun fmin 268,8960
(defun ftrunc 301,9918
(defun fzerop 276,9168
(defconst high-bit-mask 93,3276
(defun hihalf 160,5505
(defun int-to-hex-string 289,9577
(defun lohalf 163,5608
(defconst mantissa-bits 55,2090
(defconst mantissa-half-minval 79,2892
(defconst mantissa-maxval 68,2445
(defconst mantissa-minval 73,2653
(defconst maxbit 65,2381
(defun normalize 126,4300
(defun same-sign 146,4963
(defconst second-bit-mask 96,3370
(defun string-to-float 395,13149
(defun xor 143,4886

../lisp/fortran.el,1828
(defun beginning-of-fortran-subprogram 404,17561
(defun calculate-fortran-indent 497,20893
(defvar comment-line-start 42,1581
(defvar comment-line-start-skip 45,1670
(defun delete-horizontal-regexp 379,16624
(defun end-of-fortran-subprogram 413,17894
(defun fortran-abbrev-help 344,15381
(defun fortran-abbrev-start 333,14934
(defvar fortran-check-all-num-for-matching-do 62,2312
(defun fortran-check-for-matching-do 633,26583
(defvar fortran-column-ruler78,2955
(defun fortran-column-ruler 352,15650
(defun fortran-comment-hook 265,12392
(defvar fortran-comment-indent-char 54,2041
(defvar fortran-comment-indent-style 34,1267
(defvar fortran-comment-line-column 39,1497
(defvar fortran-comment-region 69,2596
(defun fortran-comment-region 307,13872
(defvar fortran-continuation-char 65,2443
(defvar fortran-continuation-indent 31,1171
(defun fortran-current-line-indentation 554,23336
(defvar fortran-do-indent 25,1017
(defvar fortran-electric-line-number 72,2720
(defun fortran-electric-line-number 387,16950
(defvar fortran-if-indent 28,1094
(defun fortran-indent-comment 271,12526
(defun fortran-indent-line 470,19920
(defun fortran-indent-subprogram 488,20602
(defun fortran-indent-to-column 577,24178
(defvar fortran-line-number-indent 58,2163
(defun fortran-line-number-indented-correctly-p 622,26167
(defvar fortran-minimum-statement-indent 48,1763
(defun fortran-mode 182,8873
(defvar fortran-mode-abbrev-table 132,5671
(defvar fortran-mode-map 102,4023
(defvar fortran-mode-syntax-table 85,3263
(defconst fortran-mode-version 83,3223
(defun fortran-next-statement 455,19350
(defun fortran-previous-statement 430,18422
(defun fortran-split-line 370,16286
(defvar fortran-startup-message 75,2844
(defun fortran-window-create 361,16030
(defun mark-fortran-subprogram 422,18194

../lisp/ftp.el,683
(defun ftp-asynchronous-input-sentinel 254,9378
(defun ftp-asynchronous-output-sentinel 258,9553
(defun ftp-command 224,8532
(defun ftp-find-file 73,2534
(defun ftp-find-file-or-directory 99,3888
(defun ftp-list-directory 86,3202
(defun ftp-login 210,8064
(defvar ftp-password-alist 24,945
(defun ftp-read-file-name 65,2252
(defun ftp-revert-buffer 360,13031
(defun ftp-sentinel 263,9735
(defun ftp-setup-buffer 188,7339
(defun ftp-setup-write-file-hooks 330,11996
(defun ftp-synchronous-input-sentinel 256,9465
(defun ftp-synchronous-output-sentinel 260,9643
(defun ftp-write-file 140,5407
(defun ftp-write-file-hook 343,12474
(defun read-ftp-user-password 26,994

../lisp/gdb.el,960
(def-gdb "cont" 95,3384
(def-gdb "down" 99,3579
(def-gdb "finish" 97,3435
(def-gdb "next" 94,3318
(def-gdb "step" 92,3194
(def-gdb "stepi" 93,3256
(def-gdb "up" 98,3501
(define-key ctl-x-map 74,2665
(define-key ctl-x-map 75,2703
(defvar current-gdb-buffer 148,5321
(defmacro def-gdb 80,2846
(defun gdb 153,5419
(defun gdb-break 343,12204
(defun gdb-call 324,11616
(defvar gdb-command-name 150,5354
(defvar gdb-commands 371,13110
(defun gdb-display-frame 290,10347
(defun gdb-display-line 305,11034
(defun gdb-filter 182,6680
(defun gdb-filter-accumulate-marker 189,6896
(defun gdb-filter-insert 222,8022
(defun gdb-filter-scan-input 212,7674
(defun gdb-maybe-delete-prompt 333,11898
(defun gdb-mode 101,3661
(defvar gdb-mode-map 66,2488
(defvar gdb-prompt-pattern 63,2387
(defun gdb-read-address(353,12521
(defun gdb-refresh 284,10205
(defun gdb-sentinel 248,8945
(defun gdb-set-buffer 172,6273
(defun send-gdb-command 375,13228

../lisp/gosmacs.el,331
(defun gosmacs-next-window 83,2876
(defun gosmacs-previous-window 77,2640
(defun line-to-top-of-window 99,3442
(defvar non-gosmacs-binding-alist 21,812
(defun rebind-and-record 57,1919
(defun scroll-one-line-down 94,3273
(defun scroll-one-line-up 89,3105
(defun set-gnu-bindings 72,2468
(defun set-gosmacs-bindings 23,852

../lisp/grow-vers.el,0

../lisp/hanoi.el,138
(defun hanoi 18,277
(defun hanoi-draw-ring 182,5170
(defun hanoi-move-ring 128,3404
(defun hanoi-topos 10,135
(defun hanoi0 115,3111

../lisp/help.el,1215
(defun command-apropos 287,9775
(defun describe-copying 134,4611
(defun describe-distribution 128,4423
(defun describe-function 230,8095
(defun describe-key 105,3715
(defun describe-key-briefly 82,2667
(defun describe-mode 119,4176
(defun describe-no-warranty 141,4819
(defun describe-variable 260,8933
(defun function-called-at-point 218,7766
(define-key global-map 24,901
(defun help-for-help 167,5569
(defvar help-map 21,811
(define-key help-map 27,977
(define-key help-map 28,1021
(define-key help-map 30,1063
(define-key help-map 31,1110
(define-key help-map 32,1162
(define-key help-map 33,1213
(define-key help-map 35,1257
(define-key help-map 37,1303
(define-key help-map 38,1351
(define-key help-map 40,1392
(define-key help-map 41,1437
(define-key help-map 43,1483
(define-key help-map 45,1516
(define-key help-map 47,1557
(define-key help-map 49,1599
(define-key help-map 50,1645
(define-key help-map 52,1689
(define-key help-map 54,1733
(define-key help-map 56,1780
(define-key help-map 58,1817
(defun help-with-tutorial 60,1863
(defun print-help-return-message 92,3073
(defun variable-at-point 251,8718
(defun view-emacs-news 149,5035
(defun view-lossage 154,5189

../lisp/helper.el,416
(defun Helper-describe-bindings 124,4302
(defun Helper-describe-function 101,3602
(defun Helper-describe-key 95,3433
(defun Helper-describe-key-briefly 89,3267
(defun Helper-describe-mode 113,3992
(defun Helper-describe-variable 107,3797
(defun Helper-help 131,4512
(defvar Helper-help-map 37,1411
(defun Helper-help-options 82,3037
(defun Helper-help-scroller 52,2090
(defvar Helper-return-blurb 29,1150

../lisp/hideif.el,2773
(defun backward-ifdef 597,19309
(defun define-hide-ifdef-mode-map 132,5204
(defun down-ifdef 618,19823
(defun forward-ifdef 578,18824
(defun hide-ifdef-block 960,30028
(defun hide-ifdef-define 886,27909
(defvar hide-ifdef-define-alist 1004,31202
(defvar hide-ifdef-env 301,10754
(defvar hide-ifdef-evaluator 294,10534
(defun hide-ifdef-guts 831,26311
(defvar hide-ifdef-hiding 168,6700
(defvar hide-ifdef-hiding 849,26772
(defvar hide-ifdef-initially 845,26650
(defvar hide-ifdef-lines 858,27060
(defvar hide-ifdef-mode 165,6623
(defun hide-ifdef-mode 182,7081
(defvar hide-ifdef-mode-map 122,4898
(defvar hide-ifdef-mode-map-before 128,5064
(defconst hide-ifdef-mode-prefix-key 125,4969
(defvar hide-ifdef-read-only 852,26841
(defun hide-ifdef-region 279,10145
(defun hide-ifdef-set-define-alist 1020,31646
(defun hide-ifdef-toggle-outside-read-only 872,27515
(defun hide-ifdef-toggle-read-only 861,27165
(defun hide-ifdef-undef 892,28091
(defun hide-ifdef-use-define-alist 1028,31908
(defun hide-ifdefs 899,28283
(defun hif-canonicalize 488,16075
(defun hif-compress-define-list 1007,31292
(defconst hif-cpp-prefix 333,11452
(defun hif-defined 317,11132
(defconst hif-else-regexp 336,11641
(defconst hif-end-of-comment 352,12258
(defconst hif-endif-regexp 337,11699
(defun hif-endif-to-ifdef 560,18292
(defun hif-expr 424,14466
(defun hif-factor 444,14943
(defun hif-find-any-ifX 504,16572
(defun hif-find-ifdef-block 936,29426
(defun hif-find-next-relevant 513,16816
(defun hif-find-previous-relevant 523,17192
(defun hif-find-range 703,22149
(defun hif-hide-line 745,23496
(defun hif-ifdef-to-endif 544,17811
(defconst hif-ifndef-regexp 334,11506
(defconst hif-ifx-else-endif-regexp338,11759
(defconst hif-ifx-regexp 335,11568
(defun hif-infix-to-prefix 342,11869
(defun hif-looking-at-else 539,17746
(defun hif-looking-at-endif 537,17682
(defun hif-looking-at-ifX 535,17592
(defun hif-lookup 310,10979
(defun hif-make-range 688,21651
(defun hif-nexttoken 417,14288
(defun hif-outline-flag-region 262,9582
(defvar hif-outside-read-only 855,26950
(defun hif-parse-if-exp 408,14049
(defun hif-possibly-hide 795,25083
(defun hif-range-else 693,21834
(defun hif-range-else-p 691,21740
(defun hif-range-end 694,21879
(defun hif-range-start 692,21788
(defun hif-recurse-on 785,24824
(defun hif-set-var 305,10834
(defun hif-show-all 274,10000
(defun hif-show-ifdef-region 285,10354
(defun hif-term 434,14702
(defconst hif-token-regexp 351,12195
(defun hif-tokenize 355,12297
(defvar hif-undefined-symbol 298,10674
(defun hif-update-mode-line 160,6484
(defun next-ifdef 643,20430
(defun previous-ifdef 659,20846
(defun show-ifdef-block 981,30609
(defun show-ifdefs 924,29067
(defun up-ifdef 630,20099

../lisp/icon.el,1058
(define-abbrev-table 'icon-mode-abbrev-table 29,1140
(defun beginning-of-icon-defun 410,15161
(defun calculate-icon-indent 262,9882
(defun electric-icon-brace 157,6491
(defun end-of-icon-defun 417,15393
(defconst icon-auto-newline 79,3363
(defun icon-backward-to-noncomment 360,13755
(defun icon-backward-to-start-of-continued-exp 371,14050
(defun icon-backward-to-start-of-if 386,14434
(defconst icon-brace-imaginary-offset 69,2867
(defconst icon-brace-offset 71,2990
(defun icon-comment-indent 149,6211
(defconst icon-continued-brace-offset 75,3200
(defconst icon-continued-statement-offset 73,3098
(defun icon-indent-command 187,7277
(defconst icon-indent-level 67,2766
(defun icon-indent-line 221,8492
(defun icon-is-continuation-line 349,13366
(defun icon-is-continued-line 381,14328
(defun icon-mode 87,3702
(defvar icon-mode-abbrev-table 27,1058
(defvar icon-mode-map 31,1190
(defvar icon-mode-syntax-table 45,1780
(defconst icon-tab-always-indent 83,3516
(defun indent-icon-exp 424,15591
(defun mark-icon-function 401,14938

../lisp/inc-vers.el,0

../lisp/indent.el,660
(define-key ctl-x-map 224,7292
(defun edit-tab-stops 163,5342
(defvar edit-tab-stops-buffer 159,5201
(defvar edit-tab-stops-map 152,4906
(defun edit-tab-stops-note-changes 195,6355
(define-key esc-map 223,7249
(define-key esc-map 225,7336
(define-key global-map 222,7196
(defun indent-according-to-mode 26,928
(defun indent-for-tab-command 31,1068
(defun indent-region 81,2575
(defvar indent-region-function 77,2426
(defun indent-relative 117,3633
(defun indent-relative-maybe 112,3510
(defun indent-rigidly 45,1456
(defun indent-to-left-margin 64,2113
(defun insert-tab 38,1283
(defvar tab-stop-list148,4772
(defun tab-to-tab-stop 209,6757

../lisp/info.el,1509
(defun Info-cease-edit 692,23474
(defvar Info-current-file 36,1344
(defvar Info-current-node 43,1578
(defvar Info-current-subfile 39,1427
(defvar Info-directory 33,1263
(defun Info-directory 387,13202
(defun Info-edit 676,22909
(defvar Info-edit-map 662,22498
(defun Info-edit-mode 669,22711
(defvar Info-enable-active-nodes 29,1105
(defvar Info-enable-edit 26,995
(defun Info-exit 545,18308
(defun Info-extract-menu-counting 511,17315
(defun Info-extract-menu-item 499,16925
(defun Info-extract-menu-node-name 432,14821
(defun Info-extract-pointer 336,11629
(defun Info-fifth-menu-item 540,18166
(defun Info-find-node 60,2188
(defun Info-first-menu-item 520,17594
(defun Info-follow-reference 392,13312
(defun Info-following-node-name 346,11945
(defun Info-fourth-menu-item 535,18022
(defun Info-goto-node 251,8660
(defun Info-help 556,18581
(defvar Info-history 22,865
(defun Info-last 373,12714
(defvar Info-last-search 268,9445
(defun Info-menu 452,15381
(defun Info-menu-item-sequence 447,15267
(defun Info-mode 616,20783
(defvar Info-mode-map 581,19287
(defun Info-next 358,12317
(defun Info-prev 363,12442
(defun Info-read-subfile 176,6471
(defun Info-search 271,9529
(defun Info-second-menu-item 525,17736
(defun Info-select-node 210,7534
(defun Info-set-mode-line 238,8329
(defun Info-summary 564,18747
(defvar Info-tag-table-marker 46,1664
(defun Info-third-menu-item 530,17880
(defun Info-undefined 551,18490
(defun Info-up 368,12589
(defun info 50,1825

../lisp/informat.el,206
(defun Info-split 75,2501
(defun Info-tagify 22,838
(defun Info-validate 142,4887
(defun Info-validate-node-name 284,9366
(defun Info-validate-tags-table 307,9912
(defun batch-info-validate 344,11005

../lisp/isearch.el,198
(defun isearch 60,2599
(defun isearch-message 273,10134
(defun isearch-pop 298,11019
(defun isearch-push-state 311,11349
(defun isearch-search 317,11520
(defun nonincremental-search 353,12761

../lisp/kermit.el,452
(defun kermit-clean-filter 153,7343
(defun kermit-clean-off 180,8317
(defun kermit-clean-on 172,8021
(defun kermit-default-cr 137,6640
(defun kermit-default-nl 145,6978
(defun kermit-esc 87,4907
(defvar kermit-esc-char 85,4849
(defun kermit-send-char 94,5137
(define-key shell-mode-map 101,5340
(define-key shell-mode-map 102,5388
(define-key shell-mode-map 104,5507
(define-key shell-mode-map 135,6585
(defun shell-send-input-cr 106,5557

../lisp/keypad.el,109
(defun function-key-sequence 146,5526
(defun keypad-default 88,3099
(defun setup-terminal-keymap 125,4412

../lisp/ledit.el,520
(defconst ledit-buffer 33,1276
(defconst ledit-compile-file 30,1149
(defun ledit-from-lisp-mode 134,4505
(defun ledit-go-to-lisp 77,2589
(defun ledit-go-to-liszt 91,3008
(defun ledit-mode 118,3921
(defvar ledit-mode-map 24,897
(defconst ledit-read-file 28,1037
(defun ledit-save-defun 43,1718
(defun ledit-save-region 53,1991
(defun ledit-setup 106,3475
(defun ledit-zap-defun-to-lisp 59,2174
(defun ledit-zap-defun-to-liszt 65,2304
(defconst ledit-zap-file 26,926
(defun ledit-zap-region-to-lisp 71,2437

../lisp/life.el,550
(defun abs 96,4052
(defun life 98,4090
(defun life-compute-neighbor-deltas 170,6364
(defconst life-current-generation 92,3924
(defun life-display-generation 264,9845
(defun life-expand-plane-if-needed 222,8300
(defun life-extinct-quit 269,9959
(defconst life-generation-string 94,4013
(defun life-grim-reaper 186,6863
(defun life-increment-generation 182,6715
(defun life-insert-random-pattern 177,6575
(defconst life-neighbor-deltas 85,3704
(defconst life-patterns23,883
(defun life-setup 119,4697
(defconst life-window-start 89,3873

../lisp/lisp-mode.el,995
(define-abbrev-table 'lisp-mode-abbrev-table 60,2628
(defun calculate-lisp-indent 276,9893
(defun emacs-lisp-mode 104,4264
(defvar emacs-lisp-mode-map 97,4044
(defvar emacs-lisp-mode-syntax-table 22,863
(defun eval-defun 212,7795
(defun eval-last-sexp 197,7386
(defun eval-print-last-sexp 183,7024
(defun indent-code-rigidly 547,21067
(defun indent-sexp 477,18413
(defconst lisp-body-indent 402,15098
(defun lisp-comment-indent 224,8135
(defun lisp-indent-defform 449,17432
(defconst lisp-indent-hook 235,8454
(defun lisp-indent-hook 368,13737
(defun lisp-indent-line 237,8504
(defconst lisp-indent-offset 234,8417
(defun lisp-indent-specform 404,15132
(defun lisp-interaction-mode 163,6245
(defvar lisp-interaction-mode-map 155,5933
(defun lisp-mode 129,5080
(defvar lisp-mode-abbrev-table 23,908
(defun lisp-mode-commands 92,3869
(defvar lisp-mode-map 121,4841
(defvar lisp-mode-syntax-table 21,824
(defun lisp-mode-variables 62,2678
(defun lisp-send-defun 150,5779

../lisp/lisp.el,528
(defun backward-kill-sexp 93,3101
(defun backward-list 51,1688
(defun backward-sexp 29,1092
(defun backward-up-list 68,2252
(defun beginning-of-defun 99,3306
(defun buffer-end 108,3642
(defun down-list 58,1896
(defun end-of-defun 111,3709
(defun forward-list 44,1444
(defun forward-sexp 21,819
(defun insert-parentheses 158,4920
(defun kill-sexp 85,2845
(defun lisp-complete-symbol 188,5862
(defun mark-defun 149,4702
(defun mark-sexp 36,1290
(defun move-past-close-and-reindent 175,5481
(defun up-list 75,2485

../lisp/loaddefs.el,4101
(defvar auto-mode-alist 162,6404
(defconst case-replace 105,4162
(defvar compile-command 130,5134
(defvar ctl-x-4-map 205,7864
(define-key ctl-x-4-map 223,8429
(define-key ctl-x-4-map 404,14918
(define-key ctl-x-4-map 1165,42872
(define-key ctl-x-4-map 1346,49318
(define-key ctl-x-map 337,12621
(define-key ctl-x-map 392,14556
(define-key ctl-x-map 707,25743
(define-key ctl-x-map 1166,42920
(define-key ctl-x-map 1764,64975
(define-key ctl-x-map 1766,65023
(define-key ctl-x-map 1767,65069
(define-key ctl-x-map 1768,65115
(define-key ctl-x-map 1769,65160
(define-key ctl-x-map 1770,65204
(define-key ctl-x-map 1774,65339
(define-key ctl-x-map 1782,65642
(define-key ctl-x-map 1784,65697
(define-key ctl-x-map 1785,65739
(define-key ctl-x-map 1786,65780
(define-key ctl-x-map 1788,65857
(define-key ctl-x-map 1790,65934
(define-key ctl-x-map 1937,72009
(define-key ctl-x-map 1938,72056
(define-key ctl-x-map 1939,72103
(define-key ctl-x-map 1940,72158
(define-key ctl-x-map 1942,72258
(defvar dired-listing-switches 133,5250
(defconst display-time-day-and-date 157,6239
(define-key esc-map 349,13051
(define-key esc-map 1303,48055
(define-key esc-map 1330,48781
(define-key esc-map 1381,50357
(define-key esc-map 1749,64363
(define-key esc-map 1750,64405
(define-key esc-map 1751,64448
(define-key esc-map 1752,64494
(define-key esc-map 1753,64533
(define-key esc-map 1754,64572
(define-key esc-map 1755,64611
(define-key esc-map 1756,64653
(define-key esc-map 1757,64696
(define-key esc-map 1758,64744
(define-key esc-map 1759,64786
(define-key esc-map 1760,64826
(define-key esc-map 1761,64871
(define-key esc-map 1762,64926
(define-key esc-map 1772,65260
(define-key esc-map 1773,65301
(define-key esc-map 1776,65385
(define-key esc-map 1777,65430
(define-key esc-map 1778,65474
(define-key esc-map 1779,65515
(define-key esc-map 1780,65559
(define-key esc-map 1781,65602
(define-key esc-map 1877,69352
(define-key esc-map 1933,71928
(define-key esc-map 1941,72213
(defconst function-keymap 85,3335
(define-key global-map 1875,69255
(define-key global-map 1876,69303
(defvar indent-line-function 110,4375
(defun isearch-backward 1820,67139
(defun isearch-backward-regexp 1827,67284
(defun isearch-forward 1792,65981
(defun isearch-forward-regexp 1812,66892
(defconst ledit-go-to-lisp-string 152,6037
(defconst ledit-go-to-liszt-string 154,6132
(defconst ledit-save-files 150,5935
(defconst lpr-switches 137,5402
(defvar mail-aliases 1126,41511
(defconst mail-archive-file-name 1123,41402
(defconst mail-header-separator 1120,41266
(defconst mail-interactive 1113,40826
(defconst mail-self-blind 1108,40620
(defvar mail-use-rfc822 1169,42976
(defconst mail-yank-ignored-headers 1117,40989
(defvar minor-mode-alist 74,2924
(defconst mode-line-buffer-identification 44,1892
(defconst mode-line-modified 57,2436
(defconst mode-line-process 51,2226
(defconst only-global-abbrevs 113,4466
(defconst page-delimiter 102,4067
(defconst paragraph-separate 94,3712
(defconst paragraph-start 92,3599
(defun query-replace 1879,69406
(defun query-replace-regexp 1893,70043
(defun replace-regexp 1920,71316
(defun replace-string 1909,70810
(defvar rmail-default-dont-reply-to-names 1037,37968
(defvar rmail-delete-after-output 1052,38783
(defconst rmail-dont-reply-to-names 1033,37814
(defconst rmail-ignored-headers 1049,38586
(defconst rmail-primary-inbox-list 1044,38336
(defconst search-delete-char 1851,68208
(defconst search-exit-char 1849,68133
(defconst search-exit-option 1859,68614
(defvar search-last-regexp 1840,67744
(defvar search-last-string 1835,67535
(defconst search-quote-char 1853,68301
(defconst search-repeat-char 1845,67951
(defconst search-reverse-char 1847,68041
(defvar search-slow-speed 1868,69013
(defvar search-slow-window-lines 1862,68722
(defconst search-yank-line-char 1857,68507
(defconst search-yank-word-char 1855,68403
(defconst send-mail-function 1104,40444
(defconst sentence-end 98,3884
(defconst shell-prompt-pattern 145,5683
(defvar tags-file-name 140,5508

../lisp/loadup.el,0

../lisp/lpr.el,171
(defun lpr-buffer 29,1079
(defvar lpr-command 24,931
(defun lpr-region 41,1532
(defun print-buffer 35,1297
(defun print-region 47,1749
(defun print-region-1 53,1983

../lisp/macros.el,100
(defun insert-kbd-macro 36,1460
(defun kbd-macro-query 65,2550
(defun name-last-kbd-macro 21,837

../lisp/mail-utils.el,257
(defun mail-comma-list-regexp 198,7080
(defun mail-fetch-field 151,5419
(defun mail-parse-comma-list 183,6712
(defun mail-string-delete 29,1063
(defun mail-strip-quoted-names 36,1332
(defvar mail-use-rfc822 24,883
(defun rmail-dont-reply-to 116,4175

../lisp/mailalias.el,105
(defun build-mail-aliases 81,3257
(defun define-mail-alias 123,4729
(defun expand-mail-aliases 23,937

../lisp/mailpost.el,33
(defun post-mail-send-it 15,342

../lisp/makesum.el,66
(defun double-column 76,2757
(defun make-command-summary 21,820

../lisp/man.el,91
(defun insert-man-file 145,4909
(defun manual-entry 20,828
(defun nuke-nroff-bs 93,3261

../lisp/medit.el,443
(defconst medit-buffer 29,1165
(defun medit-goto-mdl 75,2555
(defun medit-mode 104,3601
(defconst medit-mode-hook 101,3477
(defconst medit-mode-map 92,3117
(defun medit-save-buffer 51,1918
(defun medit-save-define 34,1360
(defconst medit-save-files 31,1266
(defun medit-save-region 45,1716
(defun medit-zap-buffer 69,2429
(defun medit-zap-define-to-mdl 57,2118
(defconst medit-zap-file 27,1048
(defun medit-zap-region-mdl 63,2280

../lisp/meese.el,35
(defun protect-innocence-hook 1,0

../lisp/mh-e.el,11526
(defun make-local-vars 1545,54172
(defun mh-add-msgs-to-seq 2355,80891
(defun mh-add-to-sequence 2444,83988
(defvar mh-annotate-char 1797,62184
(defvar mh-annotate-field 1800,62266
(defun mh-annotate-msg 2578,88135
(defun mh-auto-fill-for-letter 1846,63983
(defvar mh-before-quit-hook 82,3119
(defvar mh-before-send-letter-hook 76,2906
(defun mh-burst-digest 354,12168
(defvar mh-bury-show-buffer 146,5340
(defun mh-check-whom 1911,65907
(defvar mh-clean-message-header 106,3752
(defun mh-clean-msg-header 1314,45313
(defvar mh-cmd-note 176,6579
(defun mh-compose-and-send-mail 2014,68928
(defvar mh-compose-letter-function 72,2731
(defun mh-copy-line-to-point 2477,84990
(defun mh-copy-msg 368,12770
(defun mh-copy-seq-to-point 2471,84774
(defvar mh-cur-scan-msg-regexp 212,7882
(defvar mh-current-folder 1436,49623
(defun mh-define-sequence 2453,84231
(defun mh-define-sequences 2439,83858
(defun mh-delete-a-msg 1215,41961
(defun mh-delete-line 1347,46463
(defvar mh-delete-list 1441,49974
(defun mh-delete-msg 383,13376
(defun mh-delete-msg-from-seq 408,14289
(defun mh-delete-msg-no-motion 396,13844
(defun mh-delete-scan-msgs 1761,61117
(defun mh-delete-seq-locally 2338,80301
(defvar mh-delete-yanked-msg-window 149,5446
(defvar mh-deleted-msg-regexp 191,7040
(defun mh-display-msg 1252,43205
(defvar mh-do-not-confirm 142,5195
(defun mh-do-pick-search 1949,66893
(defvar mh-draft-folder 274,10006
(defvar mh-e-RCS-id)3,72
(defun mh-edit-again 424,14837
(defun mh-exec-cmd 2491,85335
(defun mh-exec-cmd-daemon 2527,86463
(defun mh-exec-cmd-output 2517,86111
(defun mh-exec-cmd-quiet 2506,85779
(defun mh-exec-lib-cmd-output 2548,87154
(defun mh-execute-commands 445,15600
(defun mh-expand-file-name 2723,92618
(defun mh-extract-rejected-mail 456,15932
(defun mh-find-path 2731,92949
(defun mh-find-seq 2209,76016
(defun mh-first-msg 479,16820
(defvar mh-first-msg-num 1447,50356
(defvar mh-flagged-scan-msg-regexp 208,7685
(defvar mh-folder-filename 1438,49765
(defvar mh-folder-list 271,9936
(defun mh-folder-mode 1467,50959
(defvar mh-folder-mode-hook 66,2565
(defvar mh-folder-mode-map 252,9368
(define-key mh-folder-mode-map 2820,96131
(define-key mh-folder-mode-map 2821,96176
(define-key mh-folder-mode-map 2822,96221
(define-key mh-folder-mode-map 2823,96275
(define-key mh-folder-mode-map 2824,96330
(define-key mh-folder-mode-map 2825,96379
(define-key mh-folder-mode-map 2826,96432
(define-key mh-folder-mode-map 2827,96494
(define-key mh-folder-mode-map 2828,96552
(define-key mh-folder-mode-map 2829,96602
(define-key mh-folder-mode-map 2830,96657
(define-key mh-folder-mode-map 2831,96711
(define-key mh-folder-mode-map 2832,96765
(define-key mh-folder-mode-map 2833,96832
(define-key mh-folder-mode-map 2834,96896
(define-key mh-folder-mode-map 2835,96951
(define-key mh-folder-mode-map 2836,97005
(define-key mh-folder-mode-map 2837,97060
(define-key mh-folder-mode-map 2838,97120
(define-key mh-folder-mode-map 2839,97174
(define-key mh-folder-mode-map 2840,97230
(define-key mh-folder-mode-map 2841,97286
(define-key mh-folder-mode-map 2842,97336
(define-key mh-folder-mode-map 2843,97391
(define-key mh-folder-mode-map 2844,97440
(define-key mh-folder-mode-map 2845,97498
(define-key mh-folder-mode-map 2846,97549
(define-key mh-folder-mode-map 2847,97606
(define-key mh-folder-mode-map 2848,97663
(define-key mh-folder-mode-map 2849,97716
(define-key mh-folder-mode-map 2850,97764
(define-key mh-folder-mode-map 2851,97809
(define-key mh-folder-mode-map 2852,97854
(define-key mh-folder-mode-map 2853,97900
(define-key mh-folder-mode-map 2854,97949
(define-key mh-folder-mode-map 2855,97999
(define-key mh-folder-mode-map 2856,98048
(define-key mh-folder-mode-map 2857,98105
(define-key mh-folder-mode-map 2858,98154
(define-key mh-folder-mode-map 2859,98199
(define-key mh-folder-mode-map 2860,98244
(define-key mh-folder-mode-map 2861,98306
(define-key mh-folder-mode-map 2862,98357
(define-key mh-folder-mode-map 2863,98408
(define-key mh-folder-mode-map 2864,98472
(define-key mh-folder-mode-map 2865,98535
(define-key mh-folder-mode-map 2866,98594
(defun mh-folder-name-p 2397,82336
(defun mh-forward 485,16919
(defun mh-fully-kill-draft 2173,74876
(defun mh-get-field 2762,94252
(defun mh-get-msg-num 2691,91572
(defun mh-get-new-mail 1595,55834
(defvar mh-good-msg-regexp 188,6933
(defun mh-goto-cur-msg 1684,58787
(defun mh-goto-header-end 2809,95819
(defun mh-goto-msg 530,18644
(defun mh-in-header-p 1856,64234
(defun mh-inc-folder 559,19643
(defvar mh-inc-folder-hook 79,3011
(defvar mh-ins-buf-prefix 138,5026
(defvar mh-ins-string 89,3333
(defun mh-insert-fields 2778,94807
(defun mh-insert-letter 2097,72025
(defun mh-insert-prefix-string 2164,74604
(defun mh-insert-signature 1904,65692
(defun mh-internal-seq 2390,82112
(defun mh-invalidate-show-buffer 1301,44942
(defvar mh-invisible-headers226,8366
(defun mh-kill-folder 580,20489
(defvar mh-last-destination 249,9285
(defun mh-last-msg 597,21065
(defvar mh-last-msg-num 1448,50419
(defun mh-letter-mode 1803,62337
(defvar mh-letter-mode-hook 69,2648
(defvar mh-letter-mode-map 255,9438
(define-key mh-letter-mode-map 2871,98682
(define-key mh-letter-mode-map 2872,98742
(define-key mh-letter-mode-map 2873,98802
(define-key mh-letter-mode-map 2874,98860
(define-key mh-letter-mode-map 2875,98920
(define-key mh-letter-mode-map 2876,98980
(define-key mh-letter-mode-map 2877,99037
(define-key mh-letter-mode-map 2878,99094
(define-key mh-letter-mode-map 2879,99149
(define-key mh-letter-mode-map 2880,99206
(define-key mh-letter-mode-map 2881,99263
(define-key mh-letter-mode-map 2882,99327
(define-key mh-letter-mode-map 2883,99385
(define-key mh-letter-mode-map 2884,99446
(define-key mh-letter-mode-map 2885,99506
(define-key mh-letter-mode-map 2886,99570
(defvar mh-letter-mode-syntax-table 261,9607
(defun mh-list-folders 605,21231
(defun mh-list-to-string 2558,87484
(defvar mh-lpr-command-format 121,4356
(defun mh-make-folder 1451,50482
(defun mh-make-folder-list 2647,90441
(defun mh-make-folder-mode-line 1640,57429
(defun mh-make-pick-template 1932,66506
(defun mh-make-seq 2203,75870
(defun mh-map-over-seqs 2431,83548
(defun mh-map-to-seq-msgs 2420,83222
(defun mh-mapc 315,11338
(defun mh-maybe-show 1420,49133
(defun mh-msg-filename 2710,92176
(defun mh-msg-filenames 2718,92411
(defun mh-msg-is-in-seq 620,21634
(defvar mh-msg-number-regexp 200,7335
(defun mh-msg-search-pat 2705,92046
(defvar mh-msg-search-regexp 204,7496
(defun mh-msg-to-seq 2228,76443
(defun mh-narrow-to-seq 630,21931
(defvar mh-narrowed-to-seq 1446,50289
(defun mh-new-draft-name 1394,48367
(defvar mh-next-direction 1445,50216
(defun mh-next-msg 1403,48645
(defun mh-next-pick-field 1986,68096
(defvar mh-next-seq-num 1440,49916
(defun mh-next-undeleted-msg 646,22504
(defun mh-notate 2590,88567
(defun mh-notate-if-in-one-seq 2411,82846
(defun mh-notate-seq 2405,82603
(defun mh-notate-user-sequences 2379,81796
(defvar mh-note-dist 185,6831
(defvar mh-note-forw 182,6733
(defvar mh-note-repl 179,6634
(defun mh-outstanding-commands-p 1780,61752
(defun mh-pack-folder 660,22899
(defun mh-pack-folder-1 1697,59113
(defun mh-page-digest 795,27587
(defun mh-page-digest-backwards 815,28226
(defun mh-page-msg 835,28857
(defvar mh-partial-folder-mode-line-annotation 219,8164
(defvar mh-pick-mode-map 258,9526
(define-key mh-pick-mode-map 2891,99664
(define-key mh-pick-mode-map 2892,99724
(define-key mh-pick-mode-map 2893,99782
(define-key mh-pick-mode-map 2894,99840
(define-key mh-pick-mode-map 2895,99898
(define-key mh-pick-mode-map 2896,99956
(define-key mh-pick-mode-map 2897,100014
(define-key mh-pick-mode-map 2898,100069
(define-key mh-pick-mode-map 2899,100124
(define-key mh-pick-mode-map 2900,100179
(define-key mh-pick-mode-map 2901,100234
(define-key mh-pick-mode-map 2902,100289
(defun mh-pipe-msg 674,23395
(defun mh-position-on-field 2796,95393
(defun mh-previous-page 842,29047
(defvar mh-previous-seq 284,10264
(defun mh-previous-undeleted-msg 853,29336
(defvar mh-previous-window-config 281,10178
(defvar mh-print-background 127,4628
(defun mh-print-msg 865,29677
(defun mh-process-commands 1719,59834
(defun mh-process-daemon 2541,86934
(defun mh-process-or-undo-commands 1707,59453
(defun mh-prompt-for-folder 2606,88961
(defmacro mh-push 290,10390
(defun mh-put-msg-in-seq 913,31447
(defun mh-quit 784,27250
(defvar mh-quit-hook 85,3226
(defun mh-read-draft 1352,46602
(defun mh-read-folder-sequences 2258,77548
(defun mh-read-msg-list 2308,79327
(defun mh-read-msg-range 2675,91215
(defun mh-read-seq 2238,76785
(defun mh-read-seq-default 2233,76584
(defun mh-recenter 2189,75385
(defvar mh-recenter-summary-p 135,4913
(defvar mh-recursive-folders 166,6245
(defvar mh-redist-full-contents 59,2378
(defun mh-redistribute 937,32339
(defun mh-refile-a-msg 1229,42355
(defvar mh-refile-list 1442,50035
(defun mh-refile-msg 687,23941
(defun mh-refile-or-write-again 708,24620
(defvar mh-refiled-msg-regexp 194,7133
(defun mh-regenerate-headers 1570,54905
(defvar mh-rejected-letter-start232,8663
(defun mh-remove-folder-from-folder-list 2669,91040
(defun mh-remove-msg-from-seq 2344,80462
(defun mh-remove-seq 2331,80097
(defun mh-rename-seq 2368,81429
(defun mh-reply 724,25250
(defvar mh-reply-default-reply-to 161,6010
(defun mh-rescan-folder 926,31906
(defun mh-rmail 325,11476
(defun mh-scan-folder 1554,54436
(defun mh-search-folder 996,34469
(defvar mh-searching-folder 1929,66438
(defvar mh-seen-list 1444,50160
(defun mh-send 1009,34853
(defvar mh-send-args 1794,62108
(defun mh-send-letter 2050,70514
(defun mh-send-other-window 1020,35279
(defun mh-send-sub 1027,35511
(defvar mh-sent-from-folder 1788,61949
(defvar mh-sent-from-msg 1791,62030
(defun mh-seq-containing-msg 2217,76182
(defun mh-seq-from-command 2288,78670
(defvar mh-seq-list 1443,50102
(defmacro mh-seq-msgs 2207,75968
(defmacro mh-seq-name 2205,75920
(defun mh-seq-names 2282,78484
(defun mh-seq-to-msgs 2212,76070
(defun mh-set-folder-list 2641,90251
(defun mh-set-folder-modified-p 1775,61610
(defun mh-set-mode-name 1425,49281
(defun mh-set-scan-mode 1410,48852
(defun mh-show 1053,36444
(defvar mh-show-buffer 1437,49690
(defvar mh-show-buffer-mode-line-buffer-id 215,7977
(defun mh-show-message-in-other-window 1309,45161
(defvar mh-showing 1439,49839
(defun mh-smail 337,11812
(defun mh-smail-other-window 344,11950
(defun mh-sort-folder 1074,37246
(defvar mh-summary-height 132,4817
(defun mh-to-fcc 1892,65345
(defun mh-to-field 1865,64483
(defvar mh-to-field-choices 239,9032
(defun mh-toggle-showing 1086,37642
(defun mh-undefine-sequence 2464,84587
(defun mh-undo 1094,37814
(defun mh-undo-folder 1142,39505
(defun mh-undo-msg 1130,39158
(defun mh-unmark-all-headers 1661,58147
(defvar mh-unseen-seq 278,10117
(defun mh-unshar-buffer 1166,40278
(defvar mh-unshar-default-directory 169,6355
(defun mh-unshar-msg 1158,39920
(defvar mh-user-path 246,9234
(defvar mh-valid-scan-line 197,7229
(defvar mh-visible-headers 111,3954
(defun mh-visit-folder 1190,41252
(defmacro mh-when 294,10451
(defun mh-widen 1201,41647
(defun mh-write-msg-to-file 977,33766
(defun mh-yank-cur-msg 2123,73132
(defvar mh-yank-from-start-of-msg 154,5670
(defvar mh-yank-hooks92,3437
(defvar mhl-formfile 116,4176
(defmacro with-mh-folder-updating 298,10522

../lisp/mim-mode.el,1720
(define-abbrev-table 'mim-mode-abbrev-table 87,3510
(defun abs 853,35639
(defun backward-down-mim-object 372,15545
(defun backward-kill-mim-object 326,13864
(defun backward-mim-object 308,13241
(defun backward-up-mim-object 388,16191
(defun begin-mim-comment 803,33714
(defun beginning-of-DEFINE 408,16970
(defun calculate-mim-indent 462,19012
(defun end-of-DEFINE 421,17505
(defun find-mim-definition 783,33151
(defun forward-down-mim-object 347,14536
(defun forward-kill-mim-object 320,13657
(defun forward-mim-object 264,11317
(defun forward-mim-objects 292,12535
(defun forward-up-mim-object 378,15781
(defvar indent-mim-arglist 116,4603
(defvar indent-mim-comment 109,4415
(defun indent-mim-comment 696,29746
(defconst indent-mim-hook 89,3560
(defun indent-mim-hook 621,26286
(defun indent-mim-line 731,31259
(defun indent-mim-object 764,32368
(defun indent-mim-offset 669,28699
(defun inside-adecl-or-trailer-p 843,35412
(defun inside-atom-p 285,12254
(defun line-to-top-of-window 259,11191
(defun mark-mim-object 314,13429
(defvar mim-body-indent 112,4489
(defvar mim-down-parens-only 139,5613
(defun mim-mode 150,5990
(defvar mim-mode-hook 83,3360
(defvar mim-mode-hysterical-bindings 34,1161
(defvar mim-mode-map 39,1363
(defvar mim-mode-syntax-table 41,1390
(defvar mim-stop-for-slop 143,5747
(defconst mim-whitespace 81,3324
(defun newline-and-mim-indent 742,31668
(defun next-char 857,35717
(defun next-mim-object 435,17983
(defun open-mim-line 752,32043
(defun previous-mim-object 455,18772
(defun raise-mim-line 332,14043
(defun replace-in-mim-object 394,16418
(defun sign 849,35567
(defun skip-mim-whitespace 838,35240
(defun transpose-mim-objects 401,16694

../lisp/mim-syntax.el,75
(defun fast-syntax-check-mim 76,2664
(defun slow-syntax-check-mim 24,869

../lisp/mlconvert.el,135
(defun convert-mocklisp-buffer 20,826
(defun fix-mlisp-symbols 68,2232
(defun fix-mlisp-syntax 54,1854
(defun ml-expansion 91,2818

../lisp/mlsupport.el,3259
(defun >> 43,1507
(defun append-region-to-buffer 147,4420
(defun argc 250,6978
(defun argv 256,7136
(defun auto-execute 126,3821
(defun backward-character 168,5038
(defun beginning-of-window 284,7795
(defun bind-to-key 72,2228
(defun case-region-capitalize 245,6867
(defun case-region-lower 239,6739
(defun case-region-upper 242,6804
(defun case-word-capitalize 228,6491
(defun case-word-lower 222,6365
(defun case-word-upper 225,6429
(defun copy-region-to-buffer 144,4337
(defmacro declare-buffer-specific 31,1044
(defmacro declare-global 91,2725
(defun define-hooked-global-abbrev 219,6264
(defun define-hooked-local-abbrev 216,6165
(defun define-keymap 51,1683
(defun delete-next-character 153,4596
(defun delete-next-word 156,4667
(defun delete-previous-character 162,4886
(defun delete-previous-word 159,4774
(defun delete-region-to-buffer 140,4219
(defun delete-to-kill-buffer 180,5292
(defun end-of-window 287,7856
(defun erase-region 137,4161
(defmacro error-occurred 94,2844
(defun execute-mlisp-line 368,10253
(defun execute-monitor-command 317,8846
(defun exit-emacs 270,7483
(defun filter-region 310,8558
(defun forward-character 165,4970
(defun invisible-argc 262,7300
(defun invisible-argv 266,7392
(defmacro is-bound 88,2604
(defun kill-to-end-of-line 116,3543
(defun last-key-struck 366,10207
(defun line-to-top-of-window 327,9231
(defun local-bind-to-key 60,1914
(defun ml-autoload 76,2349
(defun ml-buffer-size 278,7694
(defun ml-casify-word 231,6562
(defun ml-current-column 197,5680
(defun ml-current-indent 200,5734
(defun ml-define-string-macro 79,2414
(defmacro ml-defun 23,839
(defun ml-defun-1 26,913
(defun ml-message 114,3474
(defun ml-modify-syntax-entry 376,10444
(defun ml-newline 171,5108
(defun ml-newline-and-indent 186,5419
(defun ml-next-line 174,5164
(defun ml-next-page 339,9548
(defun ml-next-window 351,9877
(defun ml-not 46,1574
(defun ml-prefix-argument 100,3025
(defun ml-previous-line 177,5224
(defun ml-previous-page 330,9304
(defun ml-previous-window 354,9936
(defun ml-print 106,3213
(defun ml-re-search-backward 300,8235
(defun ml-re-search-forward 294,8045
(defun ml-search-backward 297,8142
(defun ml-search-forward 291,7954
(defun ml-set 112,3425
(defun ml-set-default 37,1281
(defun ml-substr 404,11288
(defun ml-use-global-map 57,1831
(defun ml-use-local-map 54,1750
(defun move-dot-to-x-y 371,10313
(defun move-to-comment-column 134,4097
(defun narrow-region 183,5357
(defun newline-and-backup 191,5552
(defun novalue 44,1550
(defun page-next-window 342,9616
(defun prepend-region-to-buffer 150,4507
(defun previous-command 281,7751
(defun provide-prefix-arg 48,1617
(defun push-back-character 82,2486
(defun quote-char 194,5618
(defun region-around-match 203,5793
(defun region-to-string 207,5897
(defun return-prefix-argument 97,2959
(defvar saved-command-line-args 248,6940
(defun scroll-one-line-down 360,10069
(defun scroll-one-line-up 357,10003
(defun set-auto-fill-hook 123,3750
(defmacro setq-default 34,1202
(defun split-current-window 363,10139
(defun to-col 85,2556
(defun use-abbrev-table 210,5989
(defvar use-csh-option-f 307,8458
(defun use-syntax-table 324,9123
(defvar use-users-shell 303,8334

../lisp/modula2.el,1006
(defun execute-monitor-command 367,10078
(defun m2-begin 146,5132
(defun m2-begin-comment 341,9439
(defun m2-case 153,5271
(defun m2-compile 353,9673
(defvar m2-compile-command 13,321
(defun m2-definition 163,5505
(defun m2-else 171,5755
(defun m2-end-comment 347,9557
(defun m2-export 331,9255
(defun m2-for 180,5947
(defun m2-header 194,6321
(defun m2-if 206,6707
(defun m2-import 335,9324
(defvar m2-indent 75,2363
(defun m2-link 358,9801
(defvar m2-link-command 16,397
(defvar m2-link-name 19,467
(defun m2-loop 216,6960
(defvar m2-mode-map 40,1092
(defvar m2-mode-syntax-table 10,236
(defun m2-module 226,7138
(defun m2-newline 134,4819
(defun m2-or 234,7388
(defun m2-procedure 242,7522
(defun m2-record 274,8174
(defun m2-stdio 283,8322
(defun m2-tab 141,4999
(defun m2-toggle 404,11197
(defun m2-type 297,8719
(defun m2-until 303,8799
(defun m2-var 313,8969
(defun m2-visit 372,10273
(defun m2-while 320,9062
(defun m2-with 263,7984
(defun modula-2-mode 77,2443

../lisp/novice.el,101
(defun disable-command 89,3347
(defun disabled-command-hook 26,1023
(defun enable-command 70,2614

../lisp/nroff-mode.el,353
(defun backward-text-line 124,4484
(defun count-text-lines 92,3390
(defun electric-nroff-mode 187,6160
(defun electric-nroff-newline 166,5430
(defun forward-text-line 106,3932
(defconst nroff-brace-table130,4709
(defun nroff-comment-indent 71,2886
(defun nroff-mode 37,1430
(defvar nroff-mode-abbrev-table 22,834
(defvar nroff-mode-map 25,915

../lisp/options.el,299
(defun Edit-options-mode 69,2310
(defvar Edit-options-mode-map54,1814
(defun Edit-options-modify 102,3491
(defun Edit-options-nil 99,3404
(defun Edit-options-set 89,3067
(defun Edit-options-t 96,3321
(defun Edit-options-toggle 93,3210
(defun edit-options 45,1519
(defun list-options 21,813

../lisp/outline.el,997
(defun hide-body 177,7121
(defun hide-entry 164,6722
(defun hide-leaves 205,7892
(defun hide-region-body 182,7244
(defun hide-subtree 200,7764
(defun outline-back-to-heading 121,5183
(defun outline-backward-same-level 308,10925
(defun outline-end-of-subtree 223,8388
(defun outline-flag-region 153,6320
(defun outline-flag-subtree 216,8212
(defun outline-forward-same-level 280,10057
(defun outline-get-last-sibling 324,11414
(defun outline-get-next-sibling 296,10546
(defun outline-level 98,4374
(defun outline-mode 42,1801
(defvar outline-mode-map 28,1154
(defun outline-next-heading 114,4951
(defun outline-next-preface 106,4674
(defun outline-next-visible-heading 135,5640
(defun outline-on-heading-p 128,5455
(defun outline-previous-visible-heading 146,6037
(defvar outline-regexp 22,892
(defun outline-up-heading 265,9597
(defun show-all 195,7635
(defun show-branches 236,8717
(defun show-children 241,8846
(defun show-entry 171,6936
(defun show-subtree 211,8085

../lisp/page.el,175
(defun backward-page 38,1412
(defun count-lines-page 91,3201
(defun forward-page 21,813
(defun mark-page 45,1686
(defun narrow-to-page 59,2127
(defun what-page 109,3762

../lisp/paragraphs.el,551
(defun backward-kill-paragraph 109,4078
(defun backward-kill-sentence 180,6483
(defun backward-paragraph 86,3268
(defun backward-sentence 165,6028
(defun end-of-paragraph-text 134,4923
(defun forward-paragraph 25,1005
(defun forward-sentence 144,5184
(defun kill-paragraph 104,3933
(defun kill-sentence 172,6255
(defun mark-end-of-sentence 188,6727
(defun mark-paragraph 97,3762
(defvar paragraph-ignore-fill-prefix 21,813
(defun start-of-paragraph-text 119,4399
(defun transpose-paragraphs 114,4240
(defun transpose-sentences 196,6929

../lisp/paths.el,448
(defvar Info-directory 27,1073
(defconst abbrev-file-name 119,5173
(defconst manual-formatted-dir-prefix84,3452
(defconst manual-formatted-dirlist90,3717
(defconst manual-program 76,3033
(defvar mh-lib47,1915
(defvar mh-progs39,1557
(defvar news-inews-program31,1243
(defvar news-path 29,1143
(defconst rmail-file-name 54,2210
(defconst rmail-spool-directory57,2286
(defconst sendmail-program65,2559
(defconst term-file-prefix 71,2748

../lisp/picture.el,1643
(defun edit-picture 469,17814
(defvar edit-picture-hook 465,17662
(defun move-to-column-force 24,898
(defun picture-backward-clear-column 187,6379
(defun picture-backward-column 57,2001
(defun picture-clean 569,22641
(defun picture-clear-column 176,6030
(defun picture-clear-line 192,6540
(defun picture-clear-rectangle 346,12105
(defun picture-clear-rectangle-to-register 355,12550
(defun picture-duplicate-line 227,7666
(defun picture-end-of-line 42,1418
(defun picture-forward-column 51,1799
(defconst picture-horizontal-step 74,2545
(defun picture-insert-rectangle 407,14795
(defconst picture-killed-rectangle 342,11925
(defun picture-mode-exit 553,21944
(defconst picture-mode-map 425,15372
(defun picture-motion 142,4701
(defun picture-motion-reverse 151,5125
(defun picture-move 137,4502
(defun picture-move-down 63,2203
(defun picture-move-up 77,2653
(defun picture-movement-down 98,3244
(defun picture-movement-left 88,2968
(defun picture-movement-ne 108,3529
(defun picture-movement-nw 103,3383
(defun picture-movement-right 83,2827
(defun picture-movement-se 118,3822
(defun picture-movement-sw 113,3675
(defun picture-movement-up 93,3108
(defun picture-newline 207,7101
(defun picture-open-line 219,7462
(defun picture-self-insert 162,5520
(defun picture-set-motion 123,3969
(defun picture-set-tab-stops 266,9214
(defun picture-snarf-rectangle 363,12959
(defun picture-tab 324,11355
(defvar picture-tab-chars 241,7979
(defun picture-tab-search 297,10439
(defconst picture-vertical-step 71,2441
(defun picture-yank-rectangle 384,13638
(defun picture-yank-rectangle-from-register 395,14177

../lisp/prolog.el,766
(define-abbrev-table 'prolog-mode-abbrev-table 53,1951
(defun end-of-prolog-clause 164,5441
(defun inferior-prolog-mode 195,6284
(defvar inferior-prolog-mode-map 187,6051
(defun prolog-comment-indent 172,5721
(defvar prolog-compile-string 28,1129
(defun prolog-consult-region 246,8340
(defun prolog-consult-region-and-go 261,8912
(defvar prolog-consult-string 25,1018
(defvar prolog-eof-string 31,1220
(defun prolog-indent-level 117,4088
(defun prolog-indent-line 99,3535
(defvar prolog-indent-width 35,1368
(defun prolog-mode 84,3083
(defvar prolog-mode-abbrev-table 22,948
(defun prolog-mode-commands 75,2835
(defvar prolog-mode-map 23,986
(defvar prolog-mode-syntax-table 21,910
(defun prolog-mode-variables 55,2003
(defun run-prolog 239,8131

../lisp/rect.el,644
(defun clear-rectangle 183,6648
(defun clear-rectangle-line 189,6912
(defun delete-extract-rectangle 113,4132
(defun delete-extract-rectangle-line 72,2676
(defun delete-rectangle 105,3795
(defun delete-rectangle-line 69,2579
(defun extract-rectangle 121,4427
(defun extract-rectangle-line 77,2862
(defun insert-rectangle 143,5252
(defun kill-rectangle 131,4769
(defvar killed-rectangle 128,4694
(defun open-rectangle 165,5950
(defun open-rectangle-line 172,6262
(defun operate-on-rectangle 21,816
(defun rectangle-coerce-tab 199,7226
(defun spaces-string 97,3585
(defconst spaces-strings94,3490
(defun yank-rectangle 138,5103

../lisp/register.el,371
(defun append-to-register 139,4827
(defun copy-rectangle-to-register 165,5909
(defun copy-to-register 129,4423
(defun get-register 26,1044
(defun insert-register 112,3788
(defun point-to-register 38,1435
(defun prepend-to-register 152,5366
(defvar register-alist 21,810
(defun register-to-point 44,1642
(defun set-register 30,1174
(defun view-register 83,2994

../lisp/replace.el,427
(defun flush-lines 44,1695
(defun how-many 58,2212
(defun keep-lines 22,861
(defvar list-matching-lines-default-context-lines 117,4167
(defun occur 123,4484
(defvar occur-buffer 78,2911
(defun occur-mode 82,2992
(defun occur-mode-goto-occurrence 96,3485
(defvar occur-mode-map 72,2742
(defvar occur-nlines 79,2937
(defvar occur-pos-list 80,2963
(defun perform-replace 215,7719
(defconst query-replace-help202,7143

../lisp/rfc822.el,364
(defun rfc822-addresses 263,8724
(defun rfc822-addresses-1 157,4602
(defun rfc822-bad-address 24,930
(defun rfc822-looking-at 80,2455
(defun rfc822-nuke-whitespace 47,1651
(defun rfc822-snarf-domain 124,3726
(defun rfc822-snarf-frob-list 129,3847
(defun rfc822-snarf-subdomain 112,3299
(defun rfc822-snarf-word 95,2821
(defun rfc822-snarf-words 107,3189

../lisp/rmail.el,2550
(defvar mmdf-delim1 55,2130
(defvar mmdf-delim2 57,2221
(defun rmail 94,3474
(defun rmail-beginning-of-message 939,34383
(defun rmail-clear-headers 706,26250
(defun rmail-continue 1227,43991
(defun rmail-convert-file 149,5569
(defun rmail-convert-to-babyl-format 551,21166
(defun rmail-count-new-messages 867,31728
(defvar rmail-current-message 68,2539
(defun rmail-delete-backward 1142,41034
(defun rmail-delete-forward 1134,40690
(defun rmail-delete-message 1116,40145
(defvar rmail-deleted-vector 71,2642
(defun rmail-display-labels 751,27782
(defun rmail-expunge 1148,41252
(defun rmail-expunge-and-save 351,13946
(defun rmail-forget-messages 848,31226
(defun rmail-forward 1334,47671
(defun rmail-get-new-mail 379,14648
(defun rmail-input 368,14390
(defun rmail-insert-inbox-text 458,17757
(defun rmail-insert-rmail-file-header 179,6637
(defvar rmail-last-file 84,2999
(defvar rmail-last-label 81,2872
(defun rmail-last-message 1027,37258
(defvar rmail-last-multi-labels 83,2962
(defvar rmail-last-rmail-file 85,3028
(defun rmail-mail 1220,43766
(defun rmail-make-in-reply-to-field 1295,46382
(defun rmail-maybe-set-message-counters 860,31538
(defun rmail-message-deleted-p 1110,39972
(defvar rmail-message-filter 60,2311
(defun rmail-message-labels-p 819,30205
(defvar rmail-message-vector 70,2608
(defun rmail-mode 233,9159
(defun rmail-mode-1 282,11483
(defvar rmail-mode-map 64,2460
(defun rmail-msgbeg 829,30496
(defun rmail-msgend 826,30415
(defun rmail-next-message 982,35692
(defun rmail-next-undeleted-message 997,36180
(defun rmail-nuke-pinhead-header 643,24311
(defun rmail-parse-file-inboxes 336,13519
(defun rmail-previous-message 990,35963
(defun rmail-previous-undeleted-message 1020,37022
(defun rmail-quit 357,14064
(defun rmail-reformat-message 682,25450
(defun rmail-reply 1232,44125
(defun rmail-revert 321,12969
(defun rmail-search 1046,37784
(defvar rmail-search-last-regexp 1045,37746
(defun rmail-set-attribute 795,29351
(defun rmail-set-message-counters 894,32805
(defun rmail-set-message-counters-counter 925,33908
(defun rmail-set-message-deleted-p 1113,40048
(defun rmail-show-message 944,34537
(defvar rmail-summary-buffer 75,2725
(defvar rmail-summary-vector 76,2759
(defun rmail-toggle-header 720,26682
(defvar rmail-total-messages 69,2574
(defun rmail-undelete-previous-message 1121,40270
(defvar rmail-unix-mail-delimiter89,3198
(defun rmail-variables 296,11962
(defun rmail-what-message 1033,37417
(defun rmail-widen-to-current-msgbeg 832,30572

../lisp/rmailedit.el,172
(defun rmail-abort-edit 99,3639
(defun rmail-cease-edit 64,2492
(defun rmail-edit-current-message 49,1842
(defvar rmail-edit-map 23,844
(defun rmail-edit-mode 33,1182

../lisp/rmailkwd.el,661
(defun rmail-add-label 40,1472
(defun rmail-attribute-p 153,5483
(defconst rmail-attributes29,1126
(defconst rmail-deleted-label 34,1299
(defun rmail-force-make-label 166,5906
(defun rmail-install-keyword 236,8393
(defun rmail-keyword-p 157,5607
(defvar rmail-keywords 38,1442
(defun rmail-keywords 215,7702
(defun rmail-kill-label 46,1708
(defvar rmail-label-obarray 25,1003
(defun rmail-make-label 161,5729
(defun rmail-next-labeled-message 180,6410
(defun rmail-parse-file-keywords 220,7894
(defun rmail-previous-labeled-message 174,6123
(defun rmail-quote-label-name 169,5986
(defun rmail-read-label 52,1955
(defun rmail-set-label 68,2381

../lisp/rmailmsc.el,36
(defun set-rmail-inbox-list 20,778

../lisp/rmailout.el,114
(defvar rmail-delete-after-output 22,895
(defun rmail-output 86,3275
(defun rmail-output-to-rmail-file 25,1011

../lisp/rmailsum.el,862
(defun rmail-make-basic-summary-line 184,6397
(defun rmail-make-summary-line 109,4123
(defun rmail-make-summary-line-1 125,4666
(defun rmail-message-recipients-p 52,2017
(defun rmail-new-summary 62,2476
(defun rmail-summary 23,831
(defun rmail-summary-by-labels 28,966
(defun rmail-summary-by-recipients 40,1489
(defun rmail-summary-delete-forward 279,9455
(defun rmail-summary-exit 423,14330
(defun rmail-summary-goto-msg 341,11599
(defun rmail-summary-mode 310,10373
(defvar rmail-summary-mode-map 377,12689
(defun rmail-summary-next-all 254,8669
(defun rmail-summary-next-msg 264,8949
(defun rmail-summary-previous-all 259,8805
(defun rmail-summary-previous-msg 275,9328
(defun rmail-summary-quit 417,14204
(defun rmail-summary-scroll-msg-down 406,13902
(defun rmail-summary-scroll-msg-up 395,13605
(defun rmail-summary-undelete 293,9829

../lisp/rnews.el,2910
(defun caesar-region 908,33060
(defmacro news-/ 151,6096
(defun news-add-news-group 842,30768
(defvar news-buffer 126,5087
(defmacro news-caadr 135,5457
(defmacro news-cadar 134,5393
(defmacro news-caddr 133,5329
(defmacro news-cadr 131,5227
(defun news-caesar-buffer-body 946,34574
(defmacro news-cdadr 136,5521
(defmacro news-cdar 132,5278
(defvar news-certification-file 82,3239
(defun news-convert-format 618,22785
(defvar news-current-certifiable 100,4081
(defvar news-current-certifications 97,3936
(defvar news-current-group-begin 95,3861
(defvar news-current-group-end 96,3899
(defvar news-current-message-number 120,4829
(defvar news-current-news-group 94,3824
(defun news-delete-headers 650,23736
(defun news-exit 660,24026
(defun news-find-first-and-last 146,5915
(defun news-find-first-or-last 159,6300
(defun news-force-update 529,19910
(defun news-get-certifications 213,8232
(defun news-get-motion-lists 594,22122
(defun news-get-new-news 398,15548
(defun news-get-pruned-list-of-files 740,26972
(defun news-goto-message 505,19113
(defun news-goto-news-group 487,18472
(defvar news-group-article-assoc 118,4788
(defun news-group-certification 201,7820
(defvar news-ignored-headers85,3362
(defun news-list-news-groups 444,17132
(defvar news-list-of-files 109,4414
(defvar news-list-of-files-possibly-bogus 112,4540
(defun news-make-link-to-message 892,32520
(defvar news-max-plausible-gap 141,5689
(defvar news-message-filter 103,4185
(defun news-mode 302,11838
(defvar news-mode-map 89,3661
(defun news-move-to-group 564,21166
(defun news-next-group 576,21604
(defun news-next-message 535,20144
(defvar news-no-jumps-p 125,5060
(defun news-parse-range 381,15057
(defvar news-point-pdl 124,5000
(defun news-previous-group 585,21854
(defun news-previous-message 556,20901
(defmacro news-push 128,5153
(defun news-read-files-into-buffer 802,29206
(defvar news-read-first-time-p 90,3688
(defun news-read-in-file 607,22539
(defun news-save-item-in-file 735,26774
(defun news-select-message 512,19338
(defun news-select-news-group 495,18771
(defun news-set-current-certifiable 205,7918
(defun news-set-current-group-certification 245,9268
(defun news-set-message-counters 264,10060
(defun news-set-minor-modes 251,9549
(defun news-set-mode-line 467,17859
(defun news-show-all-headers 638,23372
(defvar news-startup-file 81,3175
(defvar news-total-current-group 121,4895
(defun news-unsubscribe-current-group 718,26137
(defun news-unsubscribe-group 712,25920
(defvar news-unsubscribe-groups 123,4964
(defun news-unsubscribe-internal 724,26383
(defmacro news-update-message-read 375,14911
(defun news-update-newsrc-file 674,24567
(defvar news-user-group-list 92,3789
(defmacro news-wins 138,5586
(defun news-write-certifications 231,8759
(defvar rmail-last-file 75,2995
(defun rnews 179,7106
(defun string-subst-char 366,14649

../lisp/rnewspost.el,616
(defun news-inews 207,8624
(defun news-mail-other-window 380,14803
(defun news-mail-reply 244,9984
(defun news-post-news 351,13634
(defun news-reply 272,10948
(defun news-reply-distribution 148,6437
(defun news-reply-followup-to 132,5747
(defun news-reply-keywords 159,6868
(defun news-reply-mode 69,3257
(defvar news-reply-mode-map 50,2172
(defun news-reply-newsgroups 122,5418
(defun news-reply-signature 175,7430
(defun news-reply-summary 167,7155
(defvar news-reply-yank-from102,4773
(defvar news-reply-yank-message-id106,4860
(defun news-reply-yank-original 110,4959
(defun news-setup 180,7596

../lisp/saveconf.el,323
(defvar auto-save-and-recover-context 21,820
(defun kill-emacs 55,2239
(defun original-working-directory 222,7922
(defun recover-context 168,6221
(defvar save-buffer-context 26,1082
(defun save-context 71,2948
(defvar save-context-predicate31,1271
(defconst save-context-version 15,536
(defun window-list 227,8051

../lisp/scheme.el,892
(define-abbrev-table 'scheme-mode-abbrev-table 85,2816
(defun calculate-scheme-indent 203,6931
(defun next-sexp-as-string 364,13322
(defvar scheme-body-indent 310,11338
(defun scheme-comment-indent 153,5282
(defun scheme-indent-defform 351,12973
(defvar scheme-indent-hook 166,5669
(defun scheme-indent-hook 289,10502
(defun scheme-indent-line 168,5721
(defvar scheme-indent-offset 165,5632
(defun scheme-indent-sexp 449,16883
(defun scheme-indent-specform 312,11373
(defun scheme-let-indent 378,13788
(defvar scheme-mit-dialect 149,5138
(defun scheme-mode 121,4136
(defvar scheme-mode-abbrev-table 84,2775
(defun scheme-mode-commands 110,3786
(defun scheme-mode-initialize 144,5008
(defvar scheme-mode-line-process 108,3748
(defvar scheme-mode-map 115,3971
(defvar scheme-mode-syntax-table 30,1174
(defun scheme-mode-variables 87,2868
(defun would-be-symbol 361,13238

../lisp/scribe.el,870
(defun scribe 141,5197
(defun scribe-begin 200,7193
(defun scribe-bold-word 190,6873
(defun scribe-bracket-region-be 235,8077
(defun scribe-chapter 214,7537
(defconst scribe-close-parentheses 40,1459
(defvar scribe-electric-parenthesis 33,1221
(defvar scribe-electric-quote 30,1108
(defun scribe-end 207,7367
(defun scribe-envelop-word 146,5302
(defvar scribe-fancy-paragraphs 27,992
(defun scribe-insert-environment 243,8284
(defun scribe-insert-quote 250,8461
(defun scribe-italicize-word 195,7030
(defun scribe-mode 89,3409
(defvar scribe-mode-abbrev-table 24,909
(defvar scribe-mode-map 63,2196
(defvar scribe-mode-syntax-table 21,826
(defconst scribe-open-parentheses 37,1372
(defun scribe-parenthesis 286,9791
(defun scribe-section 221,7715
(defun scribe-subsection 228,7893
(defun scribe-tab 134,5048
(defun scribe-underline-word 185,6710

../lisp/sendmail.el,682
(defun mail 420,14376
(defvar mail-abbrevs-loaded 53,2259
(defvar mail-aliases 46,2043
(defun mail-bcc 338,11856
(defun mail-cc 330,11632
(defvar mail-default-reply-to 50,2152
(defun mail-do-fcc 259,9369
(defun mail-fill-yanked-message 373,12846
(defun mail-mode 104,3816
(defvar mail-mode-map 54,2292
(defun mail-other-window 462,15997
(defun mail-position-on-field 346,12085
(defun mail-send 163,6235
(defun mail-send-and-exit 149,5763
(defun mail-setup 65,2604
(defun mail-signature 366,12643
(defun mail-subject 324,11496
(defun mail-to 318,11375
(defun mail-yank-clear-headers 403,13846
(defun mail-yank-original 384,13210
(defun sendmail-send-it 176,6650

../lisp/server.el,499
(defun mh-draft-p 220,8713
(defvar server-buffer-clients 74,3122
(defun server-buffer-done 191,7734
(defvar server-clients 68,2865
(defun server-done 226,8976
(defun server-edit 242,9521
(defun server-log 84,3539
(defvar server-previous-string 66,2829
(defvar server-process 63,2768
(defun server-process-filter 132,5387
(defvar server-program 60,2691
(defun server-sentinel 92,3712
(defun server-start 98,3934
(defun server-switch-buffer 257,10186
(defun server-visit-files 163,6653

../lisp/shell.el,1161
(defun copy-last-shell-input 308,11114
(defvar explicit-csh-args102,3807
(defvar explicit-shell-file-name 42,1442
(defvar inferior-lisp-load-command 350,12337
(defun inferior-lisp-mode 363,12967
(defvar inferior-lisp-mode-map 340,11990
(defvar inferior-lisp-program 347,12233
(defvar inferior-lisp-prompt 359,12826
(defun interrupt-shell-subjob 314,11315
(defun kill-output-from-shell 292,10640
(defun kill-shell-input 334,11788
(defun kill-shell-subjob 319,11437
(defvar last-input-end 25,940
(defvar last-input-start 23,842
(defun lisp-send-defun 411,14818
(defun lisp-send-defun-and-go 446,16090
(defun make-shell 146,5592
(defun quit-shell-subjob 324,11559
(defun run-lisp 405,14625
(defun shell 111,4120
(defvar shell-cd-regexp 39,1354
(defvar shell-directory-stack 30,1064
(defun shell-mode 52,1825
(defvar shell-mode-map 28,1035
(defvar shell-popd-regexp 33,1163
(defvar shell-pushd-regexp 36,1257
(defun shell-send-eof 287,10513
(defun shell-send-input 192,7202
(defun shell-set-directory 238,9021
(defvar shell-set-directory-error-hook 187,6993
(defun show-output-from-shell 301,10891
(defun stop-shell-subjob 329,11681

../lisp/simple.el,5523
(defun append-next-kill 595,21107
(defun append-to-buffer 670,23631
(defun auto-fill-mode 1210,42385
(defun back-to-indentation 123,3856
(defun backward-delete-char-untabify 164,5340
(defun backward-kill-word 1116,39250
(defun backward-to-indentation 506,17939
(defun backward-word 1095,38644
(defun beginning-of-buffer 192,6410
(defun blink-matching-open 1269,44528
(defconst blink-matching-paren 1262,44271
(defconst blink-matching-paren-distance 1265,44380
(defconst comment-column 993,34925
(defconst comment-end 1006,35477
(defconst comment-indent-hook1010,35617
(defconst comment-multi-line 1153,40493
(defconst comment-start 998,35122
(defconst comment-start-skip 1001,35235
(defun copy-region-as-kill 584,20658
(defun copy-to-buffer 697,24669
(defun count-lines 247,8176
(defun count-lines-region 232,7776
(define-key ctl-x-map 1359,47205
(define-key ctl-x-map 1360,47250
(define-key ctl-x-map 1370,47646
(define-key ctl-x-map 1374,47820
(define-key ctl-x-map 1376,47912
(define-key ctl-x-map 1377,47964
(define-key ctl-x-map 1396,48598
(define-key ctl-x-map 1399,48693
(define-key ctl-x-map 1403,48837
(define-key ctl-x-map 1408,49020
(define-key ctl-x-map 1413,49216
(define-key ctl-x-map 1414,49263
(define-key ctl-x-map 1415,49307
(define-key ctl-x-map 1425,49644
(defun delete-blank-lines 91,2885
(defun delete-horizontal-space 76,2405
(defun delete-indentation 53,1733
(defun digit-argument 488,17312
(defun do-auto-fill 1127,39652
(defun edit-and-eval-command 300,10190
(defun end-of-buffer 208,7005
(define-key esc-map 1365,47418
(define-key esc-map 1367,47504
(define-key esc-map 1368,47549
(define-key esc-map 1369,47600
(define-key esc-map 1371,47696
(define-key esc-map 1372,47737
(define-key esc-map 1373,47775
(define-key esc-map 1375,47869
(define-key esc-map 1379,48045
(define-key esc-map 1380,48085
(define-key esc-map 1387,48302
(define-key esc-map 1391,48433
(define-key esc-map 1392,48479
(define-key esc-map 1394,48562
(define-key esc-map 1406,48933
(define-key esc-map 1407,48975
(define-key esc-map 1410,49068
(define-key esc-map 1411,49113
(define-key esc-map 1412,49163
(define-key esc-map 1417,49358
(define-key esc-map 1418,49394
(define-key esc-map 1419,49433
(define-key esc-map 1420,49473
(define-key esc-map 1421,49509
(define-key esc-map 1423,49558
(define-key esc-map 1424,49604
(define-key esc-map 1426,49690
(defun eval-expression 293,9934
(defun exchange-point-and-mark 789,28141
(defconst fill-prefix 1122,39435
(defun fixup-whitespace 64,2064
(defun forward-to-indentation 500,17762
(defun fundamental-mode 283,9570
(define-key global-map 1329,46262
(define-key global-map 1362,47285
(define-key global-map 1363,47336
(define-key global-map 1364,47376
(define-key global-map 1366,47458
(define-key global-map 1378,48008
(define-key global-map 1382,48136
(define-key global-map 1389,48347
(define-key global-map 1390,48389
(define-key global-map 1393,48525
(define-key global-map 1398,48644
(define-key global-map 1401,48749
(define-key global-map 1402,48791
(define-key global-map 1405,48885
(define-key global-map 1431,49918
(defvar goal-column 848,30288
(defun goto-line 355,12447
(defun indent-for-comment 1015,35778
(defun indent-new-comment-line 1157,40652
(defun insert-buffer 654,23139
(defun just-one-space 82,2605
(defun keyboard-quit 1324,46168
(defun kill-append 542,18970
(defun kill-backward-chars 159,5192
(defun kill-comment 1077,38054
(defun kill-forward-chars 154,5045
(defun kill-line 512,18122
(defun kill-region 548,19125
(defvar kill-ring 533,18706
(defconst kill-ring-max 536,18765
(defvar kill-ring-yank-pointer 539,18867
(defun kill-word 1110,39039
(defun mark 712,25226
(defvar mark-ring 737,26243
(defconst mark-ring-max 742,26384
(defun mark-whole-buffer 225,7602
(defun mark-word 1102,38880
(defconst mode-specific-map 1429,49800
(defun negative-argument 494,17540
(defun newline-and-indent 129,4024
(defun next-complex-command 335,11697
(defun next-line 799,28406
(defun next-line-internal 855,30574
(defun open-line 21,832
(defun overwrite-mode 1251,43833
(defun pop-mark 777,27723
(defun prefix-arg-internal 455,16246
(defun prepend-to-buffer 683,24140
(defun previous-complex-command 350,12283
(defun previous-line 827,29412
(defun push-mark 760,27007
(defun quoted-insert 43,1416
(defun reindent-then-newline-and-indent 140,4456
(defun repeat-complex-command 310,10693
(defvar repeat-complex-command-map 307,10483
(define-key repeat-complex-command-map 308,10553
(define-key repeat-complex-command-map 309,10625
(defun rotate-yank-pointer 602,21319
(defun set-comment-column 1054,37210
(defun set-fill-column 1229,42964
(defun set-goal-column 880,31274
(defun set-mark 718,25464
(defun set-mark-command 745,26489
(defun set-selective-display 1236,43239
(defun set-variable 1331,46310
(defun shell-command 384,13337
(defun shell-command-on-region 397,13850
(defun split-line 33,1168
(defvar temporary-goal-column 851,30405
(defconst track-eol 844,30113
(defun transpose-chars 897,31926
(defun transpose-lines 922,32966
(defun transpose-sexps 915,32744
(defun transpose-subr 940,33514
(defun transpose-subr-1 980,34488
(defun transpose-words 906,32362
(defun turn-on-auto-fill 1225,42869
(defun undo 368,12837
(defun universal-argument 437,15518
(defun what-cursor-position 255,8422
(defun what-line 237,7935
(defun yank 637,22574
(defun yank-pop 613,21650
(defun zap-to-char 183,6001

../lisp/simula.el,1705
(define-abbrev-table 'simula-mode-abbrev-table 50,1886
(defvar Read-Simula-Keywords 47,1814
(defun Simula-Default-Form-Handler 522,17970
(defun Simula-Default-Handler 511,17701
(defun Simula-For-Handler 632,21601
(defun Simula-Form-Handler 504,17521
(defun Simula-If-Handler 626,21437
(defun Simula-Inspect-Handler 629,21514
(defvar Simula-Keyword-Abbrev-File 52,1938
(defun Simula-While-Handler 623,21354
(defun current-simula-indentation 566,19412
(defun get-indent-amount 551,19014
(defun ignore-simula-directives 199,7257
(defun maybe-skip-simula-comment 224,8287
(defun save-simula-BB-BE(288,10373
(defun save-simula-string 495,17247
(defvar simula-BB 30,1287
(defvar simula-BE 29,1259
(defvar simula-CB 28,1214
(defvar simula-CE 27,1160
(defvar simula-FB 31,1317
(defun simula-Nice-indent-mode 637,21700
(defun simula-Simed-indent-mode 735,25496
(defun simula-abbrev-expand-and-lf 605,20759
(defun simula-back-level(316,11150
(defun simula-collapse-stack 536,18440
(defvar simula-eof 33,1402
(defvar simula-eol 32,1377
(defvar simula-extended-form 35,1467
(defun simula-find-indent 348,12114
(defun simula-indent 619,21243
(defun simula-indent-calc 573,19660
(defun simula-indent-line 585,19973
(defvar simula-indent-mode 44,1726
(defun simula-inside-simple-string 179,6719
(defvar simula-label 26,1120
(defun simula-mode 100,3697
(defvar simula-mode-abbrev-table 41,1647
(defvar simula-mode-ignore-directives 55,2045
(defvar simula-mode-map 89,3378
(defvar simula-mode-syntax-table 38,1567
(defun simula-null-indent 154,5841
(defun simula-parsed-over 461,16117
(defun simula-pop 173,6551
(defun simula-push 170,6461
(defun simula-stack-trick 474,16525

../lisp/sort.el,425
(defun sort-build-lists 99,3882
(defun sort-columns 316,11714
(defun sort-fields 223,8234
(defun sort-fields-1 236,8767
(defvar sort-fields-syntax-table 192,7190
(defun sort-lines 158,5909
(defun sort-numeric-fields 204,7554
(defun sort-pages 180,6752
(defun sort-paragraphs 168,6295
(defun sort-regexp-fields 261,9476
(defun sort-reorder-buffer 136,5245
(defun sort-skip-fields 250,9183
(defun sort-subr 24,908

../lisp/spell.el,174
(defun spell-buffer 29,1096
(defvar spell-command 21,822
(defvar spell-filter 24,893
(defun spell-region 52,1917
(defun spell-string 113,3903
(defun spell-word 38,1490

../lisp/spook.el,243
(defun pick-random 89,3000
(defun shuffle-vector 97,3273
(defun snarf-spooks 71,2385
(defun spook 52,1846
(defvar spook-phrase-default-count 42,1601
(defvar spook-phrases-file 39,1496
(defvar spook-vector 45,1682
(defun spook1 64,2223

../lisp/startup.el,363
(defun command-line 94,3485
(defun command-line-1 151,5392
(defvar command-line-processed 51,1881
(defconst command-switch-alist 61,2249
(defconst inhibit-default-init 58,2159
(defconst inhibit-startup-message 53,1959
(defconst initial-major-mode 74,2747
(defun normal-top-level 77,2872
(defvar term-setup-hook 67,2502
(defvar window-setup-hook 72,2715

../lisp/studly.el,90
(defun studlify-buffer 45,1192
(defun studlify-region 3,32
(defun studlify-word 36,907

../lisp/subr.el,419
(defvar ctl-x-map 168,5566
(defun error 54,2088
(defvar esc-map 172,5703
(defvar global-map 163,5390
(defun momentary-string-display 197,6684
(defvar mouse-map 176,5845
(defun one-window-p 21,826
(defun read-quoted-char 31,1211
(defun run-hooks 179,5926
(defun substitute-key-definition 114,3913
(defun suppress-keymap 67,2424
(defun undefined 59,2251
(defun undo-more 235,8119
(defun undo-start 228,7854

../lisp/sun-cursors.el,859
(defmacro defcursor 30,1059
(defun sc::char-at-bit 181,5878
(defvar sc::cursors 28,1009
(defun sc::display-icon 167,5493
(defun sc::edit-icon-help 136,4570
(defmenu sc::edit-icon-help-menu129,4415
(defun sc::goto-hotspot 163,5384
(defun sc::hotspot 158,5279
(defun sc::make-cursor 124,4259
(defmenu sc::menu104,3611
(defun sc::menu-choose-cursor 143,4791
(defun sc::menu-function 101,3524
(defun sc::menu-item-for-cursor 154,5154
(defun sc::pack-buffer-to-cursor 139,4679
(defun sc::pack-buffer-to-icon 184,5953
(defun sc::pack-one-char 201,6528
(defun sc::pack-one-line 193,6228
(defun sc::pic-ins-at-mouse 93,3255
(defun sc::quit-edit 119,4137
(defcursor sc:box 53,1781
(defun sc:edit-cursor 77,2605
(defcursor sc:fat-left-arrow 49,1635
(defcursor sc:hourglass 57,1899
(defcursor sc:right-arrow 43,1467
(defun sc:set-cursor 63,2089

../lisp/sun-fns.el,2722
(defvar *modeline-hit* 462,15450
(defvar *mouse-drag-window* 111,3737
(defvar *mouse-drag-x* 112,3770
(defvar *mouse-drag-y* 113,3797
(defun Buffer-at-mouse 520,17703
(defvar buffer-menu-mode-hook 602,20432
(defvar buffer-modeline-menu 565,18831
(defun buffer-modeline-menu-cmd 558,18571
(defconst cursor-pause-milliseconds 60,2309
(defmenu delete-window-menu370,12622
(defmenu emacs-menu389,13190
(defun emacs-menu-eval 401,13566
(defmenu emacs-quit-menu385,13096
(defun enable-mouse-in-buffer-list 583,19548
(defmenu expand-menu366,12485
(defun fill-some-paragraphs 624,21282
(defun indicate-region 63,2426
(defun mini-move-point 451,15054
(defun mini-set-mark-and-stuff 454,15152
(defun minibuf-prompt-length 434,14594
(defmenu minibuffer-menu 421,14152
(defun minibuffer-menu-eval 428,14370
(defun modeline-hit 464,15513
(defun modeline-menu-command 497,16714
(defun modeline-menu-string 508,17183
(defun mouse-bottom-to-line 350,11956
(defun mouse-buffer-bury 525,17819
(defun mouse-buffer-delete 537,18096
(defun mouse-buffer-execute 551,18410
(defun mouse-buffer-mark 544,18255
(defun mouse-buffer-select 531,17945
(defun mouse-call-kbd-macro 149,4928
(defun mouse-copy-thing 222,7417
(defun mouse-delete-other-windows 289,9861
(defun mouse-delete-window 293,9994
(defun mouse-drag-modeline 467,15602
(defun mouse-drag-move-point 115,3825
(defun mouse-drag-set-mark-stuff 122,4025
(defun mouse-exch-pt-and-mark 143,4798
(defun mouse-expand-horizontally 405,13695
(defun mouse-expand-vertically 411,13861
(defun mouse-fill-paragraph 615,21031
(defun mouse-fill-paragraphs 649,22218
(defmenu mouse-help-menu374,12747
(defun mouse-kill-thing 189,6343
(defun mouse-kill-thing-there 195,6522
(defun mouse-line-to-bottom 346,11791
(defun mouse-line-to-middle 354,12119
(defun mouse-line-to-top 338,11522
(defun mouse-mark-thing 155,5080
(defun mouse-middle-to-line 358,12287
(defun mouse-move-point 77,2785
(defun mouse-move-thing 230,7721
(defun mouse-save-thing 204,6823
(defun mouse-save-thing-there 212,7115
(defun mouse-save/delete/yank 254,8544
(defun mouse-scroll-down 314,10692
(defun mouse-scroll-proportional 318,10809
(defun mouse-scroll-up 310,10557
(defun mouse-select-or-drag-move-point 134,4536
(defun mouse-select-previous-buffer 414,13948
(defun mouse-select-window 285,9753
(defun mouse-set-mark 86,3059
(defun mouse-set-mark-and-select 96,3318
(defun mouse-set-mark-and-stuff 102,3478
(defun mouse-split-horizontally 277,9436
(defun mouse-split-vertically 281,9596
(defun mouse-top-to-line 342,11658
(defun mouse-undo 297,10097
(defun mouse-yank-at-mouse 249,8374
(defun mouse-yank-at-point 238,8014
(defun nth-menu-elt 489,16537

../lisp/sun-keys.el,235
(defun sun-function-keys-bind-key 46,1601
(defvar sun-function-keys-command-list 39,1385
(defun sun-function-keys-describe-bindings 53,1839
(defun sun-function-keys-dispatch 31,1080
(defun sun-function-keys-write-bindings 61,2155

../lisp/sun-mouse.el,2881
(defun copy-mousemap 58,1877
(defvar current-global-mousemap 782,28049
(defun define-mouse 62,1966
(defmacro defmenu 591,20974
(defun describe-mouse-bindings 542,19146
(defun describe-mouse-briefly 556,19636
(defun display-host 663,24156
(defmacro eval-in-buffer 163,5662
(defmacro eval-in-window 177,6094
(defmacro eval-in-windows 195,6715
(defvar extra-click-wait 41,1335
(defun global-set-mouse 79,2820
(defun local-set-mouse 87,3229
(defun logtest 116,4227
(defun make-mousemap 54,1800
(defun menu-create 585,20809
(defun minibuffer-window-p 226,7766
(defun mouse-code-function-pairs-of-region 478,17053
(defun mouse-code-to-mouse-list 425,15268
(defun mouse-event-code 408,14707
(defun mouse-help 278,9844
(defun mouse-help-menu 564,19989
(defun mouse-help-region 570,20277
(defun mouse-hit-read 297,10486
(defun mouse-list-to-mouse-code 418,15074
(defun mouse-lookup 443,15778
(defun mouse-mask-lookup 452,16116
(defvar mouse-prefix1 318,11373
(defvar mouse-prefix2 321,11481
(defun mouse-region-to-code 414,14942
(defun mouse-second-hit 325,11591
(defun mouse-union 462,16464
(defun mouse-union-first-prefered 473,16837
(defun mousemap-get 440,15705
(defun mousemap-set 433,15489
(defun move-to-loc 209,7250
(defun one-line-doc-string 493,17580
(defun owselectionfile 710,25920
(defvar owselectionfilex 708,25770
(defun print-mouse-bindings 518,18249
(defun print-mouse-format 504,17978
(defvar scrollbar-width 45,1482
(defconst sm::ButtonBits 126,4410
(defconst sm::DoubleBits 128,4527
(defconst sm::ShiftmaskBits 127,4456
(defconst sm::UpBits 129,4566
(defun sm::combined-hits 283,9931
(defun sm::event-bindings 522,18391
(defun sm::font-size 629,22874
(defmacro sm::hit-button 135,4723
(defmacro sm::hit-code 132,4632
(defmacro sm::hit-delta 151,5342
(defmacro sm::hit-double 141,4970
(defmacro sm::hit-shiftmask 138,4841
(defmacro sm::hit-up 144,5104
(defmacro sm::hit-up-p 153,5392
(defmacro sm::hit-x 147,5197
(defmacro sm::hit-y 149,5265
(defconst sm::keyword-alist 402,14489
(defmacro sm::loc-w 159,5526
(defmacro sm::loc-x 160,5571
(defmacro sm::loc-y 161,5616
(defun sm::menu-kludge 640,23308
(defvar sm::menu-kludge-x 635,23131
(defvar sm::menu-kludge-y 637,23219
(defun sm::window-region 374,13533
(defun sm::window-xy 346,12631
(defun sun-get-frame-data 612,22020
(defun sun-menu-evaluate 597,21195
(defun sun-mouse-handler 234,7993
(defun sun-select-region 751,27050
(defun sun-yank-selection 742,26800
(defun sunview-yank-any-selection 697,25316
(defun sunview-yank-clipboard 675,24554
(defun sunview-yank-current-selection 686,24891
(defun sunview-yank-stuff 654,23841
(defun suspend-emacstool 765,27394
(defun use-global-mousemap 97,3693
(defun use-local-mousemap 101,3820
(defun window-line-end 394,14213
(defun xv-select-region 735,26591
(defun xv-yank-selection 724,26238

../lisp/sup-mouse.el,471
(defconst mouse-2center 42,1593
(defconst mouse-2left 41,1568
(defconst mouse-2right 43,1620
(defconst mouse-3center 46,1672
(defconst mouse-3left 45,1647
(defconst mouse-3right 47,1699
(defconst mouse-center 38,1516
(defconst mouse-left 37,1492
(defconst mouse-right 39,1542
(defun sup-get-tty-num 171,5201
(defvar sup-mouse-fast-select-window 34,1367
(defun sup-mouse-report 51,1741
(defun sup-move-point-to-x-y 185,5629
(defun sup-pos-to-window 192,5814

../lisp/tabify.el,47
(defun tabify 37,1320
(defun untabify 21,815

../lisp/tags.el,570
(defun file-of-tag 61,2283
(defun find-tag 132,4254
(defun find-tag-default 109,3697
(defun find-tag-other-window 190,6185
(defun find-tag-tag 122,4029
(defvar last-tag 27,994
(defun list-tags 267,9114
(defun next-file 209,6926
(defvar next-file-list 206,6853
(defvar tag-table-files 23,835
(defun tag-table-files 82,2929
(defun tags-apropos 288,9737
(defun tags-loop-continue 225,7515
(defvar tags-loop-form 221,7360
(defun tags-query-replace 252,8460
(defun tags-search 238,7961
(defun visit-tags-table 30,1053
(defun visit-tags-table-buffer 44,1586

../lisp/telnet.el,636
(defun delete-char-or-send-eof 115,4154
(defun read-password 167,6196
(defun send-process-next-char 43,1455
(defun telnet 152,5592
(defun telnet-c-z 39,1392
(defun telnet-check-software-type-initialize 66,2349
(defvar telnet-count 30,1136
(defun telnet-filter 96,3513
(defun telnet-initial-filter 79,2870
(defvar telnet-interrupt-string 29,1075
(defun telnet-interrupt-subjob 34,1227
(defun telnet-mode 175,6418
(defvar telnet-mode-map 27,995
(defvar telnet-new-line 26,965
(defvar telnet-prompt-pattern 28,1024
(defvar telnet-remote-echoes 32,1192
(defvar telnet-replace-c-g 31,1160
(defun telnet-send-input 122,4380

../lisp/terminal.el,2466
(defvar explicit-shell-file-name 899,29072
(defun te-backward-char 634,20503
(defun te-beep 653,20800
(defun te-beginning-of-line 630,20439
(defun te-clear-rest-of-line 564,18678
(defun te-clear-rest-of-screen 572,18872
(defun te-clear-screen 582,19139
(defun te-delete 645,20666
(defun te-delete-char 670,21162
(defun te-delete-lines 613,19967
(defun te-disable-more-processing 291,9689
(defun te-do-scrolling 296,9812
(defun te-do-wrapping 301,9915
(defun te-down-vertically-or-scroll 531,17834
(defun te-enable-more-processing 286,9570
(defun te-escape 136,4951
(defvar te-escape-command-alist 95,3517
(defun te-escape-extended-command 200,7027
(defun te-escape-extended-command-unread 216,7461
(defun te-escape-help 160,5667
(defun te-filter 706,21959
(defun te-flush-pending-output 373,12376
(defun te-forward-char 639,20585
(defun te-get-char 837,26751
(defun te-insert-lines 596,19483
(defun te-insert-spaces 658,20847
(defun te-losing-unix 686,21478
(defun te-more-break 425,14146
(defun te-more-break-advance-one-line 360,11941
(defun te-more-break-flush-pending-output 366,12128
(defun te-more-break-help 341,11204
(defun te-more-break-resume 334,11009
(defun te-more-break-unread 322,10582
(defun te-more-break-unwind 459,15396
(defun te-move-to-position 549,18298
(defun te-newline 502,16886
(defun te-output-tab 692,21569
(defun te-parse-program-and-args 1045,35551
(defun te-pass-through 391,13035
(defun te-pending-output-length 416,13921
(defun te-process-output 736,23090
(defun te-quote-arg-for-sh 1115,38219
(defun te-redisplay-if-necessary 858,27543
(defun te-sentinel 878,28298
(defun te-set-escape-char 221,7599
(defun te-set-more-count 479,16039
(defun te-set-output-log 241,8236
(defun te-set-redisplay-interval 307,10028
(defun te-set-window-start 403,13440
(defvar te-stty-string 895,28890
(defun te-stuff-string 233,7972
(defun te-tofu 263,8946
(defun te-toggle 269,9039
(defun te-toggle-more-processing 275,9181
(defun te-toggle-scrolling 281,9408
(defun te-update-pending-output-display 866,27885
(defun terminal-emulator 902,29189
(defvar terminal-escape-char 32,1146
(defvar terminal-escape-map 63,2432
(defvar terminal-map 64,2465
(defun terminal-mode 1067,36306
(defvar terminal-more-break-insertion60,2342
(defvar terminal-more-break-map 65,2491
(defvar terminal-more-processing 46,1767
(defvar terminal-redisplay-interval 53,2056
(defvar terminal-scrolling 40,1522

../lisp/tex-mode.el,1149
(defun TeX-buffer 421,15163
(defun TeX-close-LaTeX-block 318,11286
(defvar TeX-command 49,1923
(defun TeX-comment-indent 239,9021
(defun TeX-common-initialization 204,7729
(defvar TeX-default-mode 45,1770
(defun TeX-define-common-keys 68,2799
(defvar TeX-directory 37,1393
(defvar TeX-dvi-print-command 40,1515
(defvar TeX-end-of-header 56,2275
(defun TeX-insert-braces 310,11083
(defun TeX-insert-quote 246,9196
(defun TeX-kill-job 426,15314
(defvar TeX-mode-map 77,3130
(defvar TeX-mode-syntax-table 65,2722
(defun TeX-print 449,16033
(defun TeX-recenter-output-buffer 431,15426
(defun TeX-region 369,12982
(defvar TeX-shell-cd-command 58,2381
(defvar TeX-shell-map 92,3662
(defun TeX-show-print-queue 457,16326
(defvar TeX-show-queue-command 42,1619
(defvar TeX-start-of-header 54,2165
(defun TeX-start-shell 344,12118
(defun TeX-terminate-paragraph 296,10623
(defvar TeX-trailer 52,2063
(defun TeX-validate-paragraph 286,10408
(defvar TeX-zap-file 61,2554
(defun latex-mode 164,6246
(defun plain-tex-mode 124,4753
(defun set-buffer-directory 354,12416
(defun tex-mode 99,3904
(defun validate-TeX-buffer 266,9721

../lisp/tex-start.el,24
(defun startline 6,217

../lisp/texinfmt.el,3972
(defun batch-texinfo-format 1157,40445
(defvar texinfo-cindex)25,920
(defun texinfo-description 623,20765
(defun texinfo-discard-command 311,10083
(defun texinfo-discard-line 434,13740
(defun texinfo-discard-line-with-args 1127,39356
(defun texinfo-do-itemize 641,21366
(defun texinfo-end-defun 935,30746
(defun texinfo-end-enumerate 604,20170
(defun texinfo-end-example 771,25866
(defun texinfo-end-itemize 590,19742
(defun texinfo-end-table 631,21041
(defun texinfo-enumerate 598,19987
(defun texinfo-enumerate-item 665,22074
(defvar texinfo-findex)24,896
(defun texinfo-format-TeX 798,26635
(defun texinfo-format-\. 547,18263
(defun texinfo-format-\: 552,18381
(defun texinfo-format-begin 243,8094
(defun texinfo-format-begin-end 250,8292
(defun texinfo-format-buffer 47,1833
(defun texinfo-format-buffer-1 72,2736
(defun texinfo-format-bullet 748,24916
(defun texinfo-format-center 556,18492
(defun texinfo-format-chapter 495,15987
(defun texinfo-format-chapter-1 530,17741
(defun texinfo-format-cindex 834,27566
(defun texinfo-format-code 731,24319
(defun texinfo-format-copyright 803,26772
(defun texinfo-format-ctrl 793,26474
(defun texinfo-format-defcv-index 1068,36607
(defun texinfo-format-defcv-type 1065,36522
(defun texinfo-format-defn 743,24746
(defun texinfo-format-defop-index 1038,35168
(defun texinfo-format-defop-type 1035,35083
(defun texinfo-format-defun 895,29374
(defun texinfo-format-defun-1 903,29574
(defun texinfo-format-defunx 900,29509
(defun texinfo-format-dots 813,27034
(defun texinfo-format-emph 737,24534
(defun texinfo-format-end 247,8219
(defun texinfo-format-example 759,25383
(defun texinfo-format-exdent 779,26112
(defun texinfo-format-expand-region 297,9724
(defun texinfo-format-findex 838,27687
(defun texinfo-format-iftex 683,22685
(defun texinfo-format-ignore 703,23294
(defun texinfo-format-include 1073,36787
(defun texinfo-format-inforef 483,15408
(defun texinfo-format-kindex 850,28050
(defun texinfo-format-menu 429,13608
(defun texinfo-format-minus 808,26907
(defun texinfo-format-node 404,12918
(defun texinfo-format-noop 722,23968
(defun texinfo-format-parse-args 335,10762
(defun texinfo-format-parse-defun-args 359,11435
(defun texinfo-format-parse-line-args 314,10179
(defun texinfo-format-pindex 842,27808
(defun texinfo-format-printindex 869,28581
(defun texinfo-format-pxref 472,15092
(defun texinfo-format-refill 818,27166
(defun texinfo-format-region 123,4239
(defun texinfo-format-scan 206,6714
(defun texinfo-format-section 507,16589
(defun texinfo-format-sectionpad 536,17968
(defun texinfo-format-setfilename 388,12354
(defun texinfo-format-sp 823,27296
(defun texinfo-format-subsection 517,17106
(defun texinfo-format-subsubsection 527,17668
(defvar texinfo-format-syntax-table 21,830
(defun texinfo-format-tex 689,22862
(defun texinfo-format-tindex 846,27929
(defun texinfo-format-titlepage 695,23047
(defun texinfo-format-var 711,23526
(defun texinfo-format-vindex 830,27445
(defun texinfo-format-xref 459,14679
(defun texinfo-ftable 617,20580
(defun texinfo-index 853,28118
(defconst texinfo-indexvar-alist860,28316
(defun texinfo-item 655,21754
(defun texinfo-itemize 585,19566
(defun texinfo-itemize-item 659,21888
(defvar texinfo-kindex)28,992
(defvar texinfo-last-node)29,1016
(defvar texinfo-node-names)30,1043
(defun texinfo-parse-arg-discard 307,9982
(defun texinfo-parse-expanded-arg 274,9003
(defun texinfo-parse-line-arg 256,8494
(defvar texinfo-pindex)26,944
(defun texinfo-pop-stack 575,19212
(defun texinfo-print-index 881,28968
(defun texinfo-push-stack 570,19081
(defvar texinfo-region-buffer-name 120,4117
(defun texinfo-sort-region 1133,39624
(defun texinfo-sort-startkeyfun 1141,39909
(defun texinfo-subindex 1096,37732
(defun texinfo-table 612,20411
(defun texinfo-table-item 673,22342
(defvar texinfo-tindex)27,968
(defun texinfo-unsupported 1153,40308
(defvar texinfo-vindex)23,872

../lisp/texinfo.el,481
(defvar texinfo-heading-pattern157,5954
(defun texinfo-insert-@code 90,3245
(defun texinfo-insert-@dfn 84,3111
(defun texinfo-insert-@end 79,2996
(defun texinfo-insert-@item 73,2867
(defun texinfo-insert-@node 65,2605
(defun texinfo-insert-@samp 59,2468
(defun texinfo-insert-@var 53,2334
(defun texinfo-insert-braces 96,3382
(defun texinfo-mode 103,3581
(defvar texinfo-mode-map 36,1486
(defvar texinfo-mode-syntax-table 21,825
(defun texinfo-show-structure 162,6173

../lisp/text-mode.el,355
(define-abbrev-table 'text-mode-abbrev-table 26,981
(defun center-line 114,3875
(defun center-paragraph 88,3230
(defun center-region 99,3521
(defun indented-text-mode 71,2531
(defvar indented-text-mode-map 63,2228
(defun text-mode 50,1755
(defvar text-mode-abbrev-table 24,903
(defvar text-mode-map 35,1292
(defvar text-mode-syntax-table 21,824

../lisp/time.el,256
(defun display-time 32,1176
(defun display-time-filter 66,2487
(defvar display-time-interval 27,1052
(defvar display-time-mail-file 21,844
(defvar display-time-process 25,1017
(defun display-time-sentinel 58,2231
(defvar display-time-string 30,1142

../lisp/uncompress.el,77
(defun find-compressed-version 18,670
(defun uncompress-while-visiting 1,0

../lisp/underline.el,67
(defun underline-region 21,843
(defun ununderline-region 36,1315

../lisp/undigest.el,41
(defun undigestify-rmail-message 22,842

../lisp/unused.el,163
(defun backward-to-word 28,908
(defun forward-to-word 21,629
(defun mark-beginning-of-buffer 5,197
(defun mark-end-of-buffer 10,321
(defun upcase-char 15,433

../lisp/userlock.el,178
(defun ask-user-about-lock 28,1057
(defun ask-user-about-lock-help 63,2287
(defun ask-user-about-supersession-help 110,4036
(defun ask-user-about-supersession-threat 76,2806

../lisp/version.el,136
(defconst emacs-build-system 29,1095
(defconst emacs-build-time 26,1004
(defconst emacs-version 23,924
(defun emacs-version 31,1140

../lisp/vi.el,4775
(defun vi-abort-ins 709,29395
(defun vi-adjust-window 1267,50838
(defun vi-append-at-end-of-line 564,24202
(defun vi-ask-for-info 1328,53133
(defun vi-back-to-old-mode 79,3462
(defun vi-backward-blank-delimited-word 1172,47392
(defun vi-backward-find-char 875,35443
(defun vi-backward-kill-line 701,29198
(defun vi-backward-upto-char 887,35856
(defun vi-backward-windowfull 718,29651
(defun vi-beginning-of-buffer 618,25679
(defun vi-call-named-change-or-macro 1308,52331
(defun vi-change-case 1315,52707
(defun vi-change-rest-of-line 569,24368
(defun vi-char-argument 780,31704
(defvar vi-com-map 95,3971
(defun vi-debugging 69,3164
(defun vi-delete-op 1028,41653
(defun vi-digit-argument 816,33136
(defun vi-ding(449,19935
(defun vi-do-old-mode-C-c-command 1375,55045
(defun vi-effective-range 999,40370
(defun vi-end-of-blank-delimited-word 1184,47827
(defun vi-end-of-insert-state 510,22062
(defun vi-end-of-word 899,36275
(defun vi-ex-cmd 464,20239
(defun vi-execute-op 964,38697
(defun vi-expose-line-above 775,31549
(defun vi-expose-line-below 734,30163
(defun vi-find-char 847,34349
(defun vi-find-matching-paren 1165,47141
(defun vi-first-redo-insertion 526,22716
(defun vi-forward-blank-delimited-word 1178,47608
(defun vi-forward-find-char 881,35651
(defun vi-forward-upto-char 893,36067
(defun vi-forward-windowfull 739,30316
(defun vi-forward-word 1208,48555
(defun vi-get-mark 1149,46583
(defun vi-goto-char-mark 811,33006
(defun vi-goto-column 1277,51253
(defun vi-goto-command-state 542,23584
(defun vi-goto-insert-state 494,21249
(defun vi-goto-line 611,25494
(defun vi-goto-line-mark 806,32867
(defun vi-goto-mark 791,32224
(defun vi-home-window-line 1190,48060
(defun vi-indent-op 1132,45934
(defvar vi-ins-length 311,14205
(defvar vi-ins-overwrt-p 317,14365
(defvar vi-ins-point 308,14113
(defvar vi-ins-prefix-code 320,14455
(defvar vi-ins-repetition 314,14274
(defun vi-insert-after 598,25165
(defun vi-insert-before 606,25370
(defun vi-insert-before-first-nonwhite 574,24527
(defvar vi-insert-state 333,14960
(defun vi-isearch-backward 638,26303
(defun vi-isearch-forward 628,25949
(defun vi-join-lines 690,28813
(defun vi-kill-char 1231,49344
(defun vi-kill-line 553,23909
(defun vi-kill-region 559,24097
(defvar vi-last-change-command 326,14677
(defvar vi-last-find-char 323,14565
(defvar vi-last-shell-command 330,14841
(defun vi-last-window-line 1196,48234
(defun vi-locate-def 1412,56381
(defvar vi-mark-alist 299,13846
(defun vi-mark-lines 1356,54319
(defun vi-mark-region 1338,53524
(defun vi-middle-window-line 1202,48415
(defun vi-mode 387,16886
(defvar vi-mode-old-case-fold 352,15524
(defvar vi-mode-old-local-map 343,15263
(defvar vi-mode-old-major-mode 349,15438
(defvar vi-mode-old-mode-name 346,15352
(defun vi-mode-setup 361,15755
(defun vi-more-redo-insertion 535,23228
(defun vi-name-last-change-or-macro 1292,51553
(defun vi-narrow-op 1141,46284
(defun vi-next-line 747,30517
(defun vi-next-line-first-nonwhite 755,30830
(defun vi-open-above 579,24666
(defun vi-open-below 588,24907
(defun vi-operator 941,37607
(defun vi-prefix-char-value 934,37435
(defun vi-prefix-numeric-value 831,33656
(defun vi-previous-line-first-nonwhite 761,31078
(defun vi-put-after 1098,44523
(defun vi-put-before 1068,43200
(defun vi-query-replace 1255,50426
(defun vi-quote-words 1393,55642
(defun vi-raw-numeric-prefix 827,33528
(defun vi-readonly-mode 90,3834
(defun vi-redo-last-change-command 1219,48893
(defun vi-repeat-command-of 992,40101
(defun vi-repeat-last-find-char 866,35078
(defun vi-repeat-last-search 666,27549
(defun vi-replace 1261,50633
(defun vi-replace-1-char 907,36532
(defun vi-replace-chars 915,36835
(defvar vi-replaced-string 461,20173
(defvar vi-replacing-string 462,20205
(defun vi-reverse-last-find-char 838,33934
(defun vi-reverse-last-search 676,28052
(defun vi-save-all-and-exit 454,19990
(defvar vi-scroll-amount 302,13934
(defun vi-scroll-down-window 726,29856
(defun vi-scroll-up-window 767,31244
(defun vi-search-backward 657,27103
(defun vi-search-forward 648,26662
(defvar vi-search-last-command 340,15146
(defun vi-set-last-change-command 1215,48743
(defun vi-set-mark 1153,46718
(defun vi-shell-op 1103,44654
(defun vi-shift-op 1117,45323
(defvar vi-shift-width 305,14046
(defun vi-split-open-line 1432,57083
(defun vi-string-end-with-nl-p 1063,42991
(defun vi-substitute-chars 921,36971
(defun vi-substitute-lines 929,37246
(defun vi-switch-mode 29,1472
(defvar vi-tilde-map 44,2182
(defun vi-transpose-objects 1237,49534
(defun vi-undefined 481,20931
(defun vi-unimplemented 487,21082
(defun vi-verify-spelling 1362,54465
(defun vi-yank-line 1056,42716
(defun vi-yank-op 1042,42174

../lisp/view.el,870
(defun View-back-to-mark 334,13759
(defun View-goto-line 240,9704
(defun View-next-line 364,14665
(defun View-previous-line 359,14516
(defun View-scroll-lines-backward 294,11840
(defun View-scroll-lines-forward 249,9957
(defun View-scroll-lines-forward-set-scroll-size 273,10822
(defun View-scroll-one-more-line 288,11646
(defun View-search-last-regexp-backward 327,13455
(defun View-search-last-regexp-forward 320,13156
(defun View-search-regexp-backward 313,12714
(defun View-search-regexp-forward 303,12201
(defun View-undefined 189,8292
(defun view-buffer 112,5108
(defun view-file 93,4341
(defun view-helpful-message 180,7886
(defvar view-hook 199,8535
(defun view-mode 124,5631
(defun view-mode-command-loop 202,8624
(defvar view-mode-map 24,880
(defun view-scroll-size 196,8438
(defun view-search 343,14084
(defun view-window-size 194,8369

../lisp/vip.el,11995
(defvar ex-addresses 2051,65610
(defvar ex-append 2090,66294
(defvar ex-buffer 2057,65705
(defun ex-command 3062,97289
(defun ex-copy 2624,83632
(defvar ex-count 2060,65751
(defun ex-delete 2655,84610
(defun ex-edit 2688,85687
(defvar ex-file 2084,66223
(defvar ex-flag 2054,65662
(defvar ex-g-flag 2063,65796
(defvar ex-g-pat 2075,66060
(defvar ex-g-variant 2066,65848
(defun ex-global 2708,86268
(defun ex-goto 2616,83445
(defun ex-line 2767,88262
(defun ex-line-no 3082,97879
(defun ex-line-subr 2797,89198
(defvar ex-map 2078,66114
(defun ex-map 2838,90440
(defun ex-mark 2815,89772
(defvar ex-offset 2088,66270
(defun ex-put 2878,91675
(defun ex-quit 2886,91914
(defun ex-read 2895,92160
(defvar ex-reg-exp 2069,65942
(defvar ex-repl 2072,66003
(defun ex-search-address 2460,78615
(defun ex-set 2921,92876
(defun ex-shell 2926,92995
(defun ex-substitute 2931,93068
(defvar ex-tag 2081,66186
(defun ex-tag 2995,95140
(defvar ex-token 2048,65567
(defvar ex-token-type 2044,65458
(defun ex-unmap 2863,91173
(defvar ex-variant 2086,66245
(defun ex-write 3016,95724
(defun ex-yank 3041,96594
(defun vip-Append 844,27757
(defun vip-ESC 366,12254
(defvar vip-F-char 78,2478
(defun vip-Insert 854,28031
(defun vip-Open-line 882,28781
(defun vip-P-val 523,17500
(defun vip-Put-back 1690,53263
(defun vip-Region 956,30621
(defun vip-append 834,27467
(defun vip-append-to-register 545,17977
(defun vip-backward-Word 1095,34821
(defun vip-backward-char 1010,32409
(defun vip-backward-paragraph 1431,45510
(defun vip-backward-sentence 1413,44960
(defun vip-backward-word 1055,33638
(defun vip-beginning-of-line 1106,35191
(defun vip-binding-of 323,10678
(defun vip-bol-and-skip-white 1114,35471
(defun vip-buffer-in-two-windows 1484,46649
(defconst vip-case-fold-search 99,2915
(defun vip-change 1758,55392
(defun vip-change-mode 165,4771
(defun vip-change-mode-line 226,7238
(defun vip-change-mode-to-emacs 279,9056
(defun vip-change-mode-to-insert 274,8937
(defun vip-change-mode-to-vi 269,8830
(defun vip-change-subr 1763,55532
(defun vip-change-to-eol 1166,37234
(defun vip-check-sub 2101,66544
(defvar vip-com-point 32,1067
(defun vip-command-argument 499,16859
(defun vip-copy-keymap 159,4663
(defun vip-copy-region-as-kill 220,7017
(defun vip-ctl-c 371,12364
(defun vip-ctl-c-equivalent 1876,58802
(defun vip-ctl-h 381,12592
(defun vip-ctl-key-equivalent 1886,59052
(defun vip-ctl-x 376,12478
(defun vip-ctl-x-equivalent 1881,58927
(defvar vip-current-major-mode 50,1691
(defvar vip-current-mode 38,1239
(defvar vip-d-char 72,2346
(defvar vip-d-com 62,2037
(defun vip-default-ex-addresses 2383,75946
(defun vip-delete-backward-char 1724,54443
(defun vip-delete-backward-word 1899,59392
(defun vip-delete-char 1710,53970
(defun vip-describe-arg 481,16302
(defun vip-digit-argument 493,16675
(defvar vip-emacs-local-map 13,455
(defvar vip-emacs-mode-line-buffer-identification 44,1422
(defvar vip-emacs-old-commands 16,543
(defun vip-end-of-Word 1082,34431
(defun vip-end-of-word 1041,33291
(defun vip-end-with-a-newline-p 794,26046
(defun vip-enlarge-region 754,24825
(defun vip-escape-to-emacs 338,11196
(defun vip-ex 2274,72532
(defun vip-exchange-point-and-mark 1865,58553
(defun vip-execute-com 551,18223
(defun vip-execute-ex-command 2558,81203
(defvar vip-f-char 75,2424
(defvar vip-f-forward 81,2532
(defvar vip-f-offset 84,2591
(defun vip-find-char 1192,37870
(defun vip-find-char-backward 1261,40379
(defun vip-find-char-forward 1221,38949
(defun vip-find-file 1631,51518
(defun vip-find-file-other-window 1639,51738
(defun vip-forward-Word 1064,33897
(defun vip-forward-char 1001,32064
(defun vip-forward-paragraph 1422,45235
(defun vip-forward-sentence 1404,44689
(defun vip-forward-word 1022,32784
(defun vip-get-editor-command 287,9213
(defun vip-get-ex-address 2394,76325
(defun vip-get-ex-address-subr 2418,77146
(defun vip-get-ex-buffer 2473,78979
(defun vip-get-ex-com-subr 2109,66813
(defun vip-get-ex-command 2352,75082
(defun vip-get-ex-count 2499,79708
(defun vip-get-ex-file 2524,80341
(defun vip-get-ex-opt-gc 2367,75584
(defun vip-get-ex-pat 2325,74303
(defun vip-get-ex-token 2175,69336
(defun vip-getCom 534,17737
(defun vip-getcom 528,17610
(defun vip-global-execute 766,25175
(defun vip-goto-char-backward 1280,40996
(defun vip-goto-char-forward 1242,39756
(defun vip-goto-col 142,4186
(defun vip-goto-eol 1122,35774
(defun vip-goto-line 1179,37462
(defun vip-goto-mark 1825,57243
(defun vip-goto-mark-and-skip-white 1831,57398
(defun vip-goto-mark-subr 1837,57602
(defconst vip-help-in-insert-mode 108,3164
(defun vip-info-on-file 1647,51980
(defvar vip-inhibit-startup-message 117,3428
(defun vip-insert 827,27247
(defvar vip-insert-local-map 19,628
(defvar vip-insert-point 26,883
(defun vip-join-lines 1741,54970
(defun vip-keyboard-quit 1870,58661
(defun vip-kill-buffer 1613,50990
(defun vip-kill-line 1171,37345
(defvar vip-last-shell-com 56,1871
(defun vip-line 933,30066
(defun vip-line-to-bottom 1368,43761
(defun vip-line-to-middle 1363,43613
(defun vip-line-to-top 1358,43501
(defun vip-looking-back 2096,66367
(defmacro vip-loop 123,3536
(defun vip-mark-beginning-of-buffer 1800,56560
(defun vip-mark-end-of-buffer 1807,56742
(defun vip-mark-point 1814,56912
(defun vip-message-conditions 358,12014
(defun vip-mode 234,7555
(define-key vip-mode-map 1912,59633
(define-key vip-mode-map 1913,59685
(define-key vip-mode-map 1914,59735
(define-key vip-mode-map 1915,59779
(define-key vip-mode-map 1916,59827
(define-key vip-mode-map 1917,59879
(define-key vip-mode-map 1918,59924
(define-key vip-mode-map 1919,59976
(define-key vip-mode-map 1920,60023
(define-key vip-mode-map 1921,60073
(define-key vip-mode-map 1922,60124
(define-key vip-mode-map 1923,60181
(define-key vip-mode-map 1924,60231
(define-key vip-mode-map 1925,60275
(define-key vip-mode-map 1926,60329
(define-key vip-mode-map 1927,60388
(define-key vip-mode-map 1929,60429
(define-key vip-mode-map 1930,60471
(define-key vip-mode-map 1931,60523
(define-key vip-mode-map 1932,60576
(define-key vip-mode-map 1933,60628
(define-key vip-mode-map 1934,60672
(define-key vip-mode-map 1935,60719
(define-key vip-mode-map 1936,60758
(define-key vip-mode-map 1937,60818
(define-key vip-mode-map 1938,60871
(define-key vip-mode-map 1939,60923
(define-key vip-mode-map 1940,60974
(define-key vip-mode-map 1941,61026
(define-key vip-mode-map 1942,61082
(define-key vip-mode-map 1943,61138
(define-key vip-mode-map 1944,61180
(define-key vip-mode-map 1946,61231
(define-key vip-mode-map 1947,61284
(define-key vip-mode-map 1948,61334
(define-key vip-mode-map 1949,61384
(define-key vip-mode-map 1950,61434
(define-key vip-mode-map 1951,61484
(define-key vip-mode-map 1952,61534
(define-key vip-mode-map 1953,61584
(define-key vip-mode-map 1954,61634
(define-key vip-mode-map 1955,61684
(define-key vip-mode-map 1957,61735
(define-key vip-mode-map 1958,61773
(define-key vip-mode-map 1959,61820
(define-key vip-mode-map 1960,61872
(define-key vip-mode-map 1961,61924
(define-key vip-mode-map 1962,61976
(define-key vip-mode-map 1963,62027
(define-key vip-mode-map 1965,62067
(define-key vip-mode-map 1966,62109
(define-key vip-mode-map 1967,62158
(define-key vip-mode-map 1968,62210
(define-key vip-mode-map 1969,62255
(define-key vip-mode-map 1970,62302
(define-key vip-mode-map 1971,62356
(define-key vip-mode-map 1972,62401
(define-key vip-mode-map 1973,62447
(define-key vip-mode-map 1974,62489
(define-key vip-mode-map 1975,62535
(define-key vip-mode-map 1976,62582
(define-key vip-mode-map 1977,62631
(define-key vip-mode-map 1978,62680
(define-key vip-mode-map 1979,62727
(define-key vip-mode-map 1980,62772
(define-key vip-mode-map 1981,62816
(define-key vip-mode-map 1982,62865
(define-key vip-mode-map 1983,62915
(define-key vip-mode-map 1984,62980
(define-key vip-mode-map 1985,63034
(define-key vip-mode-map 1986,63073
(define-key vip-mode-map 1987,63131
(define-key vip-mode-map 1988,63179
(define-key vip-mode-map 1989,63231
(define-key vip-mode-map 1990,63276
(define-key vip-mode-map 1992,63333
(define-key vip-mode-map 1993,63372
(define-key vip-mode-map 1994,63424
(define-key vip-mode-map 1995,63463
(define-key vip-mode-map 1996,63517
(define-key vip-mode-map 1997,63556
(define-key vip-mode-map 1999,63602
(define-key vip-mode-map 2000,63644
(define-key vip-mode-map 2001,63693
(define-key vip-mode-map 2002,63745
(define-key vip-mode-map 2003,63797
(define-key vip-mode-map 2004,63844
(define-key vip-mode-map 2005,63897
(define-key vip-mode-map 2006,63945
(define-key vip-mode-map 2007,63994
(define-key vip-mode-map 2008,64036
(define-key vip-mode-map 2009,64081
(define-key vip-mode-map 2010,64130
(define-key vip-mode-map 2011,64178
(define-key vip-mode-map 2012,64224
(define-key vip-mode-map 2013,64271
(define-key vip-mode-map 2014,64316
(define-key vip-mode-map 2015,64360
(define-key vip-mode-map 2016,64399
(define-key vip-mode-map 2017,64447
(define-key vip-mode-map 2018,64499
(define-key vip-mode-map 2019,64552
(define-key vip-mode-map 2020,64592
(define-key vip-mode-map 2021,64637
(define-key vip-mode-map 2022,64685
(define-key vip-mode-map 2023,64732
(define-key vip-mode-map 2024,64784
(define-key vip-mode-map 2025,64832
(define-key vip-mode-map 2026,64883
(define-key vip-mode-map 2027,64934
(define-key vip-mode-map 2028,64985
(define-key vip-mode-map 2029,65036
(define-key vip-mode-map 2031,65088
(define-key vip-mode-map 2032,65142
(define-key vip-mode-map 2033,65186
(define-key vip-mode-map 2034,65239
(define-key vip-mode-map 2035,65278
(defun vip-next-line 1130,36024
(defun vip-next-line-at-bol 1139,36316
(defun vip-nil 2092,66318
(defun vip-open-line 864,28321
(defun vip-open-line-at-point 900,29266
(defconst vip-open-with-indent 105,3087
(defun vip-other-window 1323,42398
(defun vip-p-val 517,17350
(defun vip-paren-match 1376,43914
(defun vip-prefix-arg-com 406,13459
(defun vip-prefix-arg-value 393,12935
(defun vip-previous-line 1148,36619
(defun vip-previous-line-at-bol 1157,36922
(defun vip-push-mark-silent 130,3745
(defun vip-put-back 1666,52466
(defun vip-query-replace 1775,55781
(defun vip-quote-region 776,25461
(defvar vip-quote-string 112,3313
(defconst vip-re-query-replace 102,2985
(defconst vip-re-replace 69,2250
(defconst vip-re-search 90,2715
(defun vip-read-string 799,26208
(defun vip-refresh-mode-line 155,4561
(defun vip-region 948,30407
(defun vip-repeat 690,22967
(defun vip-repeat-find 1298,41608
(defun vip-repeat-find-opposite 1309,41964
(defun vip-repeat-insert-command 816,26776
(defun vip-replace-char 964,30837
(defun vip-replace-char-subr 971,31131
(defun vip-replace-string 977,31296
(defvar vip-s-forward 96,2858
(defvar vip-s-string 93,2808
(defun vip-scroll 1443,45805
(defun vip-scroll-back 1454,46021
(defun vip-scroll-down 1459,46126
(defun vip-scroll-down-one 1465,46280
(defun vip-scroll-up 1470,46379
(defun vip-scroll-up-one 1476,46529
(defun vip-search 1533,48288
(defun vip-search-Next 1580,50001
(defun vip-search-backward 1513,47549
(defun vip-search-forward 1493,46816
(defun vip-search-next 1572,49697
(defconst vip-search-wrap-around 87,2647
(defconst vip-shift-width 66,2166
(defun vip-special-prefix-com 710,23848
(defun vip-string-tail 746,24647
(defun vip-substitute 913,29596
(defun vip-substitute-line 925,29943
(defun vip-switch-to-buffer 1591,50378
(defun vip-switch-to-buffer-other-window 1602,50673
(defvar vip-tags-file-name 115,3392
(defun vip-undo 729,24347
(defun vip-undo-more 737,24493
(defvar vip-use-register 59,1949
(defun vip-version 2037,65338
(defun vip-window-bottom 1349,43223
(defun vip-window-middle 1340,42911
(defun vip-window-top 1331,42638
(defun vip-yank 1658,52286
(defun vip-yank-defun 750,24744
(defun vip-yank-line 939,30237

../lisp/vms-patch.el,223
(defun auto-save-file-name-p 64,2488
(defun create-file-buffer 26,947
(defun make-auto-save-file-name 50,1923
(defun make-legal-file-name 34,1398
(defun vms-suspend-hook 78,3068
(defun vms-suspend-resume-hook 70,2749

../lisp/vmsproc.el,383
(defun command-kill-line(106,3841
(defvar command-mode-map 29,1105
(defvar command-prefix-string 25,974
(defun command-send-input 78,2790
(defvar display-subprocess-window 22,856
(define-key esc-map 112,3973
(defun start-subprocess 52,1777
(defun subprocess-command 70,2512
(defun subprocess-exit 48,1669
(defun subprocess-input 37,1331
(defvar subprocess-running 28,1073

../lisp/window.el,292
(define-key ctl-x-map 45,1670
(define-key ctl-x-map 46,1722
(define-key ctl-x-map 47,1776
(define-key ctl-x-map 48,1832
(defun enlarge-window-horizontally 35,1407
(defun shrink-window-horizontally 40,1538
(defun split-window-horizontally 28,1124
(defun split-window-vertically 21,838

../lisp/x-menu.el,508
(defmacro caar 20,778
(defmacro cdar 23,841
(defun x-menu-activate 96,3289
(defun x-menu-add-item 68,2335
(defvar x-menu-assoc-buffer 44,1625
(defun x-menu-change-associated-buffer 60,2083
(defun x-menu-create-menu 49,1762
(defun x-menu-delete-item 85,2966
(defvar x-menu-item-spacing 46,1659
(defvar x-menu-item-width 42,1564
(defvar x-menu-items-alist 43,1593
(defvar x-menu-items-per-line 41,1531
(defvar x-menu-max-width 40,1503
(defun x-menu-mode 26,904
(defun x-menu-pick-entry 136,4703

../lisp/x-mouse.el,3355
(define-key global-map 107,4054
(define-key global-map 108,4110
(define-key mouse-map 255,8978
(define-key mouse-map 256,9035
(define-key mouse-map 257,9093
(define-key mouse-map 258,9149
(define-key mouse-map 259,9208
(define-key mouse-map 260,9268
(define-key mouse-map 261,9326
(define-key mouse-map 262,9385
(define-key mouse-map 263,9445
(define-key mouse-map 264,9503
(define-key mouse-map 265,9562
(define-key mouse-map 266,9622
(define-key mouse-map 267,9680
(define-key mouse-map 268,9741
(define-key mouse-map 269,9803
(define-key mouse-map 270,9863
(define-key mouse-map 271,9924
(define-key mouse-map 272,9986
(define-key mouse-map 273,10046
(define-key mouse-map 274,10107
(define-key mouse-map 275,10169
(define-key mouse-map 276,10229
(define-key mouse-map 277,10292
(define-key mouse-map 278,10356
(define-key mouse-map 280,10419
(define-key mouse-map 281,10475
(define-key mouse-map 282,10526
(define-key mouse-map 283,10593
(define-key mouse-map 284,10646
(define-key mouse-map 285,10700
(define-key mouse-map 286,10762
(defun x-buffer-menu 200,7105
(defconst x-button-c-left 49,1818
(defconst x-button-c-left-up 53,1969
(defconst x-button-c-m-left 73,2743
(defconst x-button-c-m-left-up 77,2902
(defconst x-button-c-m-middle 72,2692
(defconst x-button-c-m-middle-up 76,2847
(defconst x-button-c-m-right 71,2642
(defconst x-button-c-m-right-up 75,2793
(defconst x-button-c-m-s-left 81,3063
(defconst x-button-c-m-s-left-up 85,3229
(defconst x-button-c-m-s-middle 80,3009
(defconst x-button-c-m-s-middle-up 84,3172
(defconst x-button-c-m-s-right 79,2956
(defconst x-button-c-m-s-right-up 83,3116
(defconst x-button-c-middle 48,1769
(defconst x-button-c-middle-up 52,1917
(defconst x-button-c-right 47,1721
(defconst x-button-c-right-up 51,1866
(defconst x-button-c-s-left 65,2432
(defconst x-button-c-s-left-up 69,2589
(defconst x-button-c-s-middle 64,2381
(defconst x-button-c-s-middle-up 68,2535
(defconst x-button-c-s-right 63,2331
(defconst x-button-c-s-right-up 67,2482
(defconst x-button-left 25,933
(defconst x-button-left-up 29,1075
(defconst x-button-m-left 41,1519
(defconst x-button-m-left-up 45,1670
(defconst x-button-m-middle 40,1470
(defconst x-button-m-middle-up 44,1618
(defconst x-button-m-right 39,1422
(defconst x-button-m-right-up 43,1567
(defconst x-button-m-s-left 57,2121
(defconst x-button-m-s-left-up 61,2278
(defconst x-button-m-s-middle 56,2070
(defconst x-button-m-s-middle-up 60,2224
(defconst x-button-m-s-right 55,2020
(defconst x-button-m-s-right-up 59,2171
(defconst x-button-middle 24,887
(defconst x-button-middle-up 28,1026
(defconst x-button-right 23,842
(defconst x-button-right-up 27,978
(defconst x-button-s-left 33,1220
(defconst x-button-s-left-up 37,1371
(defconst x-button-s-middle 32,1171
(defconst x-button-s-middle-up 36,1319
(defconst x-button-s-right 31,1123
(defconst x-button-s-right-up 35,1268
(defun x-cut-and-wipe-text 193,6918
(defun x-cut-text 173,6232
(defun x-flush-mouse-queue 95,3599
(defun x-help 223,7724
(defun x-mouse-ignore 197,7052
(defun x-mouse-keep-one-window 125,4547
(defun x-mouse-select 110,4167
(defun x-mouse-select-and-split 130,4715
(defun x-mouse-set-mark 162,5901
(defun x-mouse-set-point 135,4890
(defun x-paste-text 188,6755
(defvar x-process-mouse-hook 87,3285

../lisp/xscheme.el,4273
(defun reset-scheme 86,3401
(defun run-scheme 72,2935
(defvar scheme-band-name 30,1102
(defun scheme-debugger-mode 219,8729
(defun scheme-debugger-mode-commands 235,9298
(defun scheme-debugger-mode-initialize 230,9132
(defvar scheme-debugger-mode-map 241,9496
(defun scheme-debugger-self-insert 249,9812
(defun scheme-interaction-mode 110,4150
(defun scheme-interaction-mode-commands 192,7710
(defun scheme-interaction-mode-initialize 187,7532
(defvar scheme-interaction-mode-map 197,7937
(defvar scheme-program-arguments 33,1179
(defvar scheme-program-name 27,1013
(defvar xscheme-allow-output-p 456,17075
(defvar xscheme-allow-pipelined-evaluation 36,1291
(defun xscheme-cd 825,29369
(defun xscheme-coerce-prompt 805,28708
(defvar xscheme-control-g-disabled-p 452,16887
(defconst xscheme-control-g-synchronization-p 447,16631
(defun xscheme-debugger-mode-p 263,10260
(defun xscheme-default-command-line 99,3878
(defun xscheme-display-process-buffer 761,27281
(defun xscheme-enable-control-g 758,27202
(defun xscheme-enter-debugger-mode 254,9959
(defun xscheme-enter-input-wait 750,26971
(defun xscheme-enter-interaction-mode 206,8338
(defun xscheme-evaluation-commands 54,2065
(defun xscheme-exit-input-wait 754,27087
(defvar xscheme-filter-input 475,17746
(defun xscheme-finish-gc 746,26842
(defun xscheme-goto-output-point 655,23567
(defun xscheme-guarantee-newlines 639,23214
(defun xscheme-interrupt-commands 62,2464
(defun xscheme-message 773,27641
(defvar xscheme-mode-string 474,17713
(defun xscheme-modeline-initialize 660,23729
(defun xscheme-modeline-redisplay 669,24026
(defun xscheme-output-goto 801,28613
(defun xscheme-parse-command-line 507,18827
(defvar xscheme-previous-send 434,16113
(defun xscheme-process-buffer 539,19648
(defun xscheme-process-buffer-current-p 547,19899
(defun xscheme-process-buffer-window 543,19769
(defvar xscheme-process-command-line 431,16012
(defun xscheme-process-filter 574,20829
(defvar xscheme-process-filter-alist676,24205
(defun xscheme-process-filter-initialize 566,20524
(defun xscheme-process-filter-output 621,22628
(defvar xscheme-process-filter-state 437,16210
(defun xscheme-process-filter:simple-action 725,26126
(defun xscheme-process-filter:string-action 729,26244
(defun xscheme-process-running-p 533,19450
(defun xscheme-process-sentinel 553,20077
(defvar xscheme-prompt 460,17222
(defvar xscheme-prompt-alist816,29010
(defun xscheme-prompt-for-confirmation 830,29496
(defun xscheme-prompt-for-expression 833,29611
(defun xscheme-prompt-for-expression-exit 846,30093
(defvar xscheme-prompt-for-expression-map 837,29770
(defun xscheme-region-expression-p 852,30311
(defvar xscheme-runlight-string 473,17676
(defconst xscheme-runlight:gc 740,26656
(defconst xscheme-runlight:input 737,26539
(defconst xscheme-runlight:running 734,26432
(defvar xscheme-running-p 443,16471
(defun xscheme-select-process-buffer 307,11735
(defun xscheme-send-breakpoint-interrupt 381,14278
(defun xscheme-send-buffer 367,13820
(defun xscheme-send-char 374,14078
(defun xscheme-send-control-g-interrupt 391,14573
(defun xscheme-send-control-u-interrupt 406,15086
(defun xscheme-send-control-x-interrupt 411,15249
(defun xscheme-send-current-line 353,13450
(defun xscheme-send-definition 327,12516
(defun xscheme-send-interrupt 421,15662
(defun xscheme-send-next-expression 341,12997
(defun xscheme-send-previous-expression 347,13223
(defun xscheme-send-proceed 386,14426
(defun xscheme-send-region 318,12174
(defun xscheme-send-string 272,10469
(defun xscheme-send-string-1 289,11160
(defun xscheme-send-string-2 295,11366
(defun xscheme-set-prompt 795,28421
(defun xscheme-set-prompt-variable 792,28344
(defun xscheme-set-runlight 665,23912
(defvar xscheme-signal-death-message 51,1943
(defun xscheme-start-gc 743,26768
(defvar xscheme-start-hook 469,17504
(defun xscheme-start-process 479,17810
(defvar xscheme-startup-message41,1541
(defvar xscheme-string-accumulator 463,17288
(defvar xscheme-string-receiver 466,17399
(defun xscheme-unsolicited-read-char 770,27592
(defun xscheme-wait-for-process 528,19351
(defun xscheme-write-message-1 782,27967
(defun xscheme-write-value 777,27773
(defun xscheme-yank-previous-send 301,11585

../lisp/yow.el,113
(defun psychoanalyze-pinhead 73,2515
(defun snarf-yows 49,1738
(defun yow 26,1073
(defvar yow-vector 48,1683