File: funcs

package info (click to toggle)
euslisp 9.27%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 55,344 kB
  • sloc: ansic: 41,162; lisp: 3,339; makefile: 256; sh: 208; asm: 138; python: 53
file content (2729 lines) | stat: -rw-r--r-- 142,658 bytes parent folder | download | duplicates (3)
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
!                                       lisp     compiled func
        (&optional (n 0))
*                                       lisp     compiled func
+                                       lisp     compiled func
-                                       lisp     compiled func
/                                       lisp     compiled func
/=                                      lisp     compiled func
        (n1 n2)
1+                                      lisp     compiled func
1-                                      lisp     compiled func
<                                       lisp     compiled func
<=                                      lisp     compiled func
=                                       lisp     compiled func
>                                       lisp     compiled func
>=                                      lisp     compiled func
abs                                     lisp     compiled func
accept                                  unix     compiled func
access                                  unix     compiled func
acons                                   lisp     compiled func
        (key datum alist)
acos                                    lisp     compiled func
        (x)
acosh                                   lisp     compiled func
activatescreensaver                     x        compiled func
add-alist                               GEOMETRY compiled func
        (key val alist)
add-history                             lisp     compiled func
        (h)
add-wings                               geometry compiled func
        (bod)
addhost                                 x        compiled func
addhosts                                x        compiled func
addpixel                                x        compiled func
address                                 system   compiled func
addtosaveset                            x        compiled func
adjoin                                  lisp     compiled func
        (item list &key (test #'eq) (test-not) (key #'identity))
alarm                                   unix     compiled func
alias                                   lisp     compiled func
        (new old)
aligned-faces                           geometry compiled func
        (body1 body2)
alloc                                   system   compiled func
alloc                                   system   compiled func
alloc                                   system   compiled func
alloccolor                              x        compiled func
alloccolorcells                         x        compiled func
alloccolorplanes                        x        compiled func
allocnamedcolor                         x        compiled func
allowevents                             x        compiled func
allplanes                               x        compiled func
alpha-char-p                            lisp     compiled func
alphanumericp                           lisp     compiled func
and                                     lisp     compiled func
append                                  lisp     compiled func
apply                                   lisp     compiled func
apropos                                 lisp     compiled func
        (strng &optional pack)
apropos-list                            lisp     compiled func
        (strng &optional pack)
aref                                    lisp     compiled func
array-dimension                         lisp     compiled func
        (a axis)
array-dimensions                        lisp     compiled func
        (a)
array-rank                              lisp     compiled func
        (a)
array-total-size                        lisp     compiled func
        (a)
array-vector                            lisp     compiled func
        (a)
arrayp                                  lisp     compiled func
asctime                                 unix     compiled func
aset                                    lisp     compiled func
ash                                     lisp     compiled func
asin                                    lisp     compiled func
        (x)
asinh                                   lisp     compiled func
assert                                  lisp     compiled macro
        (pred place message &rest args)
assoc                                   lisp     compiled func
        (item alist &key key test test-not)
assoc-coordinates-axes                  GEOMETRY compiled func
        (casc &optional (size 1) (where (coords)))
assq                                    lisp     compiled func
atan                                    lisp     compiled func
atanh                                   lisp     compiled func
atom                                    lisp     compiled func
autorepeatoff                           x        compiled func
autorepeaton                            x        compiled func
backspace                               lisp     compiled func
        (&optional (n 1))
bb-relation                             geometry compiled func
        (body1 body2 &optional (tolerance *epsilon*))
become                                  lisp     compiled func
bell                                    lisp     compiled func
        (n &optional (strm t))
best-visual                             x        compiled func
        (&optional (class-preference '(5 4 3)) (depth-preference '(32 24 16 15 8)) (screen 0))
bind                                    unix     compiled func
binload                                 system   compiled func
bit                                     lisp     compiled func
bit-and                                 lisp     compiled func
bit-eqv                                 lisp     compiled func
bit-ior                                 lisp     compiled func
bit-nand                                lisp     compiled func
bit-nor                                 lisp     compiled func
bit-not                                 lisp     compiled func
bit-vector-p                            lisp     compiled func
        (obj)
bit-xor                                 lisp     compiled func
bitmapbitorder                          x        compiled func
bitmappad                               x        compiled func
bitmapunit                              x        compiled func
bktrace                                 SYSTEM   compiled func
blackpixel                              x        compiled func
blackpixelofscreen                      x        compiled func
block                                   lisp     compiled func
body*                                   geometry compiled func
        (&rest bodies)
body+                                   geometry compiled func
        (&rest bodies)
body-                                   geometry compiled func
        (body1 &rest bodies)
body-interference                       geometry compiled func
        (&rest bodies)
body/                                   geometry compiled func
        (body1 pln)
bodyp                                   geometry compiled func
        (x)
bounding-box-intersection               geometry compiled func
        (boxes &optional (tolerance *contact-threshold*) &aux newbox)
bounding-box-union                      geometry compiled func
        (boxes &optional (tolerance *contact-threshold*) &aux newbox)
boundp                                  lisp     compiled func
break                                   lisp     compiled func
        (&optional (prompt (format nil "brk~d: " (1+ *replevel*))))
btrace                                  lisp     compiled func
        (&optional (n 10))
butlast                                 lisp     compiled func
bye                                     lisp     compiled func
byte-size                               lisp     compiled func
        (typekey)
c-int                                   X        compiled func
        (lisp::s &optional (lisp::i 0))
c-int-integer91                         X        compiled func
        (lisp::s lisp::i)
c-long                                  X        compiled func
        (lisp::s &optional (lisp::i 0))
c-long-long78                           X        compiled func
        (lisp::s lisp::i)
c-stringize                             COMPILER compiled func
        (x)
caaar                                   lisp     compiled func
        (x)
caaddr                                  lisp     compiled func
        (x)
caadr                                   lisp     compiled func
        (x)
caar                                    lisp     compiled func
cadar                                   lisp     compiled func
        (x)
caddddr                                 lisp     compiled func
        (x)
cadddr                                  lisp     compiled func
        (x)
caddr                                   lisp     compiled func
cadr                                    lisp     compiled func
car                                     lisp     compiled func
cascoords                               geometry compiled func
        (&rest initargs)
case                                    lisp     compiled macro
        (key &rest clauses)
case1                                   LISP     compiled func
        (keyvar clauses)
casebody                                LISP     compiled func
        (body)
casehead                                LISP     compiled func
        (keyvar head)
catch                                   lisp     compiled func
cd                                      lisp     compiled macro
        (&optional (dir (unix:getenv "HOME")))
cdaar                                   lisp     compiled func
        (x)
cdaddr                                  lisp     compiled func
        (x)
cdadr                                   lisp     compiled func
        (x)
cdar                                    lisp     compiled func
cddar                                   lisp     compiled func
        (x)
cddddr                                  lisp     compiled func
        (x)
cdddr                                   lisp     compiled func
        (x)
cddr                                    lisp     compiled func
cdr                                     lisp     compiled func
ceiling                                 lisp     compiled func
cellsofscreen                           x        compiled func
change-to-hole                          GEOMETRY compiled func
        (aface)
changeactivepointergrab                 x        compiled func
changegc                                x        compiled func
changekeyboardcontrol                   x        compiled func
changekeyboardmapping                   x        compiled func
changepointercontrol                    x        compiled func
changeproperty                          x        compiled func
changesaveset                           x        compiled func
changewindowattributes                  x        compiled func
char                                    lisp     compiled func
char-downcase                           lisp     compiled func
char-upcase                             lisp     compiled func
char/=                                  LISP     compiled func
char<                                   LISP     compiled func
char<=                                  LISP     compiled func
char=                                   LISP     compiled func
char>                                   LISP     compiled func
char>=                                  LISP     compiled func
chdir                                   unix     compiled func
check-arg                               COMPILER compiled func
        (req n &optional (fn "car/cdr"))
check-methods                           lisp     compiled func
        nil
check-visibility                        geometry compiled func
        args= pface nface  point3d point2d viewpoint
determines visibility of point3d.
checkifevent                            x        compiled func
checkmaskevent                          x        compiled func
checktypedevent                         x        compiled func
checktypedwindowevent                   x        compiled func
checkwindowevent                        x        compiled func
chmod                                   unix     compiled func
chown                                   unix     compiled func
circulatesubwindows                     x        compiled func
circulatesubwindowsdown                 x        compiled func
circulatesubwindowsup                   x        compiled func
class                                   lisp     compiled func
class-hierarchy                         lisp     compiled func
        (&optional (klass object) (strm t) (verbose nil))
class-symbolp                           COMPILER compiled func
        (x)
classcase                               lisp     compiled macro
        (key &rest clauses)
classcase1                              LISP     compiled func
        (keyvar clauses)
classcasehead                           LISP     compiled func
        (keyvar head)
classdef                                LISP     compiled func
        (c)
classp                                  lisp     compiled func
clear-memory-report                     system   compiled func
cleararea                               x        compiled func
clearwindow                             x        compiled func
clipbox                                 x        compiled func
clone                                   lisp     compiled func
close                                   lisp     compiled func
closedisplay                            x        compiled func
closest-shadow                          geometry compiled func
        (abody shadow)
clrhash                                 lisp     compiled func
        (hashtab)
cls                                     geometry compiled func
        (&optional (vw *viewer*))
clump                                   X        compiled func
        (minval val maxval)
coerce                                  lisp     compiled func
coerce-type                             COMPILER compiled func
        (tp)
colinear-p                              geometry compiled func
        (p1 p2 p3 &optional (*epsilon* *coplanar-threshold*))
collect-if                              lisp     compiled func
        (func seq &aux r)
collect-instances                       lisp     compiled func
        (klass list)
color-24to16                            image    compiled func
        (img24vec w h &optional img16vec (masks '(63488 2016 31)))
color-24to32                            image    compiled func
        (img24 w h &optional (img32 (make-string (* w h 4))))
color-24to6                             IMAGE    compiled func
        (img24 width height &optional (img6 (make-string (* width height))))
color-24to8                             image    compiled func
        (img24vec w h &optional (img8vec (make-string (*w h))) (masks '(224 28 3)))
color-24to8x3                           image    compiled func
        (img24 w h &optional (redvec (make-string (* w h))) (greenvec (make-string (* w h))) (bluevec (make-string (* w h))))
color-32to24                            image    compiled func
        (img32 w h &optional (img24 (make-string (* w h 3))))
color-32to8                             image    compiled func
        (img32vec w h &optional (img8vec (make-string (* w h))) (masks '(224 28 3)))
color-32to8x3                           image    compiled func
        (img32 w h &optional (redvec (make-string (* w h))) (greenvec (make-string (* w h))) (bluevec (make-string (* w h))))
color-to-deep                           image    compiled func
        (colpiximg)
comfile                                 compiler compiled func
        (&rest files)
comfile                                 compiler compiled func
        (&rest files)
comp-file-toplevel                      COMPILER compiled func
        (&rest argv)
compile                                 lisp     compiled func
        (&rest funcs)
compile-file                            compiler compiled func
        (file &rest keys)
compile-file                            compiler compiled func
        (file &rest keys)
compile-file-if-src-newer               compiler compiled func
        (srcfile &optional (objdir "./") &rest args)
compile-file-if-src-newer               compiler compiled func
        (srcfile &optional (objdir "./") &rest args)
compiled-code-p                         COMPILER compiled func
        (x)
compiled-function-p                     lisp     compiled func
        (x)
compose-body                            geometry compiled func
        (body1 body2 side)
concatenate                             lisp     compiled func
concatenate-lut                         image    compiled func
        (lut1 lut2 &optional (size 256))
concatenate-pathnames                   lisp     compiled func
        (&rest paths)
cond                                    lisp     compiled func
configurewindow                         x        compiled func
connect                                 unix     compiled func
connect-server                          lisp     compiled func
        (host port)
connect-sigalarm-handler                LISP     compiled func
        (s x)
connectionnumber                        x        compiled func
cons                                    lisp     compiled func
conscons                                LISP     compiled func
        (x y)
consp                                   lisp     compiled func
constantp                               lisp     compiled func
        (obj)
constants                               lisp     compiled func
        (&optional (name "") &rest pkgs)
construct-faces                         GEOMETRY compiled func
        (fac-edges)
construct-polygon                       GEOMETRY compiled func
        (segments normal &optional (tol *contact-threshold*))
contacting-faces                        geometry compiled func
        (body1 body2)
conv-bq                                 LISP     compiled func
        (x)
convertselection                        x        compiled func
convex-hull-3d                          geometry compiled func
        ARGS = (vertices)
Create a body of convex-hull from a list of vertices
convolve3                               IMAGE    compiled func
coordinates-distance                    geometry compiled func
        (c1 c2 &aux (c (send c1 :transformation c2)))
coordinates-p                           geometry compiled func
        (obj)
coords                                  geometry compiled func
        (&rest initargs)
coplanar-fe-intersection                GEOMETRY compiled func
        (face1 edge2 &opt side tol) edge2 is coplanar with face1.
coplanar-fe-intersection finds all the line-to-line intersection between
edge2 and all the edges forming face1
coplanar-ff-intersection                GEOMETRY compiled func
        (face1 face2 &optional (side :inside) (tol *coplanar-threshold*))
coplanar-p                              geometry compiled func
        (p1 p2 p3 p4 &optional (*epsilon* *coplanar-threshold*))
copy-add-vertex                         GEOMETRY compiled func
        (htab)
copy-color-map                          IMAGE    compiled func
        (src dest n)
copy-face                               GEOMETRY compiled func
        (f)
copy-list                               lisp     compiled func
        (x)
copy-matrix                             lisp     compiled func
        (mat)
copy-object                             lisp     compiled func
copy-readtable                          lisp     compiled func
        (&optional (from *readtable*) (to nil))
copy-seq                                lisp     compiled func
copy-tree                               lisp     compiled func
        (x)
copyarea                                x        compiled func
copycolormapandfree                     x        compiled func
copygc                                  x        compiled func
copyplane                               x        compiled func
cos                                     lisp     compiled func
cosh                                    lisp     compiled func
count                                   lisp     compiled func
        (item seq &key (start 0) (end (length seq)) (test #'eq) (test-not nil) (key #'identity))
count-if                                lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (key #'identity))
count-if-not                            lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (key #'identity))
create-ximage                           x        compiled func
        (data &key (width 0) (height 0) (visual *visual*) (depth (visual-depth visual)) (format 2) (offset 0))
createbitmapfromdata                    x        compiled func
createcolormap                          x        compiled func
createfontcursor                        x        compiled func
creategc                                x        compiled func
createglyphcursor                       x        compiled func
createimage                             x        compiled func
createpixmap                            x        compiled func
createpixmapcursor                      x        compiled func
createpixmapfrombitmapdata              x        compiled func
createregion                            x        compiled func
createsimplewindow                      x        compiled func
createwindow                            x        compiled func
cursor-backward                         lisp     compiled func
        (&optional (n 1))
cursor-down                             lisp     compiled func
        (&optional (n 1))
cursor-forward                          lisp     compiled func
        (&optional (n 1))
cursor-pos                              lisp     compiled func
        (x)
cursor-return                           lisp     compiled func
        nil
cursor-up                               lisp     compiled func
        (&optional (n 1))
curved-edge-image-p                     GEOMETRY compiled func
        (eimg)
cut-body                                geometry compiled func
        (bod cutting-plane)
dated-file-name                         lisp     compiled func
        (head extension &optional (dt (unix:localtime)))
dda-ellipse                             GEOMETRY compiled func
        (a b)
dda-line                                geometry compiled func
        (x0 y0 x1 y1)
dec                                     lisp     compiled macro
        (var &optional h)
decf                                    lisp     compiled macro
        (var &optional h)
declare                                 lisp     compiled func
decode-float                            lisp     compiled func
def-async                               lisp     compiled macro
        DEF-ASYNC stream lambda-list . forms
def-builtin-entry                       COMPILER lambda   func
        (compiler::sym compiler::lab)
def-function-type                       COMPILER compiled func
        (type funcs)
default-viewsurface                     GEOMETRY compiled func
        (&rest args)
defaultcolormap                         x        compiled func
defaultcolormapofscreen                 x        compiled func
defaultdepth                            x        compiled func
defaultdepthofscreen                    x        compiled func
defaultgc                               x        compiled func
defaultgcofscreen                       x        compiled func
defaultrootwindow                       x        compiled func
defaultscreen                           x        compiled func
defaultscreenofdisplay                  x        compiled func
defaultvisual                           x        compiled func
defaultvisualofscreen                   x        compiled func
defcarray                               lisp     compiled macro
        (array-name type &optional (size 1))
defclass                                lisp     compiled macro
        (name &key slots (super 'object) (size -1) ((:metaclass metaklass) nil) element-type documentation (doc documentation))
defclassmethod                          lisp     compiled macro
        (classname &rest methods)
defconstant                             lisp     compiled macro
        (sym val &optional doc)
defcstruct                              lisp     compiled macro
        (struct-name &rest slotlist)
defforeign                              lisp     compiled macro
        (name fmod label param result)
define-setf-method                      lisp     compiled macro
        (access-fn &rest rest)
definecursor                            x        compiled func
deflocal                                lisp     compiled macro
        (var &optional (init nil) (doc nil))
defmacro                                lisp     compiled func
defmethod                               lisp     compiled func
defparameter                            lisp     compiled macro
        (var init &optional (doc nil))
defsetf                                 lisp     compiled macro
        (access-fn &rest rest)
defstruct                               lisp     compiled macro
        (name &rest slots)
defun                                   lisp     compiled func
defun-c-callable                        lisp     compiled macro
        (name param &rest forms)
defvar                                  lisp     compiled macro
        (var &optional (init nil) (doc nil))
defvoidforeigns                         lisp     compiled macro
        (mod &rest names)
deg2rad                                 lisp     compiled func
        (deg)
delete                                  lisp     compiled func
        (item seq &key (start 0) (end (length seq)) (test #'eq) (test-not nil) (count 1000000) (key #'identity))
delete-if                               lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
delete-if-not                           lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
delete-method                           lisp     compiled func
        (classobj methodname)
deletecontext                           x        compiled func
deletemodifiermapentry                  x        compiled func
deleteproperty                          x        compiled func
derivedp                                lisp     compiled func
describe                                lisp     compiled func
        (obj &optional (strm *standard-output*) (*print-level* nil) (*print-length* nil))
describe-list                           lisp     compiled func
        (objects &optional (file *standard-output*))
destroyimage                            x        compiled func
destroyregion                           x        compiled func
destroysubwindows                       x        compiled func
destroywindow                           x        compiled func
digit-char-p                            lisp     compiled func
digits-string                           lisp     compiled func
        (n digits)
dir                                     lisp     compiled func
        (&optional (dir "."))
direction                               lisp     compiled func
direction-vector                        geometry compiled func
        (org dest) returns a normalized vector from org to dest
directory                               lisp     compiled func
directory-namestring                    lisp     compiled func
        (s)
directory-p                             LISP     compiled func
        (f &aux stat)
disableaccesscontrol                    x        compiled func
display-events                          x        compiled func
        nil
display-fd                              X        compiled func
        (&optional (disp *display*))
displaycells                            x        compiled func
displayheight                           x        compiled func
displayheightmm                         x        compiled func
displayname                             x        compiled func
displayofscreen                         x        compiled func
displayplanes                           x        compiled func
displaystring                           x        compiled func
displaywidth                            x        compiled func
displaywidthmm                          x        compiled func
dispose-hook                            SYSTEM   compiled func
distance                                lisp     compiled func
distance2                               lisp     compiled func
do                                      lisp     compiled macro
        (vars endtest &rest body)
do*                                     lisp     compiled macro
        (vars endtest &rest body)
do-all-symbols                          lisp     compiled macro
        (var &rest forms)
do-combination                          geometry compiled macro
        (combi &rest forms)
do-external-symbols                     lisp     compiled macro
        (vars &rest forms)
do-symbols                              lisp     compiled macro
        (vars &rest forms)
documentation                           lisp     compiled func
        (sym &optional type)
doesbackingstore                        x        compiled func
doessaveunders                          x        compiled func
dolist                                  lisp     compiled macro
        (vars &rest forms)
dotimes                                 lisp     compiled macro
        (vars &rest forms)
double-image                            IMAGE    compiled func
dpb                                     lisp     compiled func
draw                                    geometry compiled func
        (&rest things &aux vw (thickness))
draw-arrow                              geometry compiled func
        (p1 p2)
draw-axis                               geometry compiled func
        (&rest thing &aux (vw *viewer*) (scale 10.0))
draw-ellipse                            geometry compiled func
        (xc yc a b &optional (win *viewsurface*))
draw-hid                                geometry compiled func
        (segments &optional (v *viewer*))
draw-step                               geometry compiled func
        (&rest objs &aux (*viewer* *viewer*) (thickness 3))
draw-tree                               geometry compiled func
        (&rest ccs)
drawarc                                 x        compiled func
drawarcs                                x        compiled func
drawimagestring                         x        compiled func
drawimagestring16                       x        compiled func
drawline                                x        compiled func
drawlines                               x        compiled func
drawpoint                               x        compiled func
drawpoints                              x        compiled func
drawrectangle                           x        compiled func
drawrectangles                          x        compiled func
drawsegments                            x        compiled func
drawstring                              x        compiled func
drawstring16                            x        compiled func
drawtext                                x        compiled func
drawtext16                              x        compiled func
dump-function                           COMPILER compiled func
        (file &rest names)
dump-loadable-structure                 lisp     compiled macro
        (file &rest symbols)
dump-object                             lisp     compiled func
        (file &rest objects)
dump-string                             lisp     compiled func
        (s &optional (file *standard-output*) (word :byte) (width 16))
dump-structure                          lisp     compiled func
        (file &rest objects)
dup                                     unix     compiled func
dup2                                    unix     compiled func
ecase                                   lisp     compiled macro
        (&rest x)
edgep                                   geometry compiled func
        (x)
eighth                                  lisp     compiled func
        (x)
elt                                     lisp     compiled func
emptyregion                             x        compiled func
enableaccesscontrol                     x        compiled func
endp                                    lisp     compiled func
enter-class                             lisp     compiled func
eps-coords=                             geometry compiled func
        (c1 c2 &optional (th1 *epsilon*) (th2 th1) &aux (d (coordinates-distance c1 c2)))
eps-in-range                            geometry compiled func
        (a b c &optional (eps *epsilon*))
eps-v=                                  geometry compiled func
        (v1 v2 &optional (eps *epsilon*))
eps-zero                                geometry compiled func
        (n &optional (eps *epsilon*))
eps<                                    geometry compiled func
        (m n &optional (eps *epsilon*))
eps<=                                   geometry compiled func
        (m n &optional (eps *epsilon*))
eps<>                                   geometry compiled func
        (m n &optional (eps *epsilon*))
eps=                                    geometry compiled func
        (m n &optional (eps *epsilon*))
eps>                                    geometry compiled func
        (m n &optional (eps *epsilon*))
eps>=                                   geometry compiled func
        (m n &optional (eps *epsilon*))
eq                                      lisp     compiled func
eql                                     lisp     compiled func
equal                                   lisp     compiled func
equalregion                             x        compiled func
erase                                   geometry compiled func
        (&rest things &aux (vw *viewer*) (thickness))
erase-eol                               lisp     compiled func
        nil
errno                                   UNIX     compiled func
error                                   lisp     compiled func
esetclosedisplay                        x        compiled func
esetcopygc                              x        compiled func
esetcreatefont                          x        compiled func
esetcreategc                            x        compiled func
eseterror                               x        compiled func
eseterrorstring                         x        compiled func
eseteventtowire                         x        compiled func
esetflushgc                             x        compiled func
esetfreefont                            x        compiled func
esetfreegc                              x        compiled func
esetwiretoevent                         x        compiled func
euler-angle                             lisp     compiled func
euler-matrix                            lisp     compiled func
        EULER-MATRIX (az ay az2) creates a rotation matrix which has been
rotated az, ay, and az2 radian around local z, y, and again z axes.
EULER-ANGLE extracts these angles out of a matrix.
euserror                                lisp     compiled func
        (code msg1 form &optional (msg2))
eussig                                  LISP     compiled func
        (sig &rest code &aux (handler (aref *signal-handlers* sig)))
eustop                                  lisp     compiled func
        (&rest argv)
eval                                    lisp     compiled func
eval-dynamic                            lisp     compiled func
        (sym &optional (env (system:list-all-bindings)))
eval-when                               lisp     compiled func
evalhook                                lisp     compiled func
evaluate-stream                         lisp     compiled func
        (input)
evenp                                   lisp     compiled func
        (n)
event-button                            x        compiled func
        (e)
event-control                           x        compiled func
        (e)
event-height                            x        compiled func
        (e)
event-key                               x        compiled func
        (e)
event-left                              x        compiled func
        (e)
event-meta                              x        compiled func
        (e)
event-middle                            x        compiled func
        (e)
event-pos                               x        compiled func
        (e)
event-pressed                           x        compiled func
        returns T if any key is pressed. In EnterNotify, see the 16th element
instead of 12th of motoinNotify events.
event-right                             x        compiled func
        (e)
event-root-pos                          x        compiled func
        (e)
event-shift                             x        compiled func
        (e)
event-state                             x        compiled func
        (e)
event-time                              x        compiled func
        (e)
event-type                              x        compiled func
        (e)
event-width                             x        compiled func
        (e)
event-window                            x        compiled func
        (e)
event-x                                 x        compiled func
        (e)
event-x-root                            x        compiled func
        (e)
event-y                                 x        compiled func
        (e)
event-y-root                            x        compiled func
        (e)
eventmask-to-value                      X        compiled func
        (events)
eventmaskofscreen                       x        compiled func
eventsqueued                            x        compiled func
every                                   lisp     compiled func
        (pred arg &rest more-args)
exec                                    unix     compiled func
exec-module-init                        SYSTEM   lambda   func
        (name &optional (lisp::file))
exit                                    lisp     compiled func
exit                                    UNIX     compiled func
exp                                     lisp     compiled func
expand-tab                              X        compiled func
        (src &optional (offset 0))
explode-directory-names                 LISP     compiled func
        (dirnames)
export                                  lisp     compiled func
export-all-symbols                      SYSTEM   compiled func
expression                              LISP     compiled func
        (exp &optional (lhs nil) &aux result letvar-alist)
expt                                    lisp     compiled func
        (a x)
extream                                 lisp     compiled func
        (seq test &optional (key #'identity))
ez                                      lisp     compiled func
        (&optional (key (read-from-string (unix:getenv "LOGINPID"))))
face*                                   geometry compiled func
        (f1 f2 &optional (tolerance *coplanar-threshold*))
face+                                   geometry compiled func
        (f1 f2 &optional (tolerance *coplanar-threshold*))
face-normal-vector                      geometry compiled func
        (vertices)
facep                                   geometry compiled func
        (x)
farthest                                geometry compiled func
        (p points)
farthest-pair                           geometry compiled func
        (points)
fboundp                                 lisp     compiled func
fcntl                                   unix     compiled func
fetchbuffer                             x        compiled func
fetchbytes                              x        compiled func
fetchname                               x        compiled func
ff-relation                             geometry compiled func
        (face1 face2 &optional (tolerance *coplanar-threshold*))
fifth                                   lisp     compiled func
        (x)
file-newer                              lisp     compiled func
        (new old)
file-size                               lisp     compiled func
        (f)
file-write-date                         lisp     compiled func
        (file)
fill                                    lisp     compiled func
        (seq item &key (start 0) (end (length seq)))
fill-initial-contents                   LISP     compiled func
        (vec offset dimensions seq)
fill-pointer                            lisp     compiled func
        (a)
fillarc                                 x        compiled func
fillarcs                                x        compiled func
fillpolygon                             x        compiled func
fillrectangle                           x        compiled func
fillrectangles                          x        compiled func
find                                    lisp     compiled func
        (item seq &key (start 0) (end (length seq)) (test #'eq) (test-not nil) (key #'identity))
find-colinear-int                       GEOMETRY compiled func
        (conint)
find-colinear-points                    geometry compiled func
        (points)
find-connecting-edge                    GEOMETRY compiled func
        (vert edges &optional (test #'eq))
find-coplanar-vertices                  geometry compiled func
        (p1 p2 p3 s)
find-entry                              SYSTEM   compiled func
find-equivalent-edge                    GEOMETRY compiled func
        (e1 edges2)
find-executable                         lisp     compiled func
        (progname)
find-extream                            geometry compiled func
        (vertices key test)
find-if                                 lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (key #'identity))
find-if-not                             lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (key #'identity))
find-initial-hull                       GEOMETRY compiled func
        (s)
find-loop                               GEOMETRY compiled func
        (segments normal &optional (tol *contact-threshold*))
find-method                             lisp     compiled func
find-next-segment                       GEOMETRY compiled func
        (nv segs tol)
find-package                            lisp     compiled func
find-symbol                             lisp     compiled func
find-viewer                             geometry compiled func
        (name)
find-visual                             x        compiled func
        (type depth &optional (screen 0))
findcontext                             x        compiled func
finish-output                           lisp     compiled func
first                                   lisp     compiled func
flatten                                 lisp     compiled func
        (l &optional accumulator)
flet                                    lisp     compiled func
float                                   lisp     compiled func
float-vector                            lisp     compiled func
float-vector-p                          lisp     compiled func
        (obj)
floatp                                  lisp     compiled func
floatvector                             lisp     compiled func
floor                                   lisp     compiled func
flush                                   x        compiled func
font-id                                 x        compiled func
        (font &aux (id font))
forcescreensaver                        x        compiled func
fork                                    unix     compiled func
format                                  lisp     compiled func
fourth                                  lisp     compiled func
        (x)
free                                    unix     compiled func
free                                    x        compiled func
free-count                              SYSTEM   compiled func
freecolormap                            x        compiled func
freecolors                              x        compiled func
freecursor                              x        compiled func
freeextensionlist                       x        compiled func
freefont                                x        compiled func
freefontinfo                            x        compiled func
freefontnames                           x        compiled func
freefontpath                            x        compiled func
freegc                                  x        compiled func
freemodifiermap                         x        compiled func
freepixmap                              x        compiled func
frexp                                   LISP     compiled func
ftab-index                              COMPILER compiled func
        (sym)
funcall                                 lisp     compiled func
function                                lisp     compiled func
functionp                               lisp     compiled func
        (obj)
functions                               lisp     compiled func
        (functions [name] [package ...])
list up symbols which have global function definition
gc                                      system   compiled func
gc                                      system   compiled func
gc                                      system   compiled func
gc-attribute-to-mask                    X        compiled func
        (attribute-name)
gcontextfromgc                          x        compiled func
gctime                                  system   compiled func
gcvalues-arc-mode                       X        compiled func
        (lisp::s)
gcvalues-background                     X        compiled func
        (lisp::s)
gcvalues-cap-style                      X        compiled func
        (lisp::s)
gcvalues-clip-mask                      X        compiled func
        (lisp::s)
gcvalues-clip-x-origin                  X        compiled func
        (lisp::s)
gcvalues-clip-y-origin                  X        compiled func
        (lisp::s)
gcvalues-dash-offset                    X        compiled func
        (lisp::s)
gcvalues-dashes                         X        compiled func
        (lisp::s)
gcvalues-fill-rule                      X        compiled func
        (lisp::s)
gcvalues-fill-style                     X        compiled func
        (lisp::s)
gcvalues-font                           X        compiled func
        (lisp::s)
gcvalues-foreground                     X        compiled func
        (lisp::s)
gcvalues-function                       X        compiled func
        (lisp::s)
gcvalues-graphics-exposures             X        compiled func
        (lisp::s)
gcvalues-join-style                     X        compiled func
        (lisp::s)
gcvalues-line-style                     X        compiled func
        (lisp::s)
gcvalues-line-width                     X        compiled func
        (lisp::s)
gcvalues-plane-mask                     X        compiled func
        (lisp::s)
gcvalues-stipple                        X        compiled func
        (lisp::s)
gcvalues-subwindow-mode                 X        compiled func
        (lisp::s)
gcvalues-tile                           X        compiled func
        (lisp::s)
gcvalues-ts-x-origin                    X        compiled func
        (lisp::s)
gcvalues-ts-y-origin                    X        compiled func
        (lisp::s)
gensym                                  lisp     compiled func
gentemp                                 lisp     compiled func
        (&optional (prefix "T") (pkg *package*))
geometry                                x        compiled func
get                                     lisp     compiled func
get-dispatch-macro-character            lisp     compiled func
get-history                             lisp     compiled func
        (n)
get-internal-run-time                   lisp     compiled func
get-lighter-pixel                       X        compiled func
        (pix &optional (rate 1.4) (cmap *color-map*) &aux rgb)
get-macro-character                     lisp     compiled func
get-output-stream-string                lisp     compiled func
        (s)
get-redish-pixel                        X        compiled func
        (pix &optional (rate 1.1) (cmap *color-map*) &aux rgb)
getatomname                             x        compiled func
getclasshint                            x        compiled func
getdefault                              x        compiled func
getegid                                 unix     compiled func
getenv                                  unix     compiled func
geterrordatabasetext                    x        compiled func
geterrortext                            x        compiled func
geteuid                                 unix     compiled func
getfontpath                             x        compiled func
getfontproperty                         x        compiled func
getgcvalues                             x        compiled func
getgeometry                             x        compiled func
getgid                                  unix     compiled func
gethash                                 lisp     compiled func
        (key htab)
gethostbyaddr                           unix     compiled func
gethostbyname                           unix     compiled func
gethostname                             unix     compiled func
geticonname                             x        compiled func
geticonsizes                            x        compiled func
getimage                                x        compiled func
getinputfocus                           x        compiled func
getitimer                               unix     compiled func
getkeyboardcontrol                      x        compiled func
getkeyboardmapping                      x        compiled func
getmodifiermapping                      x        compiled func
getmotionevents                         x        compiled func
getnetbyname                            unix     compiled func
getnormalhints                          x        compiled func
getpagesize                             unix     compiled func
getpeername                             unix     compiled func
getpgrp                                 unix     compiled func
getpid                                  unix     compiled func
getpixel                                x        compiled func
getpointercontrol                       x        compiled func
getpointermapping                       x        compiled func
getppid                                 unix     compiled func
getpriority                             unix     compiled func
getprotobyname                          unix     compiled func
getrusage                               unix     compiled func
getscreensaver                          x        compiled func
getselectionowner                       x        compiled func
getservbyname                           unix     compiled func
getsizehints                            x        compiled func
getstandardcolormap                     x        compiled func
getsubimage                             x        compiled func
gettimeofday                            unix     compiled func
gettransientforhint                     x        compiled func
getuid                                  unix     compiled func
getvisualinfo                           x        compiled func
getwd                                   unix     compiled func
getwindowattributes                     x        compiled func
getwindowproperty                       x        compiled func
getwmhints                              x        compiled func
getzoomhints                            x        compiled func
gift-wrapping                           geometry compiled func
        (f p n a s)
global-variables                        lisp     compiled func
        (special-variables [name] [pkgs ...])
collects symbols declared as special
go                                      lisp     compiled func
grabbutton                              x        compiled func
grabkey                                 x        compiled func
grabkeyboard                            x        compiled func
grabpointer                             x        compiled func
grabserver                              x        compiled func
gravity-to-value                        X        compiled func
        (g)
h                                       lisp     compiled func
        print-history
halve-image                             IMAGE    compiled func
hash-table-p                            lisp     compiled func
        (x)
heightmmofscreen                        x        compiled func
heightofscreen                          x        compiled func
help                                    lisp     compiled func
        (&optional (cmd nil) (class nil) (hs t))
help-method                             help     compiled func
        (class hs)
help-method-list                        HELP     compiled func
        (cmd hs)
help-usage                              HELP     compiled func
        (hs)
hid                                     geometry compiled func
        (&rest thing &aux (vw *viewer*) (drawners) (bodies))
hid2                                    geometry compiled func
        (bodies view &optional (vp))
hidd                                    geometry compiled func
        (&rest thing &aux (vw *viewer*) (drawners) (bodies))
hls2rgb                                 geometry compiled func
        hls2rgb hue lightness saturation
hue: 0..360, lightness 0..1, saturation 0..1
homo-viewport-clip                      geometry compiled func
homo2normal                             geometry compiled func
homogenize                              geometry compiled func
htons                                   UNIX     compiled func
icosahedron-points                      GEOMETRY compiled func
        (&optional (radius 1.0))
identity                                lisp     compiled func
if                                      lisp     compiled func
ifevent                                 x        compiled func
image-correlation                       image    compiled func
image-correlation1                      image    compiled func
imagebyteorder                          x        compiled func
import                                  lisp     compiled func
        (x &optional (pkg *package*))
in-package                              lisp     compiled macro
        (pkgname)
inc                                     lisp     compiled macro
        (var &optional h)
incf                                    lisp     compiled macro
        (var &optional h)
infix2prefix                            LISP     compiled func
        (file &optional char)
init-xwindow                            x        compiled func
        (&optional (display (unix:getenv "DISPLAY")))
initextension                           x        compiled func
initial-intersection-list               GEOMETRY compiled func
        (edges htab &aux res)
input-stream-p                          lisp     compiled func
        (obj)
insert-intersections                    GEOMETRY compiled func
        (intlists faces common-box)
insertmodifiermapentry                  x        compiled func
inspect                                 lisp     compiled macro
        (obj)
inspect1                                LISP     compiled func
        (obj &optional prompt)
install-error-handler                   LISP     compiled func
install-remote-function                 LISP     compiled func
        (s)
installcolormap                         x        compiled func
instance                                lisp     compiled macro
        (cls &rest message)
instance*                               lisp     compiled macro
        (cls &rest message)
instantiate                             lisp     compiled func
integer-vector                          lisp     compiled func
integer-vector-p                        lisp     compiled func
        (obj)
integerp                                lisp     compiled func
intern                                  lisp     compiled func
internatom                              x        compiled func
intersecting-edges                      GEOMETRY compiled func
        (pln edges)
intersecting-segments                   GEOMETRY compiled func
        (segments)
intersection                            lisp     compiled func
        (list1 list2 &key (test #'eq) (test-not) (key #'identity))
intersectregion                         x        compiled func
inverse-matrix                          lisp     compiled func
        (mat)
io-stream-p                             lisp     compiled func
        (obj)
ioctl                                   unix     compiled func
ioctl_                                  unix     compiled func
ioctl_r                                 unix     compiled func
ioctl_w                                 unix     compiled func
ioctl_wr                                unix     compiled func
isatty                                  unix     compiled func
keycodetokeysym                         x        compiled func
keysymtokeycode                         x        compiled func
keysymtostring                          x        compiled func
keywordp                                lisp     compiled func
        (sym)
kill                                    unix     compiled func
labels                                  lisp     compiled func
last                                    lisp     compiled func
        (x)
lastknownrequestprocessed               x        compiled func
ldb                                     lisp     compiled func
left-points                             geometry compiled func
        (points p1 p2 normal)
leftmost-point                          geometry compiled func
        (vertices p1 p2 normal)
length                                  lisp     compiled func
let                                     lisp     compiled func
let*                                    lisp     compiled func
line-abort                              lisp     compiled func
        (ch line index end)
line-delch                              lisp     compiled func
        (ch line index end)
line-delch-previous                     lisp     compiled func
        (ch line index end)
line-edit                               lisp     compiled func
        line (string) is edited and returned
line-end                                lisp     compiled func
        (ch line index end)
line-head                               lisp     compiled func
        (ch line index end)
line-insert                             lisp     compiled func
        (ch line index end)
line-intersection                       geometry compiled func
line-intersection3                      geometry compiled func
line-left                               lisp     compiled func
        (ch line index end)
line-null                               lisp     compiled func
        (ch line index end)
line-refresh                            lisp     compiled func
        (ch line index end)
line-right                              lisp     compiled func
        (ch line index end)
line-tail                               lisp     compiled func
        (ch line index end)
link                                    unix     compiled func
lisp-implementation-type                lisp     compiled func
        nil
lisp-implementation-version             lisp     compiled func
        nil
list                                    lisp     compiled func
list*                                   lisp     compiled func
list-all-bindings                       system   compiled func
list-all-catchers                       system   compiled func
list-all-chunks                         system   compiled func
list-all-classes                        system   compiled func
list-all-instances                      system   compiled func
list-all-packages                       lisp     compiled func
list-all-references                     system   compiled func
list-all-special-bindings               system   compiled func
list-delete                             lisp     compiled func
        (lst n) delete nth element of lst
list-dimensions                         lisp     compiled func
        (list)
list-insert                             lisp     compiled func
        insert item as the pos'th element in list.
if pos is bigger than the length of list, item is nconc'ed at the tail
list-length                             lisp     compiled func
list-module-initializers                SYSTEM   compiled func
list-symbols                            lisp     compiled func
        (pred pkgs)
list-visuals                            x        compiled func
        (&optional (screen 0))
listen                                  unix     compiled func
listextensions                          x        compiled func
listfonts                               x        compiled func
listfontswithinfo                       x        compiled func
listhosts                               x        compiled func
listinstalledcolormaps                  x        compiled func
listp                                   lisp     compiled func
listproperties                          x        compiled func
load                                    lisp     compiled func
        (fname &key (quote-file nil) (entry (concatenate string "___" (pathname-name fname))) (symbol-input) (symbol-output "") (ld-option "") (verbose *load-verbose*) (print nil) ((:package packag) *package*))
load-files                              lisp     compiled func
        (&rest files)
load-foreign                            lisp     compiled func
        (file)
load-help                               help     compiled func
        (helpfile)
load-library                            lisp     compiled func
        (file modules &rest load-args)
load-module-file-name                   LISP     compiled func
        (lm)
loadfont                                x        compiled func
loadqueryfont                           x        compiled func
localtime                               unix     compiled func
lockf                                   UNIX     compiled func
log                                     lisp     compiled func
logand                                  lisp     compiled func
logandc1                                lisp     compiled func
        (x y)
logandc2                                lisp     compiled func
        (x y)
logbitp                                 lisp     compiled func
logeqv                                  lisp     compiled func
logior                                  lisp     compiled func
lognand                                 lisp     compiled func
lognor                                  lisp     compiled func
lognot                                  lisp     compiled func
logtest                                 lisp     compiled func
logxor                                  lisp     compiled func
look-up                                 image    compiled func
look-up*                                image    compiled func
        (src dest luts &aux p)
look-up2                                image    compiled func
        (src dest lut1 lut2)
lookupcolor                             x        compiled func
lookupkeysym                            x        compiled func
lookupstring                            x        compiled func
loop                                    lisp     compiled macro
        (&rest forms)
lower-case-p                            lisp     compiled func
lowerwindow                             x        compiled func
ls-l                                    X        compiled func
        (&optional (dir "."))
lseek                                   unix     compiled func
lu-decompose                            lisp     compiled func
lu-determinant                          lisp     compiled func
lu-solve                                lisp     compiled func
m*                                      lisp     compiled func
m**                                     lisp     compiled func
        (m1 m2 &rest more-matrices &aux mat)
macro-function                          lisp     compiled func
        (s)
macroexpand                             lisp     compiled func
        (form)
macroexpand2                            lisp     compiled func
make-array                              lisp     compiled func
        (dim &key (element-type vector) (fill-pointer nil) (displaced-to nil) (displaced-index-offset 0) (adjustable nil) (initial-contents nil) (initial-element nil) &aux entity a)
make-big-bounding-box                   geometry compiled func
        nil
make-bitmap-from-data                   X        compiled func
        (width height data &key (foreground *fg-pixel*) (background *bg-pixel*))
make-body-from-vertices                 geometry compiled func
        (face-vertices &optional (klass *body-class*))
make-bounding-box                       geometry compiled func
        (vlist &optional (tolerance *contact-threshold*))
make-broadcast-stream                   lisp     compiled func
        (&rest streams &aux dests)
make-cascoords                          geometry compiled func
        (&rest initargs)
make-circle                             GEOMETRY compiled func
        (rad &rest args)
make-class                              lisp     compiled func
        (name &key (super object) (include object) (printer nil) (constructor nil) (predicate nil) (copier nil) ((:metaclass metaklass) nil) (element-type nil) (size -1) ((:slots varlist) nil) (documentation nil))
make-cleared-pixmap                     x        compiled func
        (width &optional (height width) (pixel *bg-pixel*))
make-client-socket-stream               lisp     compiled func
        (address &optional (timeout 5) (size 512))
make-color-gc                           x        compiled func
        (fg [bg cmap]) fg and bg may be color names such as red.
cmap is defaulted to x:*color-map*.
make-colors                             image    compiled func
        (default-color-map)
make-cone                               geometry compiled func
        make-cone (top bottoms &key segments color name)
make-conic-side-faces                   GEOMETRY compiled func
        (top-vertex bottom-vertices &optional index)
make-coords                             geometry compiled func
        (&rest initargs)
make-crossing-edges                     GEOMETRY compiled func
        (intfaces1 intfaces2 first side)
make-cube                               geometry compiled func
        MAKE-CUBE x y z &key color name
make-cylinder                           geometry compiled func
        MAKE-CYLINDER radius height (:segments 12) (:circumscribed nil) :color :name
make-dgram-socket                       lisp     compiled func
        (addr)
make-dodecahedron                       geometry compiled func
        (&optional (radius 1.0))
make-edge-segments                      GEOMETRY compiled func
        (intersects target-body side)
make-edges-from-vertices                GEOMETRY compiled func
        (verts &aux lines)
make-equilevel-lut                      image    compiled func
        (levels &optional (size 256))
make-face-from-coplanar-vertices        geometry compiled func
        (p1 p2 p3 s)
make-face-from-edge-loop                GEOMETRY compiled func
        (edges)
make-face-from-vertices                 geometry compiled func
        ARG = (vertices)
vertices= list of (#f(x y z) edge1 edge2 ...)
make-face-image                         GEOMETRY compiled func
        (f edge-images-htab viewpoint)
make-foreign-code                       lisp     compiled func
        (fentry &optional param (result :integer) (fmod (system::sysmod)))
make-foreign-string                     lisp     compiled func
        (addr size)
make-gc-from-pixmap                     X        compiled func
        (pixmap)
make-gdome                              geometry compiled func
        MAKE-GDOME hedron
hedron is an icosahedron or a gdome of lower level
make-gray-gc                            X        compiled func
        (gray)
make-gray-pixmap                        X        compiled func
        (gray)
make-hash-table                         lisp     compiled func
        (&key (size 10) (test #'eq) (rehash-size 1.7) (hash #'sxhash) (not-found nil))
make-icosahedron                        geometry compiled func
        MAKE-ICOSAHEDRON &optional (radius 1.0)
make-instance                           lisp     compiled func
        (klass &rest args)
make-line                               geometry compiled func
        (p n)
make-lines                              GEOMETRY compiled func
        (point-pairs)
make-list                               lisp     compiled func
        (leng &key initial-element)
make-matrix                             lisp     compiled func
        (row column &optional init)
make-msgq-input-stream                  lisp     compiled func
        (k &optional (size 128))
make-msgq-output-stream                 lisp     compiled func
        (k &optional (size 128))
make-package                            lisp     compiled func
        (pkgname &key (nicknames) (use (list "LISP")))
make-pathname                           lisp     compiled func
        (&key host device directory name type version defaults)
make-pixmap-from-bitmap-data            X        compiled func
        (width height data &key (foreground *fg-pixel*) (background *bg-pixel*))
make-pixmaps                            x        compiled func
        (n &key (size 500) (width size) (height width) (system:gc *blackgc*))
make-plane                              geometry compiled func
        (&key (normal (float-vector 0 0 1)) (point (float-vector 0 0 0)) (distance nil))
make-polygon                            geometry compiled func
        (&rest points)
make-polygon2d                          geometry compiled func
        (&rest vertices)
make-prism                              geometry compiled func
        ARGS = (bottom-points sweep-vector 
	&key color name primitive)
make-rectangle                          geometry compiled func
        (xsize ysize)
make-sequence                           lisp     compiled func
        (type size &key initial-element)
make-server-socket-stream               lisp     compiled func
        (sockport &optional (size 512))
make-side-faces                         GEOMETRY compiled func
        (tops bottoms &optional index)
make-socket-address                     lisp     compiled func
        (&key (domain af_inet) ((:pathname path)) (service "echo") (port (unix:getservbyname service)) (host (unix:getenv "HOST")) protocol)
make-socket-port                        lisp     compiled func
        (addr)
make-solid-of-revolution                geometry compiled func
        ARGS = (points &key segments color name)
make-string                             lisp     compiled func
        (size)
make-string-input-stream                lisp     compiled func
        (s &optional start end)
make-string-output-stream               lisp     compiled func
        (&optional (s 64) start end)
make-symbol                             lisp     compiled func
        (str &optional (pkg *package*))
make-textwindow-stream                  X        compiled func
        (xwin)
make-topleft-edge-polygon               X        compiled func
        (x y w h b)
make-torus                              geometry compiled func
        ARGS = points &key segments color name
make-two-way-stream                     lisp     compiled func
        (in out)
make-vertex-edge-htab                   GEOMETRY compiled func
        (bodfacs)
make-ximage                             image    compiled func
        (rawimg &optional (lut *gray32*))
make-xwindow                            x        compiled func
        (&rest args)
makepackage                             SYSTEM   compiled func
makunbound                              lisp     compiled func
malloc                                  unix     compiled func
map                                     lisp     compiled func
map-file                                lisp     compiled func
        (fname &key (direction :input) (offset 0) (length nil) (protection nil) (share t) (private nil) (address 0))
mapc                                    lisp     compiled func
mapcan                                  lisp     compiled func
mapcar                                  lisp     compiled func
mapcon                                  lisp     compiled func
        (func arg &rest more-args &aux result)
maphash                                 lisp     compiled func
        (func hashtab)
maplist                                 lisp     compiled func
        (func arg &rest more-args &aux result)
mapraised                               x        compiled func
mapsubwindows                           x        compiled func
mapwindow                               x        compiled func
maskevent                               x        compiled func
matchvisualinfo                         x        compiled func
matrix                                  lisp     compiled func
        (&rest seq)
matrix-column                           lisp     compiled func
        (mat col)
matrix-row                              lisp     compiled func
        (mat row)
matrixp                                 lisp     compiled func
        (obj)
max                                     lisp     compiled func
maxcmapsofscreen                        x        compiled func
maxindex                                geometry compiled func
        (fv)
median-image                            IMAGE    compiled func
member                                  lisp     compiled func
        (item list &key key test test-not)
member-if                               lisp     compiled func
        (test list &key (key #'identity))
member-if-not                           lisp     compiled func
        (test list &key (key #'identity))
memory-report                           system   compiled func
memq                                    lisp     compiled func
merge                                   lisp     compiled func
        (result-class seq1 seq2 pred &key (key #'identity))
merge-aligned-faces                     GEOMETRY compiled func
        (face1 face2 seg1 seg2)
merge-contacting-faces                  GEOMETRY compiled func
        (face1 face2 seg1 seg2)
merge-edges-if-colinear                 GEOMETRY compiled func
        (e1 e2 seg1 seg2)
merge-list                              lisp     compiled func
        (list1 list2 pred key &aux result p1 e1 e2 pp1 pp2)
merge-pathnames                         lisp     compiled func
        (pathnam &optional (defaults *default-pathname-defaults*))
merge-rgb                               IMAGE    compiled func
merge-segments                          GEOMETRY compiled func
        (segments s2 s3)
metaclass-name                          lisp     compiled func
        (x)
metaclass-vars                          lisp     compiled func
        (x)
method-cache                            SYSTEM   compiled func
method-list                             lisp     compiled func
        (&optional (file t) (verbose nil) &rest classes)
methods                                 lisp     compiled func
        args=&optional name
finds method-class pair which include name as substring of the method name
midpoint                                lisp     compiled func
min                                     lisp     compiled func
mincmapsofscreen                        x        compiled func
minimal-box                             lisp     compiled func
minusp                                  lisp     compiled func
        (n)
mkdir                                   unix     compiled func
mknod                                   unix     compiled func
mod                                     lisp     compiled func
more                                    lisp     compiled macro
        (form)
moveresizewindow                        x        compiled func
movewindow                              x        compiled func
msgctl                                  unix     compiled func
msgget                                  unix     compiled func
msgrcv                                  unix     compiled func
msgsnd                                  unix     compiled func
multiple-value-bind                     lisp     compiled macro
        (vlist init &rest forms)
multiple-value-setq                     lisp     compiled macro
        (vlist form)
namestring                              lisp     compiled func
        (p)
nbutlast                                lisp     compiled func
nconc                                   lisp     compiled func
new-history                             lisp     compiled func
        (n)
newmodifiermap                          x        compiled func
newstack                                system   compiled func
next-event                              x        compiled func
        nil
next-special-index                      SYSTEM   compiled func
nextevent                               x        compiled func
nextrequest                             x        compiled func
non-coplanar-fe-relation                GEOMETRY compiled func
        (face1 edge2 &optional (tolerance *coplanar-threshold*))
noop                                    x        compiled func
norm                                    lisp     compiled func
norm2                                   lisp     compiled func
normalize-vector                        lisp     compiled func
not                                     lisp     compiled func
nreconc                                 lisp     compiled func
        (x y)
nreverse                                lisp     compiled func
nstring-downcase                        lisp     compiled func
        (str &key (start 0) (end (length str)))
nstring-upcase                          lisp     compiled func
        (str &key (start 0) (end (length str)))
nsubst                                  lisp     compiled func
nsubstitute                             lisp     compiled func
        (newitem olditem seq &key (start 0) (end (length seq)) (test #'eq) (test-not nil) (count 1000000) (key #'identity))
nsubstitute-if                          lisp     compiled func
        (newitem pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
nsubstitute-if-not                      lisp     compiled func
        (newitem pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
nth                                     lisp     compiled func
nthcdr                                  lisp     compiled func
ntohs                                   UNIX     compiled func
null                                    lisp     compiled func
null-string-p                           lisp     compiled func
        (s)
numberp                                 lisp     compiled func
n^2                                     geometry compiled func
        (n)
object-file-p                           lisp     compiled func
        (path)
object-size                             system   compiled func
object-variable-names                   COMPILER compiled func
        (klass-name)
object-variable-type                    COMPILER compiled func
        (klass var)
oddp                                    lisp     compiled func
        (n)
offsetregion                            x        compiled func
on-z-axis-p                             GEOMETRY compiled macro
        (v)
open                                    lisp     compiled func
        (file &key (direction :input) (if-exists :new-version) (if-does-not-exist 'default) (permission 420) (buffer-size 512))
open-server                             lisp     compiled func
        (&optional (port 2048) (remote-func #'reval))
opendisplay                             x        compiled func
openfile                                system   compiled func
or                                      lisp     compiled func
orthogonally-visible-faces              GEOMETRY compiled func
        (abody vnormal &aux vfaces ifaces)
output-stream-p                         lisp     compiled func
        (obj)
ovafp                                   COMPILER compiled func
        (form)
package-name                            lisp     compiled func
        (pkg)
package-nicknames                       lisp     compiled func
        (pkg)
package-stats                           lisp     compiled func
        (&optional (s t) &aux use used)
package-use-list                        lisp     compiled func
        (pkg)
package-used-by-list                    lisp     compiled func
        (pkg)
packagep                                lisp     compiled func
        (pkg)
pairlis                                 lisp     compiled func
        (l1 l2 &optional alist)
parse-namestring                        lisp     compiled func
        (pn)
parse-url                               lisp     compiled func
        (url-string)
parsecolor                              x        compiled func
parsegeometry                           x        compiled func
path-list                               lisp     compiled func
        (&optional (pstring (unix:getenv "PATH")))
pathname                                lisp     compiled func
        (p)
pathname-directory                      lisp     compiled func
        (s)
pathname-name                           lisp     compiled func
        (s)
pathname-type                           lisp     compiled func
        (s)
pathnamep                               lisp     compiled func
        (p)
pause                                   unix     compiled func
peek                                    system   compiled func
peek-char                               lisp     compiled func
peekevent                               x        compiled func
peekifevent                             x        compiled func
pending                                 x        compiled func
permalloc                               x        compiled func
pf                                      lisp     compiled macro
        (func &optional (file *standard-output*))
pfuncs                                  lisp     compiled func
        (file &optional (funcs (functions)) (verbose nil))
pipe                                    unix     compiled func
piped-fork                              lisp     compiled func
        (&optional (exec) &rest args)
planesofscreen                          x        compiled func
plusp                                   lisp     compiled func
        (n)
pod-address                             lisp     compiled func
        (x)
pointinregion                           x        compiled func
poke                                    system   compiled func
polygon-in-contact-p                    GEOMETRY compiled func
        (poly1 poly2)
polygonregion                           x        compiled func
pop                                     lisp     compiled macro
        (s)
popen                                   lisp     compiled func
        (exec &rest args)
position                                lisp     compiled func
        (item seq &key (start 0) (end (length seq)) (test #'eq) (test-not nil) (key #'identity))
position-if                             lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (key #'identity))
position-if-not                         lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (key #'identity))
pp-method                               lisp     compiled func
        (cls selector &optional (file *standard-output*))
pparg                                   LISP     compiled func
        (sexp pltn platen file)
pprint                                  lisp     compiled func
        (sexp &optional (file *standard-output*) (tab 0) (platen 75))
pprint-array                            LISP     compiled func
        (a strm tab)
pprint-file                             lisp     compiled func
        (obj file)
pprint1                                 LISP     compiled func
        (sexp file pltn platen)
primitive-body-p                        geometry compiled func
        (x)
prin1                                   lisp     compiled func
prin1-to-string                         lisp     compiled func
        (x &optional (l 16))
princ                                   lisp     compiled func
princ-to-string                         lisp     compiled func
        (x &optional (l 16))
print                                   lisp     compiled func
print-class                             HELP     compiled func
        (item param-list hs)
print-event                             X        compiled func
        (event)
print-history                           lisp     compiled func
        (&optional (strm *terminal-io*) &aux h)
print-item                              HELP     compiled func
        (cmd item param-list hs)
print-item2                             HELP     compiled func
        (cmd item param-list hs)
print-size                              lisp     compiled func
probe-file                              lisp     compiled func
        (path)
process-event                           X        compiled func
        (event)
proclaim                                lisp     compiled func
proclaimed-global-p                     COMPILER compiled func
        (var)
proclaimed-special-p                    COMPILER compiled func
        (var)
prog                                    lisp     compiled macro
        (vars &rest body)
prog*                                   lisp     compiled macro
        (vars &rest body)
prog1                                   lisp     compiled macro
        (&rest args)
progn                                   lisp     compiled func
project-shadow                          geometry compiled func
        (bod pln)
project-shadow1                         geometry compiled func
        (bod pln)
protocolrevision                        x        compiled func
protocolversion                         x        compiled func
provide                                 lisp     compiled func
        (module-name &rest version-info)
psetq                                   lisp     compiled macro
        (&rest varvals)
ptimes                                  unix     compiled func
punch-hole                              GEOMETRY compiled func
        (profile hole-polygon)
push                                    lisp     compiled macro
        (item place)
pushnew                                 lisp     compiled macro
        (item place &key test test-not key)
putbackevent                            x        compiled func
putenv                                  unix     compiled func
putimage                                x        compiled func
putpixel                                x        compiled func
putprop                                 lisp     compiled func
pwd                                     lisp     compiled func
        nil
px                                      lisp     compiled func
        (x &optional (strm t))
qlength                                 x        compiled func
querybestcursor                         x        compiled func
querybestsize                           x        compiled func
querybeststipple                        x        compiled func
querybesttile                           x        compiled func
querycolor                              x        compiled func
querycolors                             x        compiled func
queryextension                          x        compiled func
queryfont                               x        compiled func
querykeymap                             x        compiled func
querypointer                            x        compiled func
querytextextents                        x        compiled func
querytextextents16                      x        compiled func
querytree                               x        compiled func
quickhull                               geometry compiled func
        (s &optional (normal #f(0.0 0.0 1.0)))
quickhull-left                          geometry compiled func
        (s l r normal)
quickhull-right                         geometry compiled func
        (s l r normal)
quit                                    lisp     compiled func
quote                                   lisp     compiled func
quoted-symbolp                          COMPILER compiled func
        (x)
rad2deg                                 lisp     compiled func
        (rad)
raisewindow                             x        compiled func
random                                  lisp     compiled func
random-normalized-vector                geometry compiled func
        nil
random-vector                           geometry compiled func
        (&optional (range 1.0))
random-vector2                          GEOMETRY compiled func
        (&optional (s (random 1.0)))
random-vectors                          geometry compiled func
        (n r)
rassoc                                  lisp     compiled func
        (item alist)
raw-count                               SYSTEM   compiled func
raw-delete                              SYSTEM   compiled func
raw-fill                                SYSTEM   compiled func
raw-find                                SYSTEM   compiled func
raw-nsubstitute                         SYSTEM   compiled func
raw-position                            SYSTEM   compiled func
raw-remove-duplicates                   SYSTEM   compiled func
raw-substitute                          SYSTEM   compiled func
read                                    lisp     compiled func
read-aref                               LISP     compiled func
        (file &optional char)
read-array                              lisp     compiled func
        (strm char num)
read-ascii-pbm                          IMAGE    compiled func
        (f img width height)
read-ascii-pgm                          IMAGE    compiled func
        (f img width height)
read-ascii-ppm                          IMAGE    compiled func
        (f rgb width height)
read-backquote                          LISP     compiled func
        (file &optional ch)
read-binary                             LISP     compiled func
        (f n ch)
read-binary-file                        lisp     compiled func
        (fname)
read-binary-pbm                         IMAGE    compiled func
        (f img width height)
read-binary-pgm                         IMAGE    compiled func
        (f img width height)
read-binary-ppm                         IMAGE    compiled func
        (f rgb width height)
read-bit-vector                         LISP     compiled func
        (f n ch)
read-buffer                             lisp     compiled func
        (fname buf &optional (len (length buf)))
read-char                               lisp     compiled func
read-comma                              LISP     compiled func
        (file &optional ch)
read-degree                             LISP     compiled func
        (strm char num)
read-delimited-list                     lisp     compiled func
read-file                               lisp     compiled func
        (file)
read-float-array                        lisp     compiled func
        (strm char num)
read-from-string                        lisp     compiled func
        (s &optional (eof-error-p t) (eof-value nil))
read-integer-array                      lisp     compiled func
        (strm char num)
read-line                               lisp     compiled func
read-lines                              lisp     compiled func
        (infile)
read-list-from-line                     lisp     compiled func
        (&optional (s *standard-input*) (eof (gensym)))
read-lists                              lisp     compiled func
        (file-name)
read-pathname                           LISP     compiled func
        (f n ch)
read-pbm-token                          IMAGE    compiled func
        (f eof)
read-pnm                                image    compiled func
        (f &optional buf0)
read-pnm-file                           image    compiled func
        (file &optional buf)
read-radian                             LISP     compiled func
        (strm char num)
read-raw-image                          IMAGE    compiled func
        read a file of raw pixel data
read-strings                            lisp     compiled func
        (infile)
read-tex                                HELP     compiled func
readbitmapfile                          x        compiled func
readdir                                 UNIX     compiled func
readtablep                              lisp     compiled func
        (x)
read_sharp_backslash                    LISP     compiled func
        (strm char num)
rebindkeysym                            x        compiled func
reclaim                                 system   compiled func
reclaim-tree                            system   compiled func
recolorcursor                           x        compiled func
rectinregion                            x        compiled func
recvfrom                                unix     compiled func
reduce                                  lisp     compiled func
        (func seq &key (start 0) (end (length seq)) from-end initial-value)
refresh-line                            lisp     compiled func
        (str start end)
refreshkeyboardmapping                  x        compiled func
remhash                                 lisp     compiled func
        (key htab)
remote-error                            lisp     compiled func
        (code msg1 form &optional (msg2))
remove                                  lisp     compiled func
        (item seq &key (start 0) (end (length seq)) (test #'eq) (test-not nil) (count 1000000) (key #'identity))
remove-colinears-from-circuit           geometry compiled func
        (circuit)
remove-duplicates                       lisp     compiled func
        (seq &key (test #'eq) (test-not) (key #'identity) (start 0) (end 1000000))
remove-if                               lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
remove-if-not                           lisp     compiled func
        (pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
remove-inner-loop                       GEOMETRY compiled func
        (edge-loop vnormal)
remove-non-overlapping-border           GEOMETRY compiled func
        (face1 face2 colinears)
removefromsaveset                       x        compiled func
removehost                              x        compiled func
removehosts                             x        compiled func
remprop                                 lisp     compiled func
        (sym attr)
rename                                  unix     compiled func
rename-package                          lisp     compiled func
        (pkg new-name &optional new-nicks)
rep1                                    LISP     compiled func
        (repstream eof local-bindings)
reparentwindow                          x        compiled func
replace                                 lisp     compiled func
        (dest src &key (start1 0) (end1 (length dest)) (start2 0) (end2 (length src)))
replace-key-arg                         X        compiled func
        (key val args)
replace-matrix                          lisp     compiled func
        (dest src)
replace-object                          lisp     compiled func
reploop                                 lisp     compiled func
        (prompt &optional (repstream *terminal-io*) (ttyp (unix:isatty repstream)))
reploop-non-select                      LISP     compiled func
        (prompt &optional (repstream *terminal-io*) (ttyp (unix:isatty repstream)))
reploop-select                          LISP     compiled func
        (prompt &optional (repstream *terminal-io*) (ttyp (unix:isatty repstream)))
repsel                                  LISP     compiled func
        (repstream prompt eof ttyp local-bindings)
repwin                                  SYSTEM   lambda   func
        (system::port &optional (system::host (unix:getenv HOST)))
repwin                                  X        compiled func
        nil
require                                 lisp     compiled func
        (module-name &optional path)
resend                                  lisp     compiled func
        (obj mesg)
reset                                   lisp     compiled func
        (&optional (n 0))
reset-readtable                         system   compiled func
reset-stream                            lisp     compiled func
        (s)
resetscreensaver                        x        compiled func
resizewindow                            x        compiled func
rest                                    lisp     compiled func
restackwindows                          x        compiled func
return                                  lisp     compiled macro
return-from                             lisp     compiled func
reval                                   lisp     compiled func
        (s)
reverse                                 lisp     compiled func
rgb-to-hls                              image    compiled func
rgb2hls                                 geometry compiled func
        (red green blue &optional (rgb 255.0))
right-points                            geometry compiled func
        (points p1 p2 normal)
rightmost-point                         geometry compiled func
        (vertices p1 p2 normal)
rmdir                                   unix     compiled func
rmgetfiledatabase                       x        compiled func
rmgetresource                           x        compiled func
rmgetstringdatabase                     x        compiled func
rminitialize                            x        compiled func
rmmergedatabases                        x        compiled func
rmparsecommand                          x        compiled func
rmputfiledatabase                       x        compiled func
rmputlineresource                       x        compiled func
rmputresource                           x        compiled func
rmputstringresource                     x        compiled func
rmqgetresource                          x        compiled func
rmqgetsearchlist                        x        compiled func
rmqgetsearchresource                    x        compiled func
rmqputresource                          x        compiled func
rmqputstringresource                    x        compiled func
rmquarktostring                         x        compiled func
rmstringtobindingquarklist              x        compiled func
rmstringtoquark                         x        compiled func
rmstringtoquarklist                     x        compiled func
rmuniquequark                           x        compiled func
room                                    system   compiled func
room                                    system   compiled func
rootwindow                              x        compiled func
rootwindowofscreen                      x        compiled func
rotate-list                             lisp     compiled func
        (l)
rotate-matrix                           lisp     compiled func
rotate-vector                           lisp     compiled func
rotate-vertices                         GEOMETRY compiled func
        (vertex count angle axis)
rotatebuffers                           x        compiled func
rotatewindowproperties                  x        compiled func
rotation-angle                          lisp     compiled func
rotation-matrix                         lisp     compiled func
round                                   lisp     compiled func
row-major-aref                          lisp     compiled func
        (a index)
rplaca                                  lisp     compiled func
rplaca2                                 lisp     compiled func
rplacd                                  lisp     compiled func
rplacd2                                 lisp     compiled func
rpy-angle                               lisp     compiled func
rpy-matrix                              lisp     compiled func
        RPY-MATRIX (az ay ax) creates a new rotation matrix which has been 
rotated ax radian around x-axis in WORLD, ay radian around y-axis in
WORLD, and az radian around z axis in WORLD, in this order.
These angles can be extracted by the RPY-ANGLE function.
runtime                                 unix     compiled func
runtime                                 unix     compiled func
save                                    system   compiled func
save                                    system   compiled func
savecontext                             x        compiled func
sbcount                                 SYSTEM   compiled func
sbit                                    lisp     compiled func
sbrk                                    UNIX     compiled func
scale                                   lisp     compiled func
scale-matrix                            lisp     compiled func
        (s m &optional (result (copy-matrix m)))
schar                                   lisp     compiled func
screencount                             x        compiled func
screenofdisplay                         x        compiled func
second                                  lisp     compiled func
select                                  unix     compiled func
select-read-fd                          unix     compiled func
select-stream                           lisp     compiled func
        SELECT-STREAM stream-list [timeout 0.0]
selectinput                             x        compiled func
send                                    lisp     compiled func
send*                                   lisp     compiled macro
        (&rest msgs)
send-all                                lisp     compiled func
        (receivers &rest mesg)
send-if-found                           lisp     compiled func
send-lexpr                              lisp     compiled macro
        (target selector &rest msgs)
send-message                            lisp     compiled func
send-msg                                lisp     compiled func
send-super                              lisp     compiled macro
        (selector &rest msgs)
send-super*                             lisp     compiled macro
        (&rest msgs)
send-super-lexpr                        lisp     compiled macro
        (selector &rest msgs)
sendevent                               x        compiled func
sendto                                  unix     compiled func
sequential-file-name                    lisp     compiled func
        (head num extension &optional (digits 4))
servervendor                            x        compiled func
set                                     lisp     compiled func
set-c-int                               X        compiled func
        (lisp::s lisp::i &optional lisp::val)
set-c-int-integer91                     X        compiled func
        (lisp::s lisp::i lisp::val)
set-c-long                              X        compiled func
        (lisp::s lisp::i &optional lisp::val)
set-c-long-long78                       X        compiled func
        (lisp::s lisp::i lisp::val)
set-contour-intersections               GEOMETRY compiled func
        (contour-images)
set-difference                          lisp     compiled func
        (list1 list2 &key (test #'eq) (test-not) (key #'identity))
set-dispatch-macro-character            lisp     compiled func
set-exclusive-or                        lisp     compiled func
        (list1 list2 &key (test #'eq) (test-not) (key #'identity))
set-gcvalues-arc-mode                   X        compiled func
        (lisp::s lisp::val)
set-gcvalues-background                 X        compiled func
        (lisp::s lisp::val)
set-gcvalues-cap-style                  X        compiled func
        (lisp::s lisp::val)
set-gcvalues-clip-mask                  X        compiled func
        (lisp::s lisp::val)
set-gcvalues-clip-x-origin              X        compiled func
        (lisp::s lisp::val)
set-gcvalues-clip-y-origin              X        compiled func
        (lisp::s lisp::val)
set-gcvalues-dash-offset                X        compiled func
        (lisp::s lisp::val)
set-gcvalues-dashes                     X        compiled func
        (lisp::s lisp::val)
set-gcvalues-fill-rule                  X        compiled func
        (lisp::s lisp::val)
set-gcvalues-fill-style                 X        compiled func
        (lisp::s lisp::val)
set-gcvalues-font                       X        compiled func
        (lisp::s lisp::val)
set-gcvalues-foreground                 X        compiled func
        (lisp::s lisp::val)
set-gcvalues-function                   X        compiled func
        (lisp::s lisp::val)
set-gcvalues-graphics-exposures         X        compiled func
        (lisp::s lisp::val)
set-gcvalues-join-style                 X        compiled func
        (lisp::s lisp::val)
set-gcvalues-line-style                 X        compiled func
        (lisp::s lisp::val)
set-gcvalues-line-width                 X        compiled func
        (lisp::s lisp::val)
set-gcvalues-plane-mask                 X        compiled func
        (lisp::s lisp::val)
set-gcvalues-stipple                    X        compiled func
        (lisp::s lisp::val)
set-gcvalues-subwindow-mode             X        compiled func
        (lisp::s lisp::val)
set-gcvalues-tile                       X        compiled func
        (lisp::s lisp::val)
set-gcvalues-ts-x-origin                X        compiled func
        (lisp::s lisp::val)
set-gcvalues-ts-y-origin                X        compiled func
        (lisp::s lisp::val)
set-macro-character                     lisp     compiled func
set-matrix-column                       lisp     compiled func
        (mat col values)
set-matrix-row                          lisp     compiled func
        (mat row values)
set-non-contour-intersections           GEOMETRY compiled func
        (non-contour-images contour-images)
set-original-face                       GEOMETRY compiled func
        (newbody)
set-setwindowattributes-background_pixelX        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-backing_pixel   X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-backing_planes  X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-backing_store   X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-bit_gravity     X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-border_pixel    X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-border_pixmap   X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-colormap        X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-cursor          X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-do_not_propagate_maskX        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-event_mask      X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-override_redirectX        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-pixmap          X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-save_under      X        compiled func
        (lisp::s lisp::val)
set-setwindowattributes-win_gravity     X        compiled func
        (lisp::s lisp::val)
set-syntax-from-char                    lisp     compiled func
        (to-char from-char &optional (to-readtable *readtable*) (from-readtable *default-readtable*))
set-windowattributes-all_event_masks    X        compiled func
        (lisp::s lisp::val)
set-windowattributes-backing_pixel      X        compiled func
        (lisp::s lisp::val)
set-windowattributes-backing_planes     X        compiled func
        (lisp::s lisp::val)
set-windowattributes-backing_store      X        compiled func
        (lisp::s lisp::val)
set-windowattributes-bit_gravity        X        compiled func
        (lisp::s lisp::val)
set-windowattributes-border_width       X        compiled func
        (lisp::s lisp::val)
set-windowattributes-class              X        compiled func
        (lisp::s lisp::val)
set-windowattributes-colormap           X        compiled func
        (lisp::s lisp::val)
set-windowattributes-depth              X        compiled func
        (lisp::s lisp::val)
set-windowattributes-do_not_propagate_maskX        compiled func
        (lisp::s lisp::val)
set-windowattributes-height             X        compiled func
        (lisp::s lisp::val)
set-windowattributes-map_installed      X        compiled func
        (lisp::s lisp::val)
set-windowattributes-map_state          X        compiled func
        (lisp::s lisp::val)
set-windowattributes-override_redirect  X        compiled func
        (lisp::s lisp::val)
set-windowattributes-root               X        compiled func
        (lisp::s lisp::val)
set-windowattributes-save_under         X        compiled func
        (lisp::s lisp::val)
set-windowattributes-screen             X        compiled func
        (lisp::s lisp::val)
set-windowattributes-visual             X        compiled func
        (lisp::s lisp::val)
set-windowattributes-width              X        compiled func
        (lisp::s lisp::val)
set-windowattributes-win_gravity        X        compiled func
        (lisp::s lisp::val)
set-windowattributes-x                  X        compiled func
        (lisp::s lisp::val)
set-windowattributes-y                  X        compiled func
        (lisp::s lisp::val)
set-windowattributes-your_event_mask    X        compiled func
        (lisp::s lisp::val)
set-xcolor-blue                         X        compiled func
        (lisp::s lisp::val)
set-xcolor-flags                        X        compiled func
        (lisp::s lisp::val)
set-xcolor-green                        X        compiled func
        (lisp::s lisp::val)
set-xcolor-pad                          X        compiled func
        (lisp::s lisp::val)
set-xcolor-pixel                        X        compiled func
        (lisp::s lisp::val)
set-xcolor-red                          X        compiled func
        (lisp::s lisp::val)
set-xevent-alt-state                    X        compiled func
        (lisp::s lisp::val)
set-xevent-detail                       X        compiled func
        (lisp::s lisp::val)
set-xevent-display                      X        compiled func
        (lisp::s lisp::val)
set-xevent-focus                        X        compiled func
        (lisp::s lisp::val)
set-xevent-pad                          X        compiled func
        (lisp::s lisp::i &rest lisp::val)
set-xevent-root                         X        compiled func
        (lisp::s lisp::val)
set-xevent-same-screen                  X        compiled func
        (lisp::s lisp::val)
set-xevent-send-event                   X        compiled func
        (lisp::s lisp::val)
set-xevent-serial                       X        compiled func
        (lisp::s lisp::val)
set-xevent-state                        X        compiled func
        (lisp::s lisp::val)
set-xevent-subwindow                    X        compiled func
        (lisp::s lisp::val)
set-xevent-time                         X        compiled func
        (lisp::s lisp::val)
set-xevent-type                         X        compiled func
        (lisp::s lisp::val)
set-xevent-window                       X        compiled func
        (lisp::s lisp::val)
set-xevent-x                            X        compiled func
        (lisp::s lisp::val)
set-xevent-x-root                       X        compiled func
        (lisp::s lisp::val)
set-xevent-y                            X        compiled func
        (lisp::s lisp::val)
set-xevent-y-root                       X        compiled func
        (lisp::s lisp::val)
set-ximage                              X        compiled func
        (ximage data width height &optional (visual *visual*) (depth (visual-depth visual)) (bitunit depth))
setaccesscontrol                        x        compiled func
setafterfunction                        x        compiled func
setarcmode                              x        compiled func
setbackground                           x        compiled func
setbit                                  lisp     compiled func
setbreak                                lisp     compiled func
        (func)
setchar                                 lisp     compiled func
setclasshint                            x        compiled func
setclipmask                             x        compiled func
setcliporigin                           x        compiled func
setcliprectangles                       x        compiled func
setclosedownmode                        x        compiled func
setcommand                              x        compiled func
setdashes                               x        compiled func
setelt                                  lisp     compiled func
seterrorhandler                         x        compiled func
setf                                    lisp     compiled macro
        (&rest rest)
setf-expand                             LISP     compiled func
        (l)
setf-expand-1                           LISP     compiled func
        (place newvalue)
setfillrule                             x        compiled func
setfillstyle                            x        compiled func
setfont                                 x        compiled func
setfontpath                             x        compiled func
setforeground                           x        compiled func
setfunc                                 LISP     compiled func
setfunction                             x        compiled func
setgid                                  unix     compiled func
setgraphicsexposures                    x        compiled func
sethash                                 lisp     compiled func
        (key htab val)
seticonname                             x        compiled func
seticonsizes                            x        compiled func
setinputfocus                           x        compiled func
setioerrorhandler                       x        compiled func
setitimer                               unix     compiled func
setlineattributes                       x        compiled func
setmodifiermapping                      x        compiled func
setnormalhints                          x        compiled func
setpgrp                                 unix     compiled func
setplanemask                            x        compiled func
setpointermapping                       x        compiled func
setpriority                             unix     compiled func
setq                                    lisp     compiled func
setregion                               x        compiled func
setscreensaver                          x        compiled func
setselectionowner                       x        compiled func
setsizehints                            x        compiled func
setslot                                 lisp     compiled func
setstandardcolormap                     x        compiled func
setstandardproperties                   x        compiled func
setstate                                x        compiled func
setstipple                              x        compiled func
setsubwindowmode                        x        compiled func
settile                                 x        compiled func
settransientforhint                     x        compiled func
settsorigin                             x        compiled func
setuid                                  unix     compiled func
setwindowattributes-background_pixel    X        compiled func
        (lisp::s)
setwindowattributes-backing_pixel       X        compiled func
        (lisp::s)
setwindowattributes-backing_planes      X        compiled func
        (lisp::s)
setwindowattributes-backing_store       X        compiled func
        (lisp::s)
setwindowattributes-bit_gravity         X        compiled func
        (lisp::s)
setwindowattributes-border_pixel        X        compiled func
        (lisp::s)
setwindowattributes-border_pixmap       X        compiled func
        (lisp::s)
setwindowattributes-colormap            X        compiled func
        (lisp::s)
setwindowattributes-cursor              X        compiled func
        (lisp::s)
setwindowattributes-do_not_propagate_maskX        compiled func
        (lisp::s)
setwindowattributes-event_mask          X        compiled func
        (lisp::s)
setwindowattributes-override_redirect   X        compiled func
        (lisp::s)
setwindowattributes-pixmap              X        compiled func
        (lisp::s)
setwindowattributes-save_under          X        compiled func
        (lisp::s)
setwindowattributes-win_gravity         X        compiled func
        (lisp::s)
setwindowbackground                     x        compiled func
setwindowbackgroundpixmap               x        compiled func
setwindowborder                         x        compiled func
setwindowborderpixmap                   x        compiled func
setwindowborderwidth                    x        compiled func
setwindowcolormap                       x        compiled func
setwmhints                              x        compiled func
setzoomhints                            x        compiled func
seventh                                 lisp     compiled func
        (x)
shadow                                  lisp     compiled func
        (sym &optional (pkg *package*))
shadow-intersection                     geometry compiled func
        (body1 body2 pln)
shrinkregion                            x        compiled func
sigaddset                               unix     compiled func
sigdelset                               unix     compiled func
sigint-handler                          lisp     compiled func
        (sig code)
sigio-handler                           lisp     compiled func
        (sig code)
signal                                  unix     compiled func
signum                                  lisp     compiled func
        (x)
sigprocmask                             unix     compiled func
simultaneous-equation                   lisp     compiled func
        (mat vec)
sin                                     lisp     compiled func
sinh                                    lisp     compiled func
sixth                                   lisp     compiled func
        (x)
skip-blank                              lisp     compiled func
        (s &optional (eof (gensym)))
sleep                                   unix     compiled func
slot                                    lisp     compiled func
socket                                  unix     compiled func
some                                    lisp     compiled func
        (pred arg &rest more-args &aux result)
sort                                    lisp     compiled func
sort-edges-by-face                      GEOMETRY compiled func
        (intlist)
spaces                                  lisp     compiled func
        (n &optional (file t))
special-form-p                          lisp     compiled func
        (s)
special-variables                       lisp     compiled func
        (special-variables [name] [pkgs ...])
collects symbols declared as special
split-rgb                               IMAGE    compiled func
sqrt                                    lisp     compiled func
srcload                                 system   compiled func
stat                                    unix     compiled func
step                                    lisp     compiled macro
        (form)
step-hook                               lisp     compiled func
        (form env)
storebuffer                             x        compiled func
storebytes                              x        compiled func
storecolor                              x        compiled func
storecolors                             x        compiled func
storename                               x        compiled func
storenamedcolor                         x        compiled func
streamp                                 lisp     compiled func
string                                  lisp     compiled func
        (x)
string-downcase                         lisp     compiled func
        (str &key (start 0) (end))
string-equal                            lisp     compiled func
        (str1 str2 &key (start1 0) (end1 100000000) (start2 0) (end2 100000000))
string-left-trim                        lisp     compiled func
        (bag str)
string-right-trim                       lisp     compiled func
        (bag str)
string-trim                             lisp     compiled func
        (bag str)
string-upcase                           lisp     compiled func
        (str &key (start 0) (end))
string<                                 lisp     compiled func
string<=                                lisp     compiled func
string=                                 lisp     compiled func
        (str1 str2 &key (start1 0) (end1 100000000) (start2 0) (end2 100000000))
string>                                 lisp     compiled func
string>=                                lisp     compiled func
stringeq                                lisp     compiled func
stringequal                             lisp     compiled func
stringp                                 lisp     compiled func
stringtokeysym                          x        compiled func
subclassp                               lisp     compiled func
subdivide-facet                         GEOMETRY compiled func
        (normal oldverts newverts)
subimage                                x        compiled func
subseq                                  lisp     compiled func
subsetp                                 lisp     compiled func
        (sub super &key key test test-not)
subst                                   lisp     compiled func
substitute                              lisp     compiled func
        (newitem olditem seq &key (start 0) (end (length seq)) (test #'eq) (test-not nil) (count 1000000) (key #'identity))
substitute-if                           lisp     compiled func
        (newitem pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
substitute-if-not                       lisp     compiled func
        (newitem pred seq &key (start 0) (end (length seq)) (count 1000000) (key #'identity))
substringp                              lisp     compiled func
        (sub str)
subtractregion                          x        compiled func
superassoc                              lisp     compiled func
superequal                              lisp     compiled func
supermember                             lisp     compiled func
svref                                   lisp     compiled func
svset                                   lisp     compiled func
swap-rgb                                image    compiled func
        (img &optional (step 3))
sxhash                                  lisp     compiled func
symbol-bound-value                      LISP     compiled func
symbol-function                         lisp     compiled func
symbol-name                             lisp     compiled func
        (sym)
symbol-package                          lisp     compiled func
        (sym)
symbol-plist                            lisp     compiled func
        (sym)
symbol-string                           lisp     compiled func
        (s)
symbol-value                            lisp     compiled func
symbolp                                 lisp     compiled func
sync                                    x        compiled func
synchronize                             x        compiled func
syserrlist                              unix     compiled func
sysmod                                  SYSTEM   compiled func
system                                  unix     compiled func
tagbody                                 lisp     compiled func
tan                                     lisp     compiled func
tanh                                    lisp     compiled func
tcgeta                                  unix     compiled func
tcgetattr                               unix     compiled func
tcgets                                  unix     compiled func
tcseta                                  unix     compiled func
tcsetaf                                 unix     compiled func
tcsetattr                               unix     compiled func
tcsetaw                                 unix     compiled func
tcsets                                  unix     compiled func
tcsetsf                                 unix     compiled func
tcsetsw                                 unix     compiled func
tektro                                  geometry compiled macro
        (file &rest forms)
tektro-clear                            geometry compiled func
        (&optional (port *tektro-port*))
tektro-showline                         geometry compiled func
        (x1 y1 x2 y2)
terpri                                  lisp     compiled func
textdots                                X        compiled func
        (str &optional (font font-courb12))
textextents                             x        compiled func
textextents16                           x        compiled func
textwidth                               x        compiled func
textwidth16                             x        compiled func
the                                     lisp     compiled func
third                                   lisp     compiled func
thread-error                            SYSTEM   lambda   func
        (system::code system::msg1 system::form &optional (system::msg2))
thread-eval                             SYSTEM   lambda   func
        (system::p1 system::p2)
thread-specials                         SYSTEM   compiled func
thread-top                              SYSTEM   lambda   func
        (system::s)
throw                                   lisp     compiled func
time                                    lisp     compiled macro
        (func &optional clear)
time-func                               lisp     compiled func
        (func)
timed-file-name                         lisp     compiled func
        (head extension &optional (dt (unix:localtime)))
timing                                  lisp     compiled macro
        (count &rest form)
toplevel-prompt                         lisp     compiled func
        (strm)
tprint                                  lisp     compiled func
        table-print obj tab [indent platen current-pos]
trace                                   lisp     compiled macro
        (&rest functions)
trace1                                  LISP     compiled func
        (name)
tracex                                  LISP     compiled func
        (name arglist)
transform                               lisp     compiled func
transform-coords                        geometry compiled func
        (c1 c2 &optional (c3 (let ((dim (send c1 :dimension))) (instance coordinates :newcoords (unit-matrix dim) (instantiate float-vector dim)))))
transform-coords*                       geometry compiled func
        (c1 c2 &rest clist &aux cresult)
transform-vector                        GEOMETRY compiled func
        (trans vec)
translatecoordinates                    x        compiled func
transpose                               lisp     compiled func
triangle                                geometry compiled func
        (triangle a b c [normal #f(0 0 1)])
a,b,c are floatvectors representing 2 or 3 dimensional points.
Normal is the normal vector of the plane on which a,b and c lie.
Triangle returns 2*area of a triangle constructed by a,b,c.
Triangle is positive if a,b,c turn counter-clockwise.
In other words, if triangle is positive, c locates at the
left hand side of line a-b, and b lies at the right side of ac.
triangle-normal                         geometry compiled func
        normal vector for the plane on which three points (a b c) lie.
true-string                             lisp     compiled func
        (s)
truename                                lisp     compiled func
        BUG: (truename "/a/") returns #P"/a/NIL"
truncate                                lisp     compiled func
tty-cooked                              lisp     compiled func
        (&optional (port 0))
tty-raw                                 lisp     compiled func
        (&optional (port 0))
txtload                                 SYSTEM   compiled func
        (fname &optional print)
uclose                                  unix     compiled func
unbinload                               SYSTEM   compiled func
unbreak                                 lisp     compiled func
        (func)
undefinecursor                          x        compiled func
ungrabbutton                            x        compiled func
ungrabkey                               x        compiled func
ungrabkeyboard                          x        compiled func
ungrabpointer                           x        compiled func
ungrabserver                            x        compiled func
unify-vertex                            GEOMETRY compiled func
        (edges)
uninstallcolormap                       x        compiled func
unintern                                lisp     compiled func
        (s &optional (pkg *package*))
union                                   lisp     compiled func
        (list1 list2 &key (test #'eq) (test-not) (key #'identity))
unionrectwithregion                     x        compiled func
unionregion                             x        compiled func
unique                                  lisp     compiled func
        (l)
unit-matrix                             lisp     compiled func
        (&optional (n 3))
universal-remove                        SYSTEM   compiled func
unless                                  lisp     compiled macro
        (pred &rest form)
unlink                                  unix     compiled func
unloadfont                              x        compiled func
unmapsubwindows                         x        compiled func
unmapwindow                             x        compiled func
unread-char                             lisp     compiled func
until                                   lisp     compiled macro
        (condition &rest forms)
untime                                  lisp     compiled macro
        (func)
untrace                                 lisp     compiled macro
        (&rest functions)
unuse-package                           lisp     compiled func
        (pkg &optional (curpkg *package*))
unwind-protect                          lisp     compiled func
upper-case-p                            lisp     compiled func
uread                                   unix     compiled func
url-pathname                            lisp     compiled func
        (p)
use-package                             lisp     compiled func
        (pkg &optional (curpkg *package*))
usleep                                  unix     compiled func
v*                                      lisp     compiled func
v+                                      lisp     compiled func
v++                                     lisp     compiled func
v-                                      lisp     compiled func
v-abs                                   lisp     compiled func
v.                                      lisp     compiled func
v.*                                     lisp     compiled func
v<                                      lisp     compiled func
v=                                      lisp     compiled func
        (a b)
v>                                      lisp     compiled func
values                                  lisp     compiled func
variables                               lisp     compiled func
        (variables [name] [pkgs ...])
collects symbols with a global value assigned
vector                                  lisp     compiled func
vector-angle                            geometry compiled func
        Compute angle (radian) between two vectors, v1 and v2.
Normal is vertical to both v1 and v2.
v1, v2 and normal must be normalized in advance.
Normal must be given if the sign of the angle is needed.
vector-class-p                          lisp     compiled func
        (p)
vector-mean                             geometry compiled func
        (vertices)
vector-pop                              lisp     compiled func
vector-push                             lisp     compiled func
vector-push-extend                      lisp     compiled func
vector-replace                          SYSTEM   compiled func
vector-x                                lisp     compiled func
        (p)
vector-y                                lisp     compiled func
        (p)
vector-z                                lisp     compiled func
        (p)
vectorp                                 lisp     compiled func
vendorrelease                           x        compiled func
vfork                                   unix     compiled func
view                                    geometry compiled func
        view: create a viewer with a viewsurface and a viewing.
Type of viewsurface is determined by *features*.
xview  --> canvas-viewsurface
xlib   --> xwindow
none   --> tektro-viewsurface
Created viewer instance is pushed in the *viewers* list.
To get viewing or viewsurface object in the viewer, send :viewing or
:viewsurface message to the viewer
	keyword parameters:
	:x, :y	--location where the window appears
	:size, :height, :width	--window size
	:title	--window name
	:viewpoint, :target	--viewing coords
	:viewdistance, :hither, :yon, :screen	--projection parameters
viewportclip                            geometry compiled func
visual-bits-per-rgb                     x        compiled func
        (vis)
visual-blue-mask                        x        compiled func
        (vis)
visual-class                            x        compiled func
        (vis)
visual-depth                            x        compiled func
        (vis)
visual-green-mask                       x        compiled func
        (vis)
visual-id                               x        compiled func
        (vis)
visual-masks                            x        compiled func
        (vis)
visual-red-mask                         x        compiled func
        (vis)
visual-type                             X        compiled func
        (name)
vmax                                    lisp     compiled func
vmin                                    lisp     compiled func
vplus                                   geometry compiled func
        (vertices)
wait                                    lisp     compiled func
warn                                    lisp     compiled func
        (format &rest mesg)
warning-message                         lisp     compiled func
        (color format &rest mesg)
warppointer                             x        compiled func
when                                    lisp     compiled macro
while                                   lisp     compiled func
whitepixel                              x        compiled func
whitepixelofscreen                      x        compiled func
widthmmofscreen                         x        compiled func
widthofscreen                           x        compiled func
window-main-loop                        x        compiled macro
        (&rest forms)
window-main-one                         X        compiled func
        (&optional fd)
windowattributes-all_event_masks        X        compiled func
        (lisp::s)
windowattributes-backing_pixel          X        compiled func
        (lisp::s)
windowattributes-backing_planes         X        compiled func
        (lisp::s)
windowattributes-backing_store          X        compiled func
        (lisp::s)
windowattributes-bit_gravity            X        compiled func
        (lisp::s)
windowattributes-border_width           X        compiled func
        (lisp::s)
windowattributes-class                  X        compiled func
        (lisp::s)
windowattributes-colormap               X        compiled func
        (lisp::s)
windowattributes-depth                  X        compiled func
        (lisp::s)
windowattributes-do_not_propagate_mask  X        compiled func
        (lisp::s)
windowattributes-height                 X        compiled func
        (lisp::s)
windowattributes-map_installed          X        compiled func
        (lisp::s)
windowattributes-map_state              X        compiled func
        (lisp::s)
windowattributes-override_redirect      X        compiled func
        (lisp::s)
windowattributes-root                   X        compiled func
        (lisp::s)
windowattributes-save_under             X        compiled func
        (lisp::s)
windowattributes-screen                 X        compiled func
        (lisp::s)
windowattributes-visual                 X        compiled func
        (lisp::s)
windowattributes-width                  X        compiled func
        (lisp::s)
windowattributes-win_gravity            X        compiled func
        (lisp::s)
windowattributes-x                      X        compiled func
        (lisp::s)
windowattributes-y                      X        compiled func
        (lisp::s)
windowattributes-your_event_mask        X        compiled func
        (lisp::s)
windowevent                             x        compiled func
winged-edge-p                           geometry compiled func
        (x)
with-gc                                 geometry compiled macro
        (system:gc &rest forms)
with-input-from-string                  lisp     compiled macro
        (vstring &rest forms)
with-open-file                          lisp     compiled macro
        (fspec &rest bod)
with-output-to-string                   lisp     compiled macro
        (vstring &rest forms)
with-viewsurface                        geometry compiled macro
        (vsf &rest forms)
wml                                     x        compiled macro
        (&rest forms)
wmlerror                                X        compiled func
        (code msg1 form &optional (msg2))
write                                   unix     compiled func
write-buffer                            lisp     compiled func
        (fname buf &optional (len (length buf)))
write-byte                              lisp     compiled func
write-long                              lisp     compiled func
write-pgm                               image    compiled func
        write-pgm always uses binary format
write-pnm                               image    compiled func
        (f img)
write-pnm-file                          image    compiled func
        (file img)
write-ppm                               image    compiled func
        write-ppm always uses binary (P6) format
write-raw-image                         IMAGE    compiled func
        write pixel data out to a file
write-word                              lisp     compiled func
writebitmapfile                         x        compiled func
wrt                                     GEOMETRY compiled func
        (coords vec)
xcolor-blue                             X        compiled func
        (lisp::s)
xcolor-flags                            X        compiled func
        (lisp::s)
xcolor-green                            X        compiled func
        (lisp::s)
xcolor-pad                              X        compiled func
        (lisp::s)
xcolor-pixel                            X        compiled func
        (lisp::s)
xcolor-red                              X        compiled func
        (lisp::s)
xevent-alt-state                        X        compiled func
        (lisp::s)
xevent-detail                           X        compiled func
        (lisp::s)
xevent-display                          X        compiled func
        (lisp::s)
xevent-focus                            X        compiled func
        (lisp::s)
xevent-pad                              X        compiled func
        (lisp::s &optional lisp::i)
xevent-root                             X        compiled func
        (lisp::s)
xevent-same-screen                      X        compiled func
        (lisp::s)
xevent-send-event                       X        compiled func
        (lisp::s)
xevent-serial                           X        compiled func
        (lisp::s)
xevent-state                            X        compiled func
        (lisp::s)
xevent-subwindow                        X        compiled func
        (lisp::s)
xevent-time                             X        compiled func
        (lisp::s)
xevent-type                             X        compiled func
        (lisp::s)
xevent-window                           X        compiled func
        (lisp::s)
xevent-x                                X        compiled func
        (lisp::s)
xevent-x-root                           X        compiled func
        (lisp::s)
xevent-y                                X        compiled func
        (lisp::s)
xevent-y-root                           X        compiled func
        (lisp::s)
xflush                                  X        lambda   func
xflush                                  X        lambda   func
xfork                                   lisp     compiled func
        (exec &key (stdin *standard-input*) (stdout *standard-output*) (stderr stdout) (args nil))
xorregion                               x        compiled func
y-or-n-p                                lisp     compiled func
        (&optional format-string &rest args &aux response)
yes-or-no-p                             lisp     compiled func
        (&optional format-string &rest args &aux response)
zerop                                   lisp     compiled func
        (n)