-
Notifications
You must be signed in to change notification settings - Fork 57
/
reference.lisp-expr
1092 lines (1092 loc) · 93.3 KB
/
reference.lisp-expr
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
'(("literal-double-quote" . (:text "\"" :label "literal" :clhs "Body/02_de.htm"))
("literal-single-quote" . (:text "\'" :label "literal" :clhs "Body/02_dc.htm"))
("literal-open-parens" . (:text "(" :label "literal" :clhs "Body/02_da.htm"))
("literal-parens" . (:text "()" :label "literal" :clhs "Body/02_b.htm"))
("literal-close-parens" . (:text ")" :label "literal" :clhs "Body/02_db.htm"))
("multiply" . (:text "*" :label "function" :clhs "Body/f_st.htm"))
("literal-asterix" . (:text "*" :label "variable" :clhs "Body/v__stst_.htm"))
("literal-double-asterix" . (:text "**" :label "variable" :clhs "Body/v__stst_.htm"))
("literal-triple-asterix" . (:text "***" :label "variable" :clhs "Body/v__stst_.htm"))
("earmuff-break-on-signals" . (:text "*break-on-signals*" :label "variable" :clhs "Body/v_break_.htm"))
("earmuff-compile-file-pathname" . (:text "*compile-file-pathname*" :label "variable" :clhs "Body/v_cmp_fi.htm"))
("earmuff-compile-file-truename" . (:text "*compile-file-truename*" :label "variable" :clhs "Body/v_cmp_fi.htm"))
("earmuff-compile-print" . (:text "*compile-print*" :label "variable" :clhs "Body/v_cmp_pr.htm"))
("earmuff-compile-verbose" . (:text "*compile-verbose*" :label "variable" :clhs "Body/v_cmp_pr.htm"))
("earmuff-debug-io" . (:text "*debug-io*" :label "variable" :clhs "Body/v_debug_.htm"))
("earmuff-debugger-hook" . (:text "*debugger-hook*" :label "variable" :clhs "Body/v_debugg.htm"))
("earmuff-default-pathname-defaults" . (:text "*default-pathname-defaults*" :label "variable" :clhs "Body/v_defaul.htm"))
("earmuff-error-output" . (:text "*error-output*" :label "variable" :clhs "Body/v_debug_.htm"))
("earmuff-features" . (:text "*features*" :label "variable" :clhs "Body/v_featur.htm"))
("earmuff-gensym-counter" . (:text "*gensym-counter*" :label "variable" :clhs "Body/v_gensym.htm"))
("earmuff-load-pathname" . (:text "*load-pathname*" :label "variable" :clhs "Body/v_ld_pns.htm"))
("earmuff-load-print" . (:text "*load-print*" :label "variable" :clhs "Body/v_ld_prs.htm"))
("earmuff-load-truename" . (:text "*load-truename*" :label "variable" :clhs "Body/v_ld_pns.htm"))
("earmuff-load-verbose" . (:text "*load-verbose*" :label "variable" :clhs "Body/v_ld_prs.htm"))
("earmuff-macroexpand-hook" . (:text "*macroexpand-hook*" :label "variable" :clhs "Body/v_mexp_h.htm"))
("earmuff-modules" . (:text "*modules*" :label "variable" :clhs "Body/v_module.htm"))
("earmuff-package" . (:text "*package*" :label "variable" :clhs "Body/v_pkg.htm"))
("earmuff-print-array" . (:text "*print-array*" :label "variable" :clhs "Body/v_pr_ar.htm"))
("earmuff-print-base" . (:text "*print-base*" :label "variable" :clhs "Body/v_pr_bas.htm"))
("earmuff-print-case" . (:text "*print-case*" :label "variable" :clhs "Body/v_pr_cas.htm"))
("earmuff-print-circle" . (:text "*print-circle*" :label "variable" :clhs "Body/v_pr_cir.htm"))
("earmuff-print-escape" . (:text "*print-escape*" :label "variable" :clhs "Body/v_pr_esc.htm"))
("earmuff-print-gensym" . (:text "*print-gensym*" :label "variable" :clhs "Body/v_pr_gen.htm"))
("earmuff-print-length" . (:text "*print-length*" :label "variable" :clhs "Body/v_pr_lev.htm"))
("earmuff-print-level" . (:text "*print-level*" :label "variable" :clhs "Body/v_pr_lev.htm"))
("earmuff-print-lines" . (:text "*print-lines*" :label "variable" :clhs "Body/v_pr_lin.htm"))
("earmuff-print-miser-width" . (:text "*print-miser-width*" :label "variable" :clhs "Body/v_pr_mis.htm"))
("earmuff-print-pprint-dispatch" . (:text "*print-pprint-dispatch*" :label "variable" :clhs "Body/v_pr_ppr.htm"))
("earmuff-print-pretty" . (:text "*print-pretty*" :label "variable" :clhs "Body/v_pr_pre.htm"))
("earmuff-print-radix" . (:text "*print-radix*" :label "variable" :clhs "Body/v_pr_bas.htm"))
("earmuff-print-readably" . (:text "*print-readably*" :label "variable" :clhs "Body/v_pr_rda.htm"))
("earmuff-print-right-margin" . (:text "*print-right-margin*" :label "variable" :clhs "Body/v_pr_rig.htm"))
("earmuff-query-io" . (:text "*query-io*" :label "variable" :clhs "Body/v_debug_.htm"))
("earmuff-random-state" . (:text "*random-state*" :label "variable" :clhs "Body/v_rnd_st.htm"))
("earmuff-read-base" . (:text "*read-base*" :label "variable" :clhs "Body/v_rd_bas.htm"))
("earmuff-read-default-float-format" . (:text "*read-default-float-format*" :label "variable" :clhs "Body/v_rd_def.htm"))
("earmuff-read-eval" . (:text "*read-eval*" :label "variable" :clhs "Body/v_rd_eva.htm"))
("earmuff-read-suppress" . (:text "*read-suppress*" :label "variable" :clhs "Body/v_rd_sup.htm"))
("earmuff-readtable" . (:text "*readtable*" :label "variable" :clhs "Body/v_rdtabl.htm"))
("earmuff-standard-input" . (:text "*standard-input*" :label "variable" :clhs "Body/v_debug_.htm"))
("earmuff-standard-output" . (:text "*standard-output*" :label "variable" :clhs "Body/v_debug_.htm"))
("earmuff-terminal-io" . (:text "*terminal-io*" :label "variable" :clhs "Body/v_termin.htm"))
("earmuff-trace-output" . (:text "*trace-output*" :label "variable" :clhs "Body/v_debug_.htm"))
("add" . (:text "+" :label "function" :clhs "Body/a_pl.htm"))
("literal-plus-sign" . (:text "+" :label "variable" :clhs "Body/26_glo_s.htm#sign"))
("literal-double-plus-sign" . (:text "++" :label "variable" :clhs "Body/v_pl_plp.htm"))
("literal-triple-plus-sign" . (:text "+++" :label "variable" :clhs "Body/v_pl_plp.htm"))
("literal-comma" . (:text "," :label "literal" :clhs "Body/02_dg.htm"))
("literal-comma-dot" . (:text ",." :label "literal" :clhs "Body/02_dg.htm"))
("literal-comma-at" . (:text ",@" :label "literal" :clhs "Body/02_dg.htm"))
("minus" . (:text "-" :label "function" :clhs "Body/a__.htm"))
("literal-minus-sign" . (:text "-" :label "literal" :clhs "Body/26_glo_s.htm#sign"))
("literal-dot" . (:text "." :label "literal" :clhs "Body/02_cc.htm"))
("divide" . (:text "/" :label "function" :clhs "Body/a_sl.htm"))
("ratio-slash" . (:text "/" :label "literal" :clhs "Body/a_sl.htm"))
("literal-slash" . (:text "/" :label "variable" :clhs "Body/v_sl_sls.htm"))
("literal-double-slash" . (:text "//" :label "variable" :clhs "Body/v_sl_sls.htm"))
("literal-triple-slash" . (:text "///" :label "variable" :clhs "Body/v_sl_sls.htm"))
("not-equal" . (:text "/=" :label "function" :clhs "Body/f_eq_sle.htm"))
("literal-colon" . (:text ":" :label "literal" :clhs "Body/22_acca.htm"))
("literal-double-colon" . (:text "::" :label "literal" :clhs "Body/22_acca.htm"))
("literal-semicolon" . (:text ";" :label "literal" :clhs "Body/02_dd.htm"))
("literal-lt" . (:text "<" :label "function" :clhs "Body/f_eq_sle.htm"))
("literal-lt-equal" . (:text "<=" :label "function" :clhs "Body/f_eq_sle.htm"))
("loop-keyword-literal-equal" . (:text "=" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("literal-equal" . (:text "=" :label "function" :clhs "Body/f_eq_sle.htm"))
("literal-gt" . (:text ">" :label "function" :clhs "Body/f_eq_sle.htm"))
("literal-gt-equal" . (:text ">=" :label "function" :clhs "Body/f_eq_sle.htm"))
("literal-hash" . (:text "#" :label "format control parameter" :clhs "Body/02_dh.htm"))
("literal-hash-backslash" . (:text "#\\" :label "reader-macro" :clhs "Body/02_dha.htm"))
("literal-hash-quote" . (:text "#\'" :label "reader-macro" :clhs "Body/02_dhb.htm"))
("literal-hash-parens" . (:text "#(...)" :label "reader-macro" :clhs "Body/02_dhc.htm"))
("literal-hash-asterix" . (:text "#*" :label "reader-macro" :clhs "Body/02_dhd.htm"))
("literal-hash-plus-sign" . (:text "#+" :label "reader-macro" :clhs "Body/02_dhq.htm"))
("literal-hash-minus-sign" . (:text "#-" :label "reader-macro" :clhs "Body/02_dhr.htm"))
("literal-hash-dot" . (:text "#." :label "reader-macro" :clhs "Body/02_dhf.htm"))
("literal-hash-colon" . (:text "#:" :label "reader-macro" :clhs "Body/02_dhe.htm"))
("literal-hash-lt" . (:text "#<" :label "reader-macro" :clhs "Body/02_dht.htm"))
("literal-hash-equal" . (:text "#=" :label "reader-macro" :clhs "Body/02_dho.htm"))
("literal-hash-a" . (:text "#A" :label "reader-macro" :clhs "Body/02_dhl.htm"))
("literal-hash-b" . (:text "#B" :label "reader-macro" :clhs "Body/02_dhg.htm"))
("literal-hash-c-parens" . (:text "#C(...)" :label "reader-macro" :clhs "Body/02_dhk.htm"))
("literal-hash-o" . (:text "#O" :label "reader-macro" :clhs "Body/02_dhh.htm"))
("literal-hash-p" . (:text "#P" :label "reader-macro" :clhs "Body/02_dhn.htm"))
("literal-hash-r" . (:text "#R" :label "reader-macro" :clhs "Body/02_dhj.htm"))
("literal-hash-s-parens" . (:text "#S(...)" :label "reader-macro" :clhs "Body/02_dhm.htm"))
("literal-hash-x" . (:text "#X" :label "reader-macro" :clhs "Body/02_dhi.htm"))
("literal-double-hash" . (:text "##" :label "reader-macro" :clhs "Body/02_dhp.htm"))
("literal-hash-bar" . (:text "#|...|#" :label "reader-macro" :clhs "Body/02_dhs.htm"))
("ampersand-allow-other-keys" . (:text "&allow-other-keys" :label "constant" :clhs "Body/03_da.htm"))
("ampersand-aux" . (:text "&aux" :label "constant" :clhs "Body/03_da.htm"))
("ampersand-body" . (:text "&body" :label "constant" :clhs "Body/03_dd.htm"))
("ampersand-environment" . (:text "&environment" :label "constant" :clhs "Body/03_dd.htm"))
("ampersand-key" . (:text "&key" :label "constant" :clhs "Body/03_da.htm"))
("ampersand-optional" . (:text "&optional" :label "constant" :clhs "Body/03_da.htm"))
("ampersand-rest" . (:text "&rest" :label "constant" :clhs "Body/03_da.htm"))
("ampersand-whole" . (:text "&whole" :label "constant" :clhs "Body/03_dd.htm"))
("tilde-parens" . (:text "~( ... ~)" :label "format control" :clhs "Body/22_cha.htm"))
("tilde-asterix" . (:text "~*" :label "format control" :clhs "Body/22_cga.htm"))
("tilde-slashes" . (:text "~/ ... /" :label "format control" :clhs "Body/22_ced.htm"))
("tilde-lt-to-tilde-colon-gt" . (:text "~< ... ~:>" :label "format control" :clhs "Body/22_ceb.htm"))
("tilde-lt-to-tilde-gt" . (:text "~< ... ~>" :label "format control" :clhs "Body/22_cfb.htm"))
("tilde-question-mark" . (:text "~?" :label "format control" :clhs "Body/22_cgf.htm"))
("tilde-a" . (:text "~A" :label "format control" :clhs "Body/22_cda.htm"))
("tilde-b" . (:text "~B" :label "format control" :clhs "Body/22_cbc.htm"))
("tilde-c" . (:text "~C" :label "format control" :clhs "Body/22_caa.htm"))
("tilde-d" . (:text "~D" :label "format control" :clhs "Body/22_cbb.htm"))
("tilde-e" . (:text "~E" :label "format control" :clhs "Body/22_ccb.htm"))
("tilde-f" . (:text "~F" :label "format control" :clhs "Body/22_cca.htm"))
("tilde-g" . (:text "~G" :label "format control" :clhs "Body/22_ccc.htm"))
("tilde-i" . (:text "~I" :label "format control" :clhs "Body/22_cec.htm"))
("tilde-o" . (:text "~O" :label "format control" :clhs "Body/22_cbd.htm"))
("tilde-p" . (:text "~P" :label "format control" :clhs "Body/22_chc.htm"))
("tilde-r" . (:text "~R" :label "format control" :clhs "Body/22_cba.htm"))
("tilde-s" . (:text "~S" :label "format control" :clhs "Body/22_cdb.htm"))
("tilde-t" . (:text "~T" :label "format control" :clhs "Body/22_cfa.htm"))
("tilde-w" . (:text "~W" :label "format control" :clhs "Body/22_cdc.htm"))
("tilde-x" . (:text "~X" :label "format control" :clhs "Body/22_cbe.htm"))
("tilde-square-bracket" . (:text "~[...~]" :label "format control" :clhs "Body/22_cgb.htm"))
("tilde-dollar-sign" . (:text "~$" :label "format control" :clhs "Body/22_ccd.htm"))
("tilde-percent-sign" . (:text "~%" :label "format control" :clhs "Body/22_cab.htm"))
("tilde-ampersand" . (:text "~&" :label "format control" :clhs "Body/22_cac.htm"))
("tilde-circumflex" . (:text "~^" :label "format control" :clhs "Body/22_cib.htm"))
("tilde-underscore" . (:text "~_" :label "format control" :clhs "Body/22_cea.htm"))
("tilde-bar" . (:text "~|" :label "format control" :clhs "Body/22_cad.htm"))
("tilde-curly-braces" . (:text "~{...~}" :label "format control" :clhs "Body/22_cgd.htm"))
("tilde-tilde" . (:text "~~" :label "format control" :clhs "Body/22_cae.htm"))
("tilde-newline" . (:text "~#\\Newline" :label "format control" :clhs "Body/22_cic.htm"))
("tilde-semicolon" . (:text "~;" :label "format control" :clhs "Body/22_cia.htm"))
("literal-backtick" . (:text "\`" :label "literal" :clhs "Body/02_df.htm"))
("literal-hbars" . (:text "|...|" :label "literal" :clhs "Body/02_cd.htm"))
("literal-one-plus" . (:text "1+" :label "function" :clhs "Body/f_1pl_1_.htm"))
("literal-one-minus" . (:text "1-" :label "function" :clhs "Body/f_1pl_1_.htm"))
("abort" . (:text "abort" :label "function" :clhs "Body/a_abort.htm"))
("above" . (:text "above" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("abs" . (:text "abs" :label "function" :clhs "Body/f_abs.htm"))
("acons" . (:text "acons" :label "function" :clhs "Body/f_acons.htm"))
("acos" . (:text "acos" :label "function" :clhs "Body/f_asin_.htm"))
("acosh" . (:text "acosh" :label "function" :clhs "Body/f_sinh_.htm"))
("across" . (:text "across" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("add-method" . (:text "add-method" :label "generic function" :clhs "Body/f_add_me.htm"))
("adjoin" . (:text "adjoin" :label "function" :clhs "Body/f_adjoin.htm"))
("adjust-array" . (:text "adjust-array" :label "function" :clhs "Body/f_adjust.htm"))
("adjustable-array-p" . (:text "adjustable-array-p" :label "function" :clhs "Body/f_adju_1.htm"))
("allocate-instance" . (:text "allocate-instance" :label "generic function" :clhs "Body/f_alloca.htm"))
("alpha-char-p" . (:text "alpha-char-p" :label "function" :clhs "Body/f_alpha_.htm"))
("alphanumericp" . (:text "alphanumericp" :label "function" :clhs "Body/f_alphan.htm"))
("always" . (:text "always" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("macro-and" . (:text "and" :label "macro" :clhs "Body/a_and.htm"))
("loop-keyword-and" . (:text "and" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("function-append" . (:text "append" :label "function" :clhs "Body/f_append.htm"))
("loop-keyword-append" . (:text "append" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("appending" . (:text "appending" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("apply" . (:text "apply" :label "function" :clhs "Body/f_apply.htm"))
("apropos" . (:text "apropos" :label "function" :clhs "Body/f_apropo.htm"))
("apropos-list" . (:text "apropos-list" :label "function" :clhs "Body/f_apropo.htm"))
("aref" . (:text "aref" :label "function" :clhs "Body/f_aref.htm"))
("arithmetic-error" . (:text "arithmetic-error" :label "condition" :clhs "Body/e_arithm.htm"))
("arithmetic-error-operands" . (:text "arithmetic-error-operands" :label "function" :clhs "Body/f_arithm.htm"))
("arithmetic-error-operation" . (:text "arithmetic-error-operation" :label "function" :clhs "Body/f_arithm.htm"))
("array" . (:text "array" :label "type-specifier" :clhs "Body/t_array.htm"))
("array-dimension" . (:text "array-dimension" :label "function" :clhs "Body/f_ar_dim.htm"))
("array-dimension-limit" . (:text "array-dimension-limit" :label "constant" :clhs "Body/v_ar_dim.htm"))
("array-dimensions" . (:text "array-dimensions" :label "function" :clhs "Body/f_ar_d_1.htm"))
("array-displacement" . (:text "array-displacement" :label "function" :clhs "Body/f_ar_dis.htm"))
("array-element-type" . (:text "array-element-type" :label "function" :clhs "Body/f_ar_ele.htm"))
("array-has-fill-pointer-p" . (:text "array-has-fill-pointer-p" :label "function" :clhs "Body/f_ar_has.htm"))
("array-in-bounds-p" . (:text "array-in-bounds-p" :label "function" :clhs "Body/f_ar_in_.htm"))
("array-rank" . (:text "array-rank" :label "function" :clhs "Body/f_ar_ran.htm"))
("array-rank-limit" . (:text "array-rank-limit" :label "constant" :clhs "Body/v_ar_ran.htm"))
("array-row-major-index" . (:text "array-row-major-index" :label "function" :clhs "Body/f_ar_row.htm"))
("array-total-size" . (:text "array-total-size" :label "function" :clhs "Body/f_ar_tot.htm"))
("array-total-size-limit" . (:text "array-total-size-limit" :label "constant" :clhs "Body/v_ar_tot.htm"))
("arrayp" . (:text "arrayp" :label "function" :clhs "Body/f_arrayp.htm"))
("as" . (:text "as" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("ash" . (:text "ash" :label "function" :clhs "Body/f_ash.htm"))
("asin" . (:text "asin" :label "function" :clhs "Body/f_asin_.htm"))
("asinh" . (:text "asinh" :label "function" :clhs "Body/f_sinh_.htm"))
("assert" . (:text "assert" :label "macro" :clhs "Body/m_assert.htm"))
("assoc" . (:text "assoc" :label "function" :clhs "Body/f_assocc.htm"))
("assoc-if" . (:text "assoc-if" :label "function" :clhs "Body/f_assocc.htm"))
("assoc-if-not" . (:text "assoc-if-not" :label "function" :clhs "Body/f_assocc.htm"))
("atan" . (:text "atan" :label "function" :clhs "Body/f_asin_.htm"))
("atanh" . (:text "atanh" :label "function" :clhs "Body/f_sinh_.htm"))
("atom" . (:text "atom" :label "function" :clhs "Body/a_atom.htm"))
("base-char" . (:text "base-char" :label "type-specifier" :clhs "Body/t_base_c.htm"))
("base-string" . (:text "base-string" :label "type-specifier" :clhs "Body/t_base_s.htm"))
("being" . (:text "being" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("below" . (:text "below" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("bignum" . (:text "bignum" :label "type-specifier" :clhs "Body/t_bignum.htm"))
("bit" . (:text "bit" :label "function" :clhs "Body/a_bit.htm"))
("bit-and" . (:text "bit-and" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-andc1" . (:text "bit-andc1" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-andc2" . (:text "bit-andc2" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-eqv" . (:text "bit-eqv" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-ior" . (:text "bit-ior" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-nand" . (:text "bit-nand" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-nor" . (:text "bit-nor" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-not" . (:text "bit-not" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-orc1" . (:text "bit-orc1" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-orc2" . (:text "bit-orc2" :label "function" :clhs "Body/f_bt_and.htm"))
("bit-vector" . (:text "bit-vector" :label "type-specifier" :clhs "Body/t_bt_vec.htm"))
("bit-vector-p" . (:text "bit-vector-p" :label "function" :clhs "Body/f_bt_vec.htm"))
("bit-xor" . (:text "bit-xor" :label "function" :clhs "Body/f_bt_and.htm"))
("block" . (:text "block" :label "special" :clhs "Body/s_block.htm"))
("boole" . (:text "boole" :label "function" :clhs "Body/f_boole.htm"))
("boole-1" . (:text "boole-1" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-2" . (:text "boole-2" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-and" . (:text "boole-and" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-andc1" . (:text "boole-andc1" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-andc2" . (:text "boole-andc2" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-c1" . (:text "boole-c1" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-c2" . (:text "boole-c2" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-clr" . (:text "boole-clr" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-eqv" . (:text "boole-eqv" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-ior" . (:text "boole-ior" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-nand" . (:text "boole-nand" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-nor" . (:text "boole-nor" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-orc1" . (:text "boole-orc1" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-orc2" . (:text "boole-orc2" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-set" . (:text "boole-set" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boole-xor" . (:text "boole-xor" :label "constant" :clhs "Body/v_b_1_b.htm"))
("boolean" . (:text "boolean" :label "type-specifier" :clhs "Body/t_ban.htm"))
("both-case-p" . (:text "both-case-p" :label "function" :clhs "Body/f_upper_.htm"))
("boundp" . (:text "boundp" :label "function" :clhs "Body/f_boundp.htm"))
("break" . (:text "break" :label "function" :clhs "Body/f_break.htm"))
("broadcast-stream" . (:text "broadcast-stream" :label "type-specifier" :clhs "Body/t_broadc.htm"))
("broadcast-stream-streams" . (:text "broadcast-stream-streams" :label "function" :clhs "Body/f_broadc.htm"))
("built-in-class" . (:text "built-in-class" :label "type-specifier" :clhs "Body/t_built_.htm"))
("butlast" . (:text "butlast" :label "function" :clhs "Body/f_butlas.htm"))
("by" . (:text "by" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("byte" . (:text "byte" :label "function" :clhs "Body/f_by_by.htm"))
("byte-position" . (:text "byte-position" :label "function" :clhs "Body/f_by_by.htm"))
("byte-size" . (:text "byte-size" :label "function" :clhs "Body/f_by_by.htm"))
("call-arguments-limit" . (:text "call-arguments-limit" :label "constant" :clhs "Body/v_call_a.htm"))
("call-method" . (:text "call-method" :label "macro" :clhs "Body/m_call_m.htm"))
("call-next-method" . (:text "call-next-method" :label "function" :clhs "Body/f_call_n.htm"))
("car" . (:text "car" :label "function" :clhs "Body/f_car_c.htm"))
("case" . (:text "case" :label "macro" :clhs "Body/m_case_.htm"))
("catch" . (:text "catch" :label "special" :clhs "Body/s_catch.htm"))
("ccase" . (:text "ccase" :label "macro" :clhs "Body/m_case_.htm"))
("cdr" . (:text "cdr" :label "function" :clhs "Body/f_car_c.htm"))
("c-x-r" . (:text "c*r" :label "function" :clhs "Body/f_car_c.htm"))
("ceiling" . (:text "ceiling" :label "function" :clhs "Body/f_floorc.htm"))
("cell-error" . (:text "cell-error" :label "condition" :clhs "Body/e_cell_e.htm"))
("cell-error-name" . (:text "cell-error-name" :label "function" :clhs "Body/f_cell_e.htm"))
("cerror" . (:text "cerror" :label "function" :clhs "Body/f_cerror.htm"))
("change-class" . (:text "change-class" :label "generic function" :clhs "Body/f_chg_cl.htm"))
("char" . (:text "char" :label "function" :clhs "Body/f_char_.htm"))
("char-code" . (:text "char-code" :label "function" :clhs "Body/f_char_c.htm"))
("char-code-limit" . (:text "char-code-limit" :label "constant" :clhs "Body/v_char_c.htm"))
("char-downcase" . (:text "char-downcase" :label "function" :clhs "Body/f_char_u.htm"))
("char-equal" . (:text "char-equal" :label "function" :clhs "Body/f_chareq.htm"))
("char-greaterp" . (:text "char-greaterp" :label "function" :clhs "Body/f_chareq.htm"))
("char-int" . (:text "char-int" :label "function" :clhs "Body/f_char_i.htm"))
("char-lessp" . (:text "char-lessp" :label "function" :clhs "Body/f_chareq.htm"))
("char-name" . (:text "char-name" :label "function" :clhs "Body/f_char_n.htm"))
("char-not-equal" . (:text "char-not-equal" :label "function" :clhs "Body/f_chareq.htm"))
("char-not-greaterp" . (:text "char-not-greaterp" :label "function" :clhs "Body/f_chareq.htm"))
("char-not-lessp" . (:text "char-not-lessp" :label "function" :clhs "Body/f_chareq.htm"))
("char-upcase" . (:text "char-upcase" :label "function" :clhs "Body/f_char_u.htm"))
("char-literal-not-equal" . (:text "char/=" :label "function" :clhs "Body/f_chareq.htm"))
("char-literal-lt" . (:text "char<" :label "function" :clhs "Body/f_chareq.htm"))
("char-literal-lt-equal" . (:text "char<=" :label "function" :clhs "Body/f_chareq.htm"))
("char-literal-equal" . (:text "char=" :label "function" :clhs "Body/f_chareq.htm"))
("char-literal-gt" . (:text "char>" :label "function" :clhs "Body/f_chareq.htm"))
("char-literal-gt-equal" . (:text "char>=" :label "function" :clhs "Body/f_chareq.htm"))
("character" . (:text "character" :label "function" :clhs "Body/a_ch.htm"))
("characterp" . (:text "characterp" :label "function" :clhs "Body/f_chp.htm"))
("check-type" . (:text "check-type" :label "macro" :clhs "Body/m_check_.htm"))
("cis" . (:text "cis" :label "function" :clhs "Body/f_cis.htm"))
("class" . (:text "class" :label "type-specifier" :clhs "Body/t_class.htm"))
("class-name" . (:text "class-name" :label "generic function" :clhs "Body/f_class_.htm"))
("class-of" . (:text "class-of" :label "function" :clhs "Body/f_clas_1.htm"))
("clear-input" . (:text "clear-input" :label "function" :clhs "Body/f_clear_.htm"))
("clear-output" . (:text "clear-output" :label "function" :clhs "Body/f_finish.htm"))
("close" . (:text "close" :label "function" :clhs "Body/f_close.htm"))
("clrhash" . (:text "clrhash" :label "function" :clhs "Body/f_clrhas.htm"))
("code-char" . (:text "code-char" :label "function" :clhs "Body/f_code_c.htm"))
("coerce" . (:text "coerce" :label "function" :clhs "Body/f_coerce.htm"))
("collect" . (:text "collect" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("collecting" . (:text "collecting" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("compilation-speed" . (:text "compilation-speed" :label "declare expression" :clhs "Body/d_optimi.htm"))
("compile" . (:text "compile" :label "function" :clhs "Body/f_cmp.htm"))
("compile-file" . (:text "compile-file" :label "function" :clhs "Body/f_cmp_fi.htm"))
("compile-file-pathname" . (:text "compile-file-pathname" :label "function" :clhs "Body/f_cmp__1.htm"))
("compiled-function" . (:text "compiled-function" :label "type-specifier" :clhs "Body/t_cmpd_f.htm"))
("compiled-function-p" . (:text "compiled-function-p" :label "function" :clhs "Body/f_cmpd_f.htm"))
("compiler-macro" . (:text "compiler-macro" :label "type-specifier" :clhs "Body/f_docume.htm"))
("compiler-macro-function" . (:text "compiler-macro-function" :label "function" :clhs "Body/f_cmp_ma.htm"))
("complement" . (:text "complement" :label "function" :clhs "Body/f_comple.htm"))
("complex" . (:text "complex" :label "function" :clhs "Body/a_comple.htm"))
("complexp" . (:text "complexp" :label "function" :clhs "Body/f_comp_3.htm"))
("compute-applicable-methods" . (:text "compute-applicable-methods" :label "generic function" :clhs "Body/f_comput.htm"))
("compute-restarts" . (:text "compute-restarts" :label "function" :clhs "Body/f_comp_1.htm"))
("concatenate" . (:text "concatenate" :label "function" :clhs "Body/f_concat.htm"))
("concatenated-stream" . (:text "concatenated-stream" :label "type-specifier" :clhs "Body/t_concat.htm"))
("concatenated-stream-streams" . (:text "concatenated-stream-streams" :label "function" :clhs "Body/f_conc_1.htm"))
("cond" . (:text "cond" :label "macro" :clhs "Body/m_cond.htm"))
("condition" . (:text "condition" :label "condition" :clhs "Body/e_cnd.htm"))
("conjugate" . (:text "conjugate" :label "function" :clhs "Body/f_conjug.htm"))
("cons" . (:text "cons" :label "function" :clhs "Body/a_cons.htm"))
("consp" . (:text "consp" :label "function" :clhs "Body/f_consp.htm"))
("constantly" . (:text "constantly" :label "function" :clhs "Body/f_cons_1.htm"))
("constantp" . (:text "constantp" :label "function" :clhs "Body/f_consta.htm"))
("continue" . (:text "continue" :label "function" :clhs "Body/a_contin.htm"))
("control-error" . (:text "control-error" :label "condition" :clhs "Body/e_contro.htm"))
("copy-alist" . (:text "copy-alist" :label "function" :clhs "Body/f_cp_ali.htm"))
("copy-list" . (:text "copy-list" :label "function" :clhs "Body/f_cp_lis.htm"))
("copy-pprint-dispatch" . (:text "copy-pprint-dispatch" :label "function" :clhs "Body/f_cp_ppr.htm"))
("copy-readtable" . (:text "copy-readtable" :label "function" :clhs "Body/f_cp_rdt.htm"))
("copy-seq" . (:text "copy-seq" :label "function" :clhs "Body/f_cp_seq.htm"))
("copy-structure" . (:text "copy-structure" :label "function" :clhs "Body/f_cp_stu.htm"))
("copy-symbol" . (:text "copy-symbol" :label "function" :clhs "Body/f_cp_sym.htm"))
("copy-tree" . (:text "copy-tree" :label "function" :clhs "Body/f_cp_tre.htm"))
("cos" . (:text "cos" :label "function" :clhs "Body/f_sin_c.htm"))
("cosh" . (:text "cosh" :label "function" :clhs "Body/f_sinh_.htm"))
("loop-keyword-count" . (:text "count" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("count" . (:text "count" :label "function" :clhs "Body/f_countc.htm"))
("count-if" . (:text "count-if" :label "function" :clhs "Body/f_countc.htm"))
("count-if-not" . (:text "count-if-not" :label "function" :clhs "Body/f_countc.htm"))
("counting" . (:text "counting" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("ctypecase" . (:text "ctypecase" :label "macro" :clhs "Body/m_tpcase.htm"))
("debug" . (:text "debug" :label "declare expression" :clhs "Body/d_optimi.htm"))
("decf" . (:text "decf" :label "macro" :clhs "Body/m_incf_.htm"))
("declaim" . (:text "declaim" :label "macro" :clhs "Body/m_declai.htm"))
("declaration" . (:text "declaration" :label "declare expression" :clhs "Body/d_declar.htm"))
("declare" . (:text "declare" :label "declare expression" :clhs "Body/s_declar.htm"))
("decode-float" . (:text "decode-float" :label "function" :clhs "Body/f_dec_fl.htm"))
("decode-universal-time" . (:text "decode-universal-time" :label "function" :clhs "Body/f_dec_un.htm"))
("defclass" . (:text "defclass" :label "macro" :clhs "Body/m_defcla.htm"))
("defconstant" . (:text "defconstant" :label "macro" :clhs "Body/m_defcon.htm"))
("defgeneric" . (:text "defgeneric" :label "macro" :clhs "Body/m_defgen.htm"))
("define-compiler-macro" . (:text "define-compiler-macro" :label "function" :clhs "Body/m_define.htm"))
("define-condition" . (:text "define-condition" :label "macro" :clhs "Body/m_defi_5.htm"))
("define-method-combination" . (:text "define-method-combination" :label "macro" :clhs "Body/m_defi_4.htm"))
("define-modify-macro" . (:text "define-modify-macro" :label "macro" :clhs "Body/m_defi_2.htm"))
("define-setf-expander" . (:text "define-setf-expander" :label "macro" :clhs "Body/m_defi_3.htm"))
("define-symbol-macro" . (:text "define-symbol-macro" :label "macro" :clhs "Body/m_defi_1.htm"))
("defmacro" . (:text "defmacro" :label "macro" :clhs "Body/m_defmac.htm"))
("defmethod" . (:text "defmethod" :label "macro" :clhs "Body/m_defmet.htm"))
("defpackage" . (:text "defpackage" :label "macro" :clhs "Body/m_defpkg.htm"))
("defparameter" . (:text "defparameter" :label "macro" :clhs "Body/m_defpar.htm"))
("defsetf" . (:text "defsetf" :label "macro" :clhs "Body/m_defset.htm"))
("defstruct" . (:text "defstruct" :label "macro" :clhs "Body/m_defstr.htm"))
("deftype" . (:text "deftype" :label "macro" :clhs "Body/m_deftp.htm"))
("defun" . (:text "defun" :label "macro" :clhs "Body/m_defun.htm"))
("defvar" . (:text "defvar" :label "macro" :clhs "Body/m_defpar.htm"))
("delete" . (:text "delete" :label "function" :clhs "Body/f_rm_rm.htm"))
("delete-duplicates" . (:text "delete-duplicates" :label "function" :clhs "Body/f_rm_dup.htm"))
("delete-file" . (:text "delete-file" :label "function" :clhs "Body/f_del_fi.htm"))
("delete-if" . (:text "delete-if" :label "function" :clhs "Body/f_rm_rm.htm"))
("delete-if-not" . (:text "delete-if-not" :label "function" :clhs "Body/f_rm_rm.htm"))
("delete-package" . (:text "delete-package" :label "function" :clhs "Body/f_del_pk.htm"))
("denominator" . (:text "denominator" :label "function" :clhs "Body/f_numera.htm"))
("deposit-field" . (:text "deposit-field" :label "function" :clhs "Body/f_deposi.htm"))
("describe" . (:text "describe" :label "function" :clhs "Body/f_descri.htm"))
("describe-object" . (:text "describe-object" :label "generic function" :clhs "Body/f_desc_1.htm"))
("destructuring-bind" . (:text "destructuring-bind" :label "macro" :clhs "Body/m_destru.htm"))
("digit-char" . (:text "digit-char" :label "function" :clhs "Body/f_digit_.htm"))
("digit-char-p" . (:text "digit-char-p" :label "function" :clhs "Body/f_digi_1.htm"))
("directory" . (:text "directory" :label "function" :clhs "Body/f_dir.htm"))
("directory-namestring" . (:text "directory-namestring" :label "function" :clhs "Body/f_namest.htm"))
("disassemble" . (:text "disassemble" :label "function" :clhs "Body/f_disass.htm"))
("division-by-zero" . (:text "division-by-zero" :label "condition" :clhs "Body/e_divisi.htm"))
("loop-keyword-do" . (:text "do" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("do" . (:text "do" :label "macro" :clhs "Body/m_do_do.htm"))
("do-asterix" . (:text "do*" :label "macro" :clhs "Body/m_do_do.htm"))
("do-all-symbols" . (:text "do-all-symbols" :label "macro" :clhs "Body/m_do_sym.htm"))
("do-external-symbols" . (:text "do-external-symbols" :label "macro" :clhs "Body/m_do_sym.htm"))
("do-symbols" . (:text "do-symbols" :label "macro" :clhs "Body/m_do_sym.htm"))
("documentation" . (:text "documentation" :label "generic function" :clhs "Body/f_docume.htm"))
("doing" . (:text "doing" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("dolist" . (:text "dolist" :label "macro" :clhs "Body/m_dolist.htm"))
("dotimes" . (:text "dotimes" :label "macro" :clhs "Body/m_dotime.htm"))
("double-float" . (:text "double-float" :label "type-specifier" :clhs "Body/t_short_.htm"))
("double-float-epsilon" . (:text "double-float-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("double-float-negative-epsilon" . (:text "double-float-negative-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("downfrom" . (:text "downfrom" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("downto" . (:text "downto" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("dpb" . (:text "dpb" :label "function" :clhs "Body/f_dpb.htm"))
("dribble" . (:text "dribble" :label "function" :clhs "Body/f_dribbl.htm"))
("dynamic-extent" . (:text "dynamic-extent" :label "declare expression" :clhs "Body/d_dynami.htm"))
("each" . (:text "each" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("ecase" . (:text "ecase" :label "macro" :clhs "Body/m_case_.htm"))
("echo-stream" . (:text "echo-stream" :label "type-specifier" :clhs "Body/t_echo_s.htm"))
("echo-stream-input-stream" . (:text "echo-stream-input-stream" :label "function" :clhs "Body/f_echo_s.htm"))
("echo-stream-output-stream" . (:text "echo-stream-output-stream" :label "function" :clhs "Body/f_echo_s.htm"))
("ed" . (:text "ed" :label "function" :clhs "Body/f_ed.htm"))
("eighth" . (:text "eighth" :label "function" :clhs "Body/f_firstc.htm"))
("else" . (:text "else" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("elt" . (:text "elt" :label "function" :clhs "Body/f_elt.htm"))
("encode-universal-time" . (:text "encode-universal-time" :label "function" :clhs "Body/f_encode.htm"))
("end" . (:text "end" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("end-of-file" . (:text "end-of-file" :label "condition" :clhs "Body/e_end_of.htm"))
("endp" . (:text "endp" :label "function" :clhs "Body/f_endp.htm"))
("enough-namestring" . (:text "enough-namestring" :label "function" :clhs "Body/f_namest.htm"))
("ensure-directories-exist" . (:text "ensure-directories-exist" :label "function" :clhs "Body/f_ensu_1.htm"))
("ensure-generic-function" . (:text "ensure-generic-function" :label "function" :clhs "Body/f_ensure.htm"))
("eq" . (:text "eq" :label "function" :clhs "Body/f_eq.htm"))
("eql" . (:text "eql" :label "function" :clhs "Body/a_eql.htm"))
("equal" . (:text "equal" :label "function" :clhs "Body/f_equal.htm"))
("equalp" . (:text "equalp" :label "function" :clhs "Body/f_equalp.htm"))
("error" . (:text "error" :label "function" :clhs "Body/a_error.htm"))
("etypecase" . (:text "etypecase" :label "macro" :clhs "Body/m_tpcase.htm"))
("eval" . (:text "eval" :label "function" :clhs "Body/f_eval.htm"))
("eval-when" . (:text "eval-when" :label "special" :clhs "Body/s_eval_w.htm"))
("evenp" . (:text "evenp" :label "function" :clhs "Body/f_evenpc.htm"))
("every" . (:text "every" :label "function" :clhs "Body/f_everyc.htm"))
("exp" . (:text "exp" :label "function" :clhs "Body/f_exp_e.htm"))
("export" . (:text "export" :label "function" :clhs "Body/f_export.htm"))
("expt" . (:text "expt" :label "function" :clhs "Body/f_exp_e.htm"))
("extended-char" . (:text "extended-char" :label "type-specifier" :clhs "Body/t_extend.htm"))
("external-symbol" . (:text "external-symbol" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("external-symbols" . (:text "external-symbols" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("fboundp" . (:text "fboundp" :label "function" :clhs "Body/f_fbound.htm"))
("fceiling" . (:text "fceiling" :label "function" :clhs "Body/f_floorc.htm"))
("fdefinition" . (:text "fdefinition" :label "function" :clhs "Body/f_fdefin.htm"))
("ffloor" . (:text "ffloor" :label "function" :clhs "Body/f_floorc.htm"))
("fifth" . (:text "fifth" :label "function" :clhs "Body/f_firstc.htm"))
("file-author" . (:text "file-author" :label "function" :clhs "Body/f_file_a.htm"))
("file-error" . (:text "file-error" :label "condition" :clhs "Body/e_file_e.htm"))
("file-error-pathname" . (:text "file-error-pathname" :label "function" :clhs "Body/f_file_e.htm"))
("file-length" . (:text "file-length" :label "function" :clhs "Body/f_file_l.htm"))
("file-namestring" . (:text "file-namestring" :label "function" :clhs "Body/f_namest.htm"))
("file-position" . (:text "file-position" :label "function" :clhs "Body/f_file_p.htm"))
("file-stream" . (:text "file-stream" :label "type-specifier" :clhs "Body/t_file_s.htm"))
("file-string-length" . (:text "file-string-length" :label "function" :clhs "Body/f_file_s.htm"))
("file-write-date" . (:text "file-write-date" :label "function" :clhs "Body/f_file_w.htm"))
("fill" . (:text "fill" :label "function" :clhs "Body/f_fill.htm"))
("fill-pointer" . (:text "fill-pointer" :label "function" :clhs "Body/f_fill_p.htm"))
("finally" . (:text "finally" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("find" . (:text "find" :label "function" :clhs "Body/f_find_.htm"))
("find-all-symbols" . (:text "find-all-symbols" :label "function" :clhs "Body/f_find_a.htm"))
("find-class" . (:text "find-class" :label "function" :clhs "Body/f_find_c.htm"))
("find-if" . (:text "find-if" :label "function" :clhs "Body/f_find_.htm"))
("find-if-not" . (:text "find-if-not" :label "function" :clhs "Body/f_find_.htm"))
("find-method" . (:text "find-method" :label "generic function" :clhs "Body/f_find_m.htm"))
("find-package" . (:text "find-package" :label "function" :clhs "Body/f_find_p.htm"))
("find-restart" . (:text "find-restart" :label "function" :clhs "Body/f_find_r.htm"))
("find-symbol" . (:text "find-symbol" :label "function" :clhs "Body/f_find_s.htm"))
("finish-output" . (:text "finish-output" :label "function" :clhs "Body/f_finish.htm"))
("first" . (:text "first" :label "function" :clhs "Body/f_firstc.htm"))
("loop-keyword-fixnum" . (:text "fixnum" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("fixnum" . (:text "fixnum" :label "type-specifier" :clhs "Body/t_fixnum.htm"))
("flet" . (:text "flet" :label "special" :clhs "Body/s_flet_.htm"))
("loop-keyword-float" . (:text "float" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("float" . (:text "float" :label "function" :clhs "Body/a_float.htm"))
("float-digits" . (:text "float-digits" :label "function" :clhs "Body/f_dec_fl.htm"))
("float-precision" . (:text "float-precision" :label "function" :clhs "Body/f_dec_fl.htm"))
("float-radix" . (:text "float-radix" :label "function" :clhs "Body/f_dec_fl.htm"))
("float-sign" . (:text "float-sign" :label "function" :clhs "Body/f_dec_fl.htm"))
("floating-point-inexact" . (:text "floating-point-inexact" :label "condition" :clhs "Body/e_floa_1.htm"))
("floating-point-invalid-operation" . (:text "floating-point-invalid-operation" :label "condition" :clhs "Body/e_floati.htm"))
("floating-point-overflow" . (:text "floating-point-overflow" :label "condition" :clhs "Body/e_floa_2.htm"))
("floating-point-underflow" . (:text "floating-point-underflow" :label "condition" :clhs "Body/e_floa_3.htm"))
("floatp" . (:text "floatp" :label "function" :clhs "Body/f_floatp.htm"))
("floor" . (:text "floor" :label "function" :clhs "Body/f_floorc.htm"))
("fmakunbound" . (:text "fmakunbound" :label "function" :clhs "Body/f_fmakun.htm"))
("for" . (:text "for" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("force-output" . (:text "force-output" :label "function" :clhs "Body/f_finish.htm"))
("format" . (:text "format" :label "function" :clhs "Body/f_format.htm"))
("formatter" . (:text "formatter" :label "macro" :clhs "Body/m_format.htm"))
("fourth" . (:text "fourth" :label "function" :clhs "Body/f_firstc.htm"))
("fresh-line" . (:text "fresh-line" :label "function" :clhs "Body/f_terpri.htm"))
("from" . (:text "from" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("fround" . (:text "fround" :label "function" :clhs "Body/f_floorc.htm"))
("ftruncate" . (:text "ftruncate" :label "function" :clhs "Body/f_floorc.htm"))
("ftype" . (:text "ftype" :label "declare expression" :clhs "Body/d_ftype.htm"))
("funcall" . (:text "funcall" :label "function" :clhs "Body/f_funcal.htm"))
("function" . (:text "function" :label "special" :clhs "Body/a_fn.htm"))
("function-keywords" . (:text "function-keywords" :label "generic function" :clhs "Body/f_fn_kwd.htm"))
("function-lambda-expression" . (:text "function-lambda-expression" :label "function" :clhs "Body/f_fn_lam.htm"))
("functionp" . (:text "functionp" :label "function" :clhs "Body/f_fnp.htm"))
("gcd" . (:text "gcd" :label "function" :clhs "Body/f_gcd.htm"))
("generic-function" . (:text "generic-function" :label "type-specifier" :clhs "Body/t_generi.htm"))
("gensym" . (:text "gensym" :label "function" :clhs "Body/f_gensym.htm"))
("gentemp" . (:text "gentemp" :label "function" :clhs "Body/f_gentem.htm"))
("get" . (:text "get" :label "function" :clhs "Body/f_get.htm"))
("get-decoded-time" . (:text "get-decoded-time" :label "function" :clhs "Body/f_get_un.htm"))
("get-dispatch-macro-character" . (:text "get-dispatch-macro-character" :label "function" :clhs "Body/f_set__1.htm"))
("get-internal-real-time" . (:text "get-internal-real-time" :label "function" :clhs "Body/f_get_in.htm"))
("get-internal-run-time" . (:text "get-internal-run-time" :label "function" :clhs "Body/f_get__1.htm"))
("get-macro-character" . (:text "get-macro-character" :label "function" :clhs "Body/f_set_ma.htm"))
("get-output-stream-string" . (:text "get-output-stream-string" :label "function" :clhs "Body/f_get_ou.htm"))
("get-properties" . (:text "get-properties" :label "function" :clhs "Body/f_get_pr.htm"))
("get-setf-expansion" . (:text "get-setf-expansion" :label "function" :clhs "Body/f_get_se.htm"))
("get-universal-time" . (:text "get-universal-time" :label "function" :clhs "Body/f_get_un.htm"))
("getf" . (:text "getf" :label "function" :clhs "Body/f_getf.htm"))
("gethash" . (:text "gethash" :label "function" :clhs "Body/f_gethas.htm"))
("go" . (:text "go" :label "special" :clhs "Body/s_go.htm"))
("graphic-char-p" . (:text "graphic-char-p" :label "function" :clhs "Body/f_graphi.htm"))
("handler-bind" . (:text "handler-bind" :label "macro" :clhs "Body/m_handle.htm"))
("handler-case" . (:text "handler-case" :label "macro" :clhs "Body/m_hand_1.htm"))
("hash-key" . (:text "hash-key" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("hash-keys" . (:text "hash-keys" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("hash-table" . (:text "hash-table" :label "type-specifier" :clhs "Body/t_hash_t.htm"))
("hash-table-count" . (:text "hash-table-count" :label "function" :clhs "Body/f_hash_1.htm"))
("hash-table-p" . (:text "hash-table-p" :label "function" :clhs "Body/f_hash_t.htm"))
("hash-table-rehash-size" . (:text "hash-table-rehash-size" :label "function" :clhs "Body/f_hash_2.htm"))
("hash-table-rehash-threshold" . (:text "hash-table-rehash-threshold" :label "function" :clhs "Body/f_hash_3.htm"))
("hash-table-size" . (:text "hash-table-size" :label "function" :clhs "Body/f_hash_4.htm"))
("hash-table-test" . (:text "hash-table-test" :label "function" :clhs "Body/f_hash_5.htm"))
("hash-value" . (:text "hash-value" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("hash-values" . (:text "hash-values" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("host-namestring" . (:text "host-namestring" :label "function" :clhs "Body/f_namest.htm"))
("identify" . (:text "identify" :label "function" :clhs "Body/f_identi.htm"))
("if" . (:text "if" :label "special" :clhs "Body/s_if.htm"))
("loop-keyword-if" . (:text "if" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("ignorable" . (:text "ignorable" :label "declare expression" :clhs "Body/d_ignore.htm"))
("ignore" . (:text "ignore" :label "declare expression" :clhs "Body/d_ignore.htm"))
("ignore-errors" . (:text "ignore-errors" :label "macro" :clhs "Body/m_ignore.htm"))
("imagpart" . (:text "imagpart" :label "function" :clhs "Body/f_realpa.htm"))
("import" . (:text "import" :label "function" :clhs "Body/f_import.htm"))
("in" . (:text "in" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("in-package" . (:text "in-package" :label "macro" :clhs "Body/m_in_pkg.htm"))
("incf" . (:text "incf" :label "macro" :clhs "Body/m_incf_.htm"))
("initialize-instance" . (:text "initialize-instance" :label "generic function" :clhs "Body/f_init_i.htm"))
("initially" . (:text "initially" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("inline" . (:text "inline" :label "declare expression" :clhs "Body/d_inline.htm"))
("input-stream-p" . (:text "input-stream-p" :label "function" :clhs "Body/f_in_stm.htm"))
("inspect" . (:text "inspect" :label "function" :clhs "Body/f_inspec.htm"))
("integer" . (:text "integer" :label "type-specifier" :clhs "Body/t_intege.htm"))
("integer-decode-float" . (:text "integer-decode-float" :label "function" :clhs "Body/f_dec_fl.htm"))
("integer-length" . (:text "integer-length" :label "function" :clhs "Body/f_intege.htm"))
("integerp" . (:text "integerp" :label "function" :clhs "Body/f_inte_1.htm"))
("interactive-stream-p" . (:text "interactive-stream-p" :label "function" :clhs "Body/f_intera.htm"))
("intern" . (:text "intern" :label "function" :clhs "Body/f_intern.htm"))
("internal-time-units-per-second" . (:text "internal-time-units-per-second" :label "constant" :clhs "Body/v_intern.htm"))
("intersection" . (:text "intersection" :label "function" :clhs "Body/f_isec_.htm"))
("into" . (:text "into" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("invalid-method-error" . (:text "invalid-method-error" :label "function" :clhs "Body/f_invali.htm"))
("invoke-debugger" . (:text "invoke-debugger" :label "function" :clhs "Body/f_invoke.htm"))
("invoke-restart" . (:text "invoke-restart" :label "function" :clhs "Body/f_invo_1.htm"))
("invoke-restart-interactively" . (:text "invoke-restart-interactively" :label "function" :clhs "Body/f_invo_2.htm"))
("isqrt" . (:text "isqrt" :label "function" :clhs "Body/f_sqrt_.htm"))
("it" . (:text "it" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("keyword" . (:text "keyword" :label "standard package" :clhs "Body/t_kwd.htm"))
("keywordp" . (:text "keywordp" :label "function" :clhs "Body/f_kwdp.htm"))
("labels" . (:text "labels" :label "special" :clhs "Body/s_flet_.htm"))
("lambda" . (:text "lambda" :label "macro" :clhs "Body/a_lambda.htm"))
("lambda-list-keywords" . (:text "lambda-list-keywords" :label "constant" :clhs "Body/v_lambda.htm"))
("lambda-parameters-limit" . (:text "lambda-parameters-limit" :label "constant" :clhs "Body/v_lamb_1.htm"))
("last" . (:text "last" :label "function" :clhs "Body/f_last.htm"))
("lcm" . (:text "lcm" :label "function" :clhs "Body/f_lcm.htm"))
("ldb" . (:text "ldb" :label "function" :clhs "Body/f_ldb.htm"))
("ldb-test" . (:text "ldb-test" :label "function" :clhs "Body/f_ldb_te.htm"))
("ldiff" . (:text "ldiff" :label "function" :clhs "Body/f_ldiffc.htm"))
("least-negative-double-float" . (:text "least-negative-double-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-negative-long-float" . (:text "least-negative-long-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-negative-normalized-double-float" . (:text "least-negative-normalized-double-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-negative-normalized-long-float" . (:text "least-negative-normalized-long-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-negative-normalized-short-float" . (:text "least-negative-normalized-short-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-negative-normalized-single-float" . (:text "least-negative-normalized-single-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-negative-short-float" . (:text "least-negative-short-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-negative-single-float" . (:text "least-negative-single-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-double-float" . (:text "least-positive-double-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-long-float" . (:text "least-positive-long-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-normalized-double-float" . (:text "least-positive-normalized-double-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-normalized-long-float" . (:text "least-positive-normalized-long-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-normalized-short-float" . (:text "least-positive-normalized-short-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-normalized-single-float" . (:text "least-positive-normalized-single-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-short-float" . (:text "least-positive-short-float" :label "constant" :clhs "Body/v_most_1.htm"))
("least-positive-single-float" . (:text "least-positive-single-float" :label "constant" :clhs "Body/v_most_1.htm"))
("length" . (:text "length" :label "function" :clhs "Body/f_length.htm"))
("let" . (:text "let" :label "special" :clhs "Body/s_let_l.htm"))
("let-asterix" . (:text "let*" :label "special" :clhs "Body/s_let_l.htm"))
("lisp-implementation-type" . (:text "lisp-implementation-type" :label "function" :clhs "Body/f_lisp_i.htm"))
("lisp-implementation-version" . (:text "lisp-implementation-version" :label "function" :clhs "Body/f_lisp_i.htm"))
("function-list" . (:text "list" :label "function" :clhs "Body/a_list.htm"))
("list-all-packages" . (:text "list-all-packages" :label "function" :clhs "Body/f_list_a.htm"))
("list-length" . (:text "list-length" :label "function" :clhs "Body/f_list_l.htm"))
("list-asterix" . (:text "list*" :label "function" :clhs "Body/f_list_.htm"))
("listen" . (:text "listen" :label "function" :clhs "Body/f_listen.htm"))
("listp" . (:text "listp" :label "function" :clhs "Body/f_listp.htm"))
("load" . (:text "load" :label "function" :clhs "Body/f_load.htm"))
("load-logical-pathname-translations" . (:text "load-logical-pathname-translations" :label "function" :clhs "Body/f_ld_log.htm"))
("load-time-value" . (:text "load-time-value" :label "special" :clhs "Body/s_ld_tim.htm"))
("locally" . (:text "locally" :label "special" :clhs "Body/s_locall.htm"))
("log" . (:text "log" :label "function" :clhs "Body/f_log.htm"))
("logand" . (:text "logand" :label "function" :clhs "Body/f_logand.htm"))
("logandc1" . (:text "logandc1" :label "function" :clhs "Body/f_logand.htm"))
("logandc2" . (:text "logandc2" :label "function" :clhs "Body/f_logand.htm"))
("logbitp" . (:text "logbitp" :label "function" :clhs "Body/f_logbtp.htm"))
("logcount" . (:text "logcount" :label "function" :clhs "Body/f_logcou.htm"))
("logeqv" . (:text "logeqv" :label "function" :clhs "Body/f_logand.htm"))
("logical-pathname" . (:text "logical-pathname" :label "function" :clhs "Body/a_logica.htm"))
("logical-pathname-translations" . (:text "logical-pathname-translations" :label "function" :clhs "Body/f_logica.htm"))
("logior" . (:text "logior" :label "function" :clhs "Body/f_logand.htm"))
("lognand" . (:text "lognand" :label "function" :clhs "Body/f_logand.htm"))
("lognor" . (:text "lognor" :label "function" :clhs "Body/f_logand.htm"))
("lognot" . (:text "lognot" :label "function" :clhs "Body/f_logand.htm"))
("logorc1" . (:text "logorc1" :label "function" :clhs "Body/f_logand.htm"))
("logorc2" . (:text "logorc2" :label "function" :clhs "Body/f_logand.htm"))
("logtest" . (:text "logtest" :label "function" :clhs "Body/f_logtes.htm"))
("logxor" . (:text "logxor" :label "function" :clhs "Body/f_logand.htm"))
("long-float" . (:text "long-float" :label "type-specifier" :clhs "Body/t_short_.htm"))
("long-float-epsilon" . (:text "long-float-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("long-float-negative-epsilon" . (:text "long-float-negative-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("long-site-name" . (:text "long-site-name" :label "function" :clhs "Body/f_short_.htm"))
("loop" . (:text "loop" :label "macro" :clhs "Body/m_loop.htm"))
("loop-finish" . (:text "loop-finish" :label "macro" :clhs "Body/m_loop_f.htm"))
("lower-case-p" . (:text "lower-case-p" :label "function" :clhs "Body/f_upper_.htm"))
("machine-instance" . (:text "machine-instance" :label "function" :clhs "Body/f_mach_i.htm"))
("machine-type" . (:text "machine-type" :label "function" :clhs "Body/f_mach_t.htm"))
("machine-version" . (:text "machine-version" :label "function" :clhs "Body/f_mach_v.htm"))
("macro-function" . (:text "macro-function" :label "function" :clhs "Body/f_macro_.htm"))
("macroexpand" . (:text "macroexpand" :label "function" :clhs "Body/f_mexp_.htm"))
("macroexpand-once" . (:text "macroexpand-1" :label "function" :clhs "Body/f_mexp_.htm"))
("macrolet" . (:text "macrolet" :label "special" :clhs "Body/s_flet_.htm"))
("make-array" . (:text "make-array" :label "function" :clhs "Body/f_mk_ar.htm"))
("make-broadcast-stream" . (:text "make-broadcast-stream" :label "function" :clhs "Body/f_mk_bro.htm"))
("make-concatenated-stream" . (:text "make-concatenated-stream" :label "function" :clhs "Body/f_mk_con.htm"))
("make-condition" . (:text "make-condition" :label "function" :clhs "Body/f_mk_cnd.htm"))
("make-dispatch-macro-character" . (:text "make-dispatch-macro-character" :label "function" :clhs "Body/f_mk_dis.htm"))
("make-echo-stream" . (:text "make-echo-stream" :label "function" :clhs "Body/f_mk_ech.htm"))
("make-hash-table" . (:text "make-hash-table" :label "function" :clhs "Body/f_mk_has.htm"))
("make-instance" . (:text "make-instance" :label "generic function" :clhs "Body/f_mk_ins.htm"))
("make-instances-obsolete" . (:text "make-instances-obsolete" :label "generic function" :clhs "Body/f_mk_i_1.htm"))
("make-list" . (:text "make-list" :label "function" :clhs "Body/f_mk_lis.htm"))
("make-load-form" . (:text "make-load-form" :label "generic function" :clhs "Body/f_mk_ld_.htm"))
("make-load-form-saving-slots" . (:text "make-load-form-saving-slots" :label "function" :clhs "Body/f_mk_l_1.htm"))
("make-method" . (:text "make-method" :label "function" :clhs "Body/m_call_m.htm"))
("make-package" . (:text "make-package" :label "function" :clhs "Body/f_mk_pkg.htm"))
("make-pathname" . (:text "make-pathname" :label "function" :clhs "Body/f_mk_pn.htm"))
("make-random-state" . (:text "make-random-state" :label "function" :clhs "Body/f_mk_rnd.htm"))
("make-sequence" . (:text "make-sequence" :label "function" :clhs "Body/f_mk_seq.htm"))
("make-string" . (:text "make-string" :label "function" :clhs "Body/f_mk_stg.htm"))
("make-string-input-stream" . (:text "make-string-input-stream" :label "function" :clhs "Body/f_mk_s_1.htm"))
("make-string-output-stream" . (:text "make-string-output-stream" :label "function" :clhs "Body/f_mk_s_2.htm"))
("make-symbol" . (:text "make-symbol" :label "function" :clhs "Body/f_mk_sym.htm"))
("make-synonym-stream" . (:text "make-synonym-stream" :label "function" :clhs "Body/f_mk_syn.htm"))
("make-two-way-stream" . (:text "make-two-way-stream" :label "function" :clhs "Body/f_mk_two.htm"))
("makunbound" . (:text "makunbound" :label "function" :clhs "Body/f_makunb.htm"))
("map" . (:text "map" :label "function" :clhs "Body/f_map.htm"))
("map-into" . (:text "map-into" :label "function" :clhs "Body/f_map_in.htm"))
("mapc" . (:text "mapc" :label "function" :clhs "Body/f_mapc_.htm"))
("mapcan" . (:text "mapcan" :label "function" :clhs "Body/f_mapc_.htm"))
("mapcar" . (:text "mapcar" :label "function" :clhs "Body/f_mapc_.htm"))
("mapcon" . (:text "mapcon" :label "function" :clhs "Body/f_mapc_.htm"))
("maphash" . (:text "maphash" :label "function" :clhs "Body/f_maphas.htm"))
("mapl" . (:text "mapl" :label "function" :clhs "Body/f_mapc_.htm"))
("maplist" . (:text "maplist" :label "function" :clhs "Body/f_mapc_.htm"))
("mask-field" . (:text "mask-field" :label "function" :clhs "Body/f_mask_f.htm"))
("max" . (:text "max" :label "function" :clhs "Body/f_max_m.htm"))
("maximize" . (:text "maximize" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("maximizing" . (:text "maximizing" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("member" . (:text "member" :label "function" :clhs "Body/a_member.htm"))
("member-if" . (:text "member-if" :label "function" :clhs "Body/f_mem_m.htm"))
("member-if-not" . (:text "member-if-not" :label "function" :clhs "Body/f_mem_m.htm"))
("merge" . (:text "merge" :label "function" :clhs "Body/f_merge.htm"))
("merge-pathnames" . (:text "merge-pathnames" :label "function" :clhs "Body/f_merge_.htm"))
("method" . (:text "method" :label "type-specifier" :clhs "Body/t_method.htm"))
("method-combination" . (:text "method-combination" :label "method-combination type" :clhs "Body/a_method.htm"))
("method-combination-error" . (:text "method-combination-error" :label "function" :clhs "Body/f_meth_1.htm"))
("method-qualifiers" . (:text "method-qualifiers" :label "generic function" :clhs "Body/f_method.htm"))
("function-min" . (:text "min" :label "function" :clhs "Body/f_max_m.htm"))
("minimize" . (:text "minimize" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("minimizing" . (:text "minimizing" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("minusp" . (:text "minusp" :label "function" :clhs "Body/f_minusp.htm"))
("mismatch" . (:text "mismatch" :label "function" :clhs "Body/f_mismat.htm"))
("mod" . (:text "mod" :label "function" :clhs "Body/a_mod.htm"))
("most-negative-double-float" . (:text "most-negative-double-float" :label "constant" :clhs "Body/v_most_1.htm"))
("most-negative-fixnum" . (:text "most-negative-fixnum" :label "constant" :clhs "Body/v_most_p.htm"))
("most-negative-long-float" . (:text "most-negative-long-float" :label "constant" :clhs "Body/v_most_1.htm"))
("most-negative-short-float" . (:text "most-negative-short-float" :label "constant" :clhs "Body/v_most_1.htm"))
("most-negative-single-float" . (:text "most-negative-single-float" :label "constant" :clhs "Body/v_most_1.htm"))
("most-positive-double-float" . (:text "most-positive-double-float" :label "constant" :clhs "Body/v_most_1.htm"))
("most-positive-fixnum" . (:text "most-positive-fixnum" :label "constant" :clhs "Body/v_most_p.htm"))
("most-positive-long-float" . (:text "most-positive-long-float" :label "constant" :clhs "Body/v_most_1.htm"))
("most-positive-short-float" . (:text "most-positive-short-float" :label "constant" :clhs "Body/v_most_1.htm"))
("most-positive-single-float" . (:text "most-positive-single-float" :label "constant" :clhs "Body/v_most_1.htm"))
("muffle-warning" . (:text "muffle-warning" :label "function" :clhs "Body/a_muffle.htm"))
("multiple-value-bind" . (:text "multiple-value-bind" :label "macro" :clhs "Body/m_multip.htm"))
("multiple-value-call" . (:text "multiple-value-call" :label "special" :clhs "Body/s_multip.htm"))
("multiple-value-list" . (:text "multiple-value-list" :label "macro" :clhs "Body/m_mult_1.htm"))
("multiple-value-prog1" . (:text "multiple-value-prog1" :label "special" :clhs "Body/s_mult_1.htm"))
("multiple-value-setq" . (:text "multiple-value-setq" :label "macro" :clhs "Body/m_mult_2.htm"))
("multiple-values-limit" . (:text "multiple-values-limit" :label "constant" :clhs "Body/v_multip.htm"))
("name-char" . (:text "name-char" :label "function" :clhs "Body/f_name_c.htm"))
("named" . (:text "named" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("namestring" . (:text "namestring" :label "function" :clhs "Body/f_namest.htm"))
("nbutlast" . (:text "nbutlast" :label "function" :clhs "Body/f_butlas.htm"))
("loop-keyword-nconc" . (:text "nconc" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("nconc" . (:text "nconc" :label "function" :clhs "Body/f_nconc.htm"))
("nconcing" . (:text "nconcing" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("never" . (:text "never" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("next-method-p" . (:text "next-method-p" :label "function" :clhs "Body/f_next_m.htm"))
("nil" . (:text "nil" :label "constant" :clhs "Body/a_nil.htm"))
("nintersection" . (:text "nintersection" :label "function" :clhs "Body/f_isec_.htm"))
("ninth" . (:text "ninth" :label "function" :clhs "Body/f_firstc.htm"))
("no-applicable-method" . (:text "no-applicable-method" :label "generic function" :clhs "Body/f_no_app.htm"))
("no-next-method" . (:text "no-next-method" :label "generic function" :clhs "Body/f_no_nex.htm"))
("not" . (:text "not" :label "function" :clhs "Body/a_not.htm"))
("notany" . (:text "notany" :label "function" :clhs "Body/f_everyc.htm"))
("notevery" . (:text "notevery" :label "function" :clhs "Body/f_everyc.htm"))
("notinline" . (:text "notinline" :label "declare expression" :clhs "Body/d_inline.htm"))
("nreconc" . (:text "nreconc" :label "function" :clhs "Body/f_revapp.htm"))
("nreverse" . (:text "nreverse" :label "function" :clhs "Body/f_revers.htm"))
("nset-difference" . (:text "nset-difference" :label "function" :clhs "Body/f_set_di.htm"))
("nset-exclusive-or" . (:text "nset-exclusive-or" :label "function" :clhs "Body/f_set_ex.htm"))
("nstring-capitalize" . (:text "nstring-capitalize" :label "function" :clhs "Body/f_stg_up.htm"))
("nstring-downcase" . (:text "nstring-downcase" :label "function" :clhs "Body/f_stg_up.htm"))
("nstring-upcase" . (:text "nstring-upcase" :label "function" :clhs "Body/f_stg_up.htm"))
("nsublis" . (:text "nsublis" :label "function" :clhs "Body/f_sublis.htm"))
("nsubst" . (:text "nsubst" :label "function" :clhs "Body/f_substc.htm"))
("nsubst-if" . (:text "nsubst-if" :label "function" :clhs "Body/f_substc.htm"))
("nsubst-if-not" . (:text "nsubst-if-not" :label "function" :clhs "Body/f_substc.htm"))
("nsubstitute" . (:text "nsubstitute" :label "function" :clhs "Body/f_sbs_s.htm"))
("nsubstitute-if" . (:text "nsubstitute-if" :label "function" :clhs "Body/f_sbs_s.htm"))
("nsubstitute-if-not" . (:text "nsubstitute-if-not" :label "function" :clhs "Body/f_sbs_s.htm"))
("nth" . (:text "nth" :label "function" :clhs "Body/f_nth.htm"))
("nth-value" . (:text "nth-value" :label "macro" :clhs "Body/m_nth_va.htm"))
("nthcdr" . (:text "nthcdr" :label "function" :clhs "Body/f_nthcdr.htm"))
("null" . (:text "null" :label "function" :clhs "Body/a_null.htm"))
("number" . (:text "number" :label "type-specifier" :clhs "Body/t_number.htm"))
("numberp" . (:text "numberp" :label "function" :clhs "Body/f_nump.htm"))
("numerator" . (:text "numerator" :label "function" :clhs "Body/f_numera.htm"))
("nunion" . (:text "nunion" :label "function" :clhs "Body/f_unionc.htm"))
("oddp" . (:text "oddp" :label "function" :clhs "Body/f_evenpc.htm"))
("of" . (:text "of" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("of-type" . (:text "of-type" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("on" . (:text "on" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("open" . (:text "open" :label "function" :clhs "Body/f_open.htm"))
("open-stream-p" . (:text "open-stream-p" :label "function" :clhs "Body/f_open_s.htm"))
("optimize" . (:text "optimize" :label "declare expression" :clhs "Body/d_optimi.htm"))
("or" . (:text "or" :label "macro" :clhs "Body/a_or.htm"))
("otherwise" . (:text "otherwise" :label "keyword" :clhs "Body/m_case_.htm"))
("output-stream-p" . (:text "output-stream-p" :label "function" :clhs "Body/f_in_stm.htm"))
("package" . (:text "package" :label "type-specifier" :clhs "Body/t_pkg.htm"))
("package-error" . (:text "package-error" :label "condition" :clhs "Body/e_pkg_er.htm"))
("package-error-package" . (:text "package-error-package" :label "function" :clhs "Body/f_pkg_er.htm"))
("package-name" . (:text "package-name" :label "function" :clhs "Body/f_pkg_na.htm"))
("package-nicknames" . (:text "package-nicknames" :label "function" :clhs "Body/f_pkg_ni.htm"))
("package-shadowing-symbols" . (:text "package-shadowing-symbols" :label "function" :clhs "Body/f_pkg_sh.htm"))
("package-use-list" . (:text "package-use-list" :label "function" :clhs "Body/f_pkg_us.htm"))
("package-used-by-list" . (:text "package-used-by-list" :label "function" :clhs "Body/f_pkg__1.htm"))
("packagep" . (:text "packagep" :label "function" :clhs "Body/f_pkgp.htm"))
("pairlis" . (:text "pairlis" :label "function" :clhs "Body/f_pairli.htm"))
("parse-error" . (:text "parse-error" :label "condition" :clhs "Body/e_parse_.htm"))
("parse-integer" . (:text "parse-integer" :label "function" :clhs "Body/f_parse_.htm"))
("parse-namestring" . (:text "parse-namestring" :label "function" :clhs "Body/f_pars_1.htm"))
("pathname" . (:text "pathname" :label "function" :clhs "Body/a_pn.htm"))
("pathname-device" . (:text "pathname-device" :label "function" :clhs "Body/f_pn_hos.htm"))
("pathname-directory" . (:text "pathname-directory" :label "function" :clhs "Body/f_pn_hos.htm"))
("pathname-host" . (:text "pathname-host" :label "function" :clhs "Body/f_pn_hos.htm"))
("pathname-match-p" . (:text "pathname-match-p" :label "function" :clhs "Body/f_pn_mat.htm"))
("pathname-name" . (:text "pathname-name" :label "function" :clhs "Body/f_pn_hos.htm"))
("pathname-type" . (:text "pathname-type" :label "function" :clhs "Body/f_pn_hos.htm"))
("pathname-version" . (:text "pathname-version" :label "function" :clhs "Body/f_pn_hos.htm"))
("pathnamep" . (:text "pathnamep" :label "function" :clhs "Body/f_pnp.htm"))
("peek-char" . (:text "peek-char" :label "function" :clhs "Body/f_peek_c.htm"))
("phase" . (:text "phase" :label "function" :clhs "Body/f_phase.htm"))
("pi" . (:text "pi" :label "constant" :clhs "Body/v_pi.htm"))
("plusp" . (:text "plusp" :label "function" :clhs "Body/f_minusp.htm"))
("pop" . (:text "pop" :label "macro" :clhs "Body/m_pop.htm"))
("position" . (:text "position" :label "function" :clhs "Body/f_pos_p.htm"))
("position-if" . (:text "position-if" :label "function" :clhs "Body/f_pos_p.htm"))
("position-if-not" . (:text "position-if-not" :label "function" :clhs "Body/f_pos_p.htm"))
("pprint" . (:text "pprint" :label "function" :clhs "Body/f_wr_pr.htm"))
("pprint-dispatch" . (:text "pprint-dispatch" :label "function" :clhs "Body/f_ppr_di.htm"))
("pprint-exit-if-list-exhausted" . (:text "pprint-exit-if-list-exhausted" :label "macro" :clhs "Body/m_ppr_ex.htm"))
("pprint-fill" . (:text "pprint-fill" :label "function" :clhs "Body/f_ppr_fi.htm"))
("pprint-indent" . (:text "pprint-indent" :label "function" :clhs "Body/f_ppr_in.htm"))
("pprint-linear" . (:text "pprint-linear" :label "function" :clhs "Body/f_ppr_fi.htm"))
("pprint-logical-block" . (:text "pprint-logical-block" :label "macro" :clhs "Body/m_ppr_lo.htm"))
("pprint-newline" . (:text "pprint-newline" :label "function" :clhs "Body/f_ppr_nl.htm"))
("pprint-pop" . (:text "pprint-pop" :label "macro" :clhs "Body/m_ppr_po.htm"))
("pprint-tab" . (:text "pprint-tab" :label "function" :clhs "Body/f_ppr_ta.htm"))
("pprint-tabular" . (:text "pprint-tabular" :label "function" :clhs "Body/f_ppr_fi.htm"))
("present-symbol" . (:text "present-symbol" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("present-symbols" . (:text "present-symbols" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("prin1" . (:text "prin1" :label "function" :clhs "Body/f_wr_pr.htm"))
("prin1-to-string" . (:text "prin1-to-string" :label "function" :clhs "Body/f_wr_to_.htm"))
("princ" . (:text "princ" :label "function" :clhs "Body/f_wr_pr.htm"))
("princ-to-string" . (:text "princ-to-string" :label "function" :clhs "Body/f_wr_to_.htm"))
("print" . (:text "print" :label "function" :clhs "Body/f_wr_pr.htm"))
("print-not-readable" . (:text "print-not-readable" :label "condition" :clhs "Body/e_pr_not.htm"))
("print-not-readable-object" . (:text "print-not-readable-object" :label "function" :clhs "Body/f_pr_not.htm"))
("print-object" . (:text "print-object" :label "generic function" :clhs "Body/f_pr_obj.htm"))
("print-unreadable-object" . (:text "print-unreadable-object" :label "macro" :clhs "Body/m_pr_unr.htm"))
("probe-file" . (:text "probe-file" :label "function" :clhs "Body/f_probe_.htm"))
("proclaim" . (:text "proclaim" :label "function" :clhs "Body/f_procla.htm"))
("prog" . (:text "prog" :label "macro" :clhs "Body/m_prog_.htm"))
("prog1" . (:text "prog1" :label "macro" :clhs "Body/m_prog1c.htm"))
("prog2" . (:text "prog2" :label "macro" :clhs "Body/m_prog1c.htm"))
("prog-asterix" . (:text "prog*" :label "macro" :clhs "Body/m_prog_.htm"))
("progn" . (:text "progn" :label "special" :clhs "Body/s_progn.htm"))
("program-error" . (:text "program-error" :label "condition" :clhs "Body/e_progra.htm"))
("progv" . (:text "progv" :label "special" :clhs "Body/s_progv.htm"))
("provide" . (:text "provide" :label "function" :clhs "Body/f_provid.htm"))
("psetf" . (:text "psetf" :label "macro" :clhs "Body/m_setf_.htm"))
("psetq" . (:text "psetq" :label "macro" :clhs "Body/m_psetq.htm"))
("push" . (:text "push" :label "macro" :clhs "Body/m_push.htm"))
("pushnew" . (:text "pushnew" :label "macro" :clhs "Body/m_pshnew.htm"))
("quote" . (:text "quote" :label "special" :clhs "Body/s_quote.htm"))
("random" . (:text "random" :label "function" :clhs "Body/f_random.htm"))
("random-state" . (:text "random-state" :label "type-specifier" :clhs "Body/t_rnd_st.htm"))
("random-state-p" . (:text "random-state-p" :label "function" :clhs "Body/f_rnd_st.htm"))
("rassoc" . (:text "rassoc" :label "function" :clhs "Body/f_rassoc.htm"))
("rassoc-if" . (:text "rassoc-if" :label "function" :clhs "Body/f_rassoc.htm"))
("rassoc-if-not" . (:text "rassoc-if-not" :label "function" :clhs "Body/f_rassoc.htm"))
("ratio" . (:text "ratio" :label "type-specifier" :clhs "Body/t_ratio.htm"))
("rational" . (:text "rational" :label "function" :clhs "Body/a_ration.htm"))
("rationalize" . (:text "rationalize" :label "function" :clhs "Body/f_ration.htm"))
("rationalp" . (:text "rationalp" :label "function" :clhs "Body/f_rati_1.htm"))
("read" . (:text "read" :label "function" :clhs "Body/f_rd_rd.htm"))
("read-byte" . (:text "read-byte" :label "function" :clhs "Body/f_rd_by.htm"))
("read-char" . (:text "read-char" :label "function" :clhs "Body/f_rd_cha.htm"))
("read-char-no-hang" . (:text "read-char-no-hang" :label "function" :clhs "Body/f_rd_c_1.htm"))
("read-delimited-list" . (:text "read-delimited-list" :label "function" :clhs "Body/f_rd_del.htm"))
("read-from-string" . (:text "read-from-string" :label "function" :clhs "Body/f_rd_fro.htm"))
("read-line" . (:text "read-line" :label "function" :clhs "Body/f_rd_lin.htm"))
("read-preserving-whitespace" . (:text "read-preserving-whitespace" :label "function" :clhs "Body/f_rd_rd.htm"))
("read-sequence" . (:text "read-sequence" :label "function" :clhs "Body/f_rd_seq.htm"))
("reader-error" . (:text "reader-error" :label "condition" :clhs "Body/e_rder_e.htm"))
("readtable" . (:text "readtable" :label "type-specifier" :clhs "Body/t_rdtabl.htm"))
("readtable-case" . (:text "readtable-case" :label "function" :clhs "Body/f_rdtabl.htm"))
("readtablep" . (:text "readtablep" :label "function" :clhs "Body/f_rdta_1.htm"))
("real" . (:text "real" :label "type-specifier" :clhs "Body/t_real.htm"))
("realp" . (:text "realp" :label "function" :clhs "Body/f_realp.htm"))
("realpart" . (:text "realpart" :label "function" :clhs "Body/f_realpa.htm"))
("reduce" . (:text "reduce" :label "function" :clhs "Body/f_reduce.htm"))
("reinitialize-instance" . (:text "reinitialize-instance" :label "generic function" :clhs "Body/f_reinit.htm"))
("rem" . (:text "rem" :label "function" :clhs "Body/f_mod_r.htm"))
("remf" . (:text "remf" :label "macro" :clhs "Body/m_remf.htm"))
("remhash" . (:text "remhash" :label "function" :clhs "Body/f_remhas.htm"))
("remove" . (:text "remove" :label "function" :clhs "Body/f_rm_rm.htm"))
("remove-duplicates" . (:text "remove-duplicates" :label "function" :clhs "Body/f_rm_dup.htm"))
("remove-if" . (:text "remove-if" :label "function" :clhs "Body/f_rm_rm.htm"))
("remove-if-not" . (:text "remove-if-not" :label "function" :clhs "Body/f_rm_rm.htm"))
("remove-method" . (:text "remove-method" :label "generic function" :clhs "Body/f_rm_met.htm"))
("remprop" . (:text "remprop" :label "function" :clhs "Body/f_rempro.htm"))
("rename-file" . (:text "rename-file" :label "function" :clhs "Body/f_rn_fil.htm"))
("rename-package" . (:text "rename-package" :label "function" :clhs "Body/f_rn_pkg.htm"))
("repeat" . (:text "repeat" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("replace" . (:text "replace" :label "function" :clhs "Body/f_replac.htm"))
("require" . (:text "require" :label "function" :clhs "Body/f_provid.htm"))
("rest" . (:text "rest" :label "function" :clhs "Body/f_rest.htm"))
("restart" . (:text "restart" :label "type-specifier" :clhs "Body/t_rst.htm"))
("restart-bind" . (:text "restart-bind" :label "macro" :clhs "Body/m_rst_bi.htm"))
("restart-case" . (:text "restart-case" :label "macro" :clhs "Body/m_rst_ca.htm"))
("restart-name" . (:text "restart-name" :label "function" :clhs "Body/f_rst_na.htm"))
("loop-keyword-return" . (:text "return" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("return" . (:text "return" :label "macro" :clhs "Body/m_return.htm"))
("return-from" . (:text "return-from" :label "special" :clhs "Body/s_ret_fr.htm"))
("revappend" . (:text "revappend" :label "function" :clhs "Body/f_revapp.htm"))
("reverse" . (:text "reverse" :label "function" :clhs "Body/f_revers.htm"))
("room" . (:text "room" :label "function" :clhs "Body/f_room.htm"))
("rotatef" . (:text "rotatef" :label "macro" :clhs "Body/m_rotate.htm"))
("round" . (:text "round" :label "function" :clhs "Body/f_floorc.htm"))
("row-major-aref" . (:text "row-major-aref" :label "function" :clhs "Body/f_row_ma.htm"))
("rplaca" . (:text "rplaca" :label "function" :clhs "Body/f_rplaca.htm"))
("rplacd" . (:text "rplacd" :label "function" :clhs "Body/f_rplaca.htm"))
("safety" . (:text "safety" :label "declare expression" :clhs "Body/d_optimi.htm"))
("satisfies" . (:text "satisfies" :label "type-specifier" :clhs "Body/t_satisf.htm"))
("sbit" . (:text "sbit" :label "function" :clhs "Body/f_bt_sb.htm"))
("scale-float" . (:text "scale-float" :label "function" :clhs "Body/f_dec_fl.htm"))
("schar" . (:text "schar" :label "function" :clhs "Body/f_char_.htm"))
("search" . (:text "search" :label "function" :clhs "Body/f_search.htm"))
("second" . (:text "second" :label "function" :clhs "Body/f_firstc.htm"))
("sequence" . (:text "sequence" :label "type-specifier" :clhs "Body/t_seq.htm"))
("serious-condition" . (:text "serious-condition" :label "condition" :clhs "Body/e_seriou.htm"))
("set" . (:text "set" :label "function" :clhs "Body/f_set.htm"))
("set-difference" . (:text "set-difference" :label "function" :clhs "Body/f_set_di.htm"))
("set-dispatch-macro-character" . (:text "set-dispatch-macro-character" :label "function" :clhs "Body/f_set__1.htm"))
("set-exclusive-or" . (:text "set-exclusive-or" :label "function" :clhs "Body/f_set_ex.htm"))
("set-macro-character" . (:text "set-macro-character" :label "function" :clhs "Body/f_set_ma.htm"))
("set-pprint-dispatch" . (:text "set-pprint-dispatch" :label "function" :clhs "Body/f_set_pp.htm"))
("set-syntax-from-char" . (:text "set-syntax-from-char" :label "function" :clhs "Body/f_set_sy.htm"))
("setf" . (:text "setf" :label "macro" :clhs "Body/a_setf.htm"))
("setq" . (:text "setq" :label "special" :clhs "Body/s_setq.htm"))
("seventh" . (:text "seventh" :label "function" :clhs "Body/f_firstc.htm"))
("shadow" . (:text "shadow" :label "function" :clhs "Body/f_shadow.htm"))
("shadowing-import" . (:text "shadowing-import" :label "function" :clhs "Body/f_shdw_i.htm"))
("shared-initialize" . (:text "shared-initialize" :label "generic function" :clhs "Body/f_shared.htm"))
("shiftf" . (:text "shiftf" :label "macro" :clhs "Body/m_shiftf.htm"))
("short-float" . (:text "short-float" :label "type-specifier" :clhs "Body/t_short_.htm"))
("short-float-epsilon" . (:text "short-float-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("short-float-negative-epsilon" . (:text "short-float-negative-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("short-site-name" . (:text "short-site-name" :label "function" :clhs "Body/f_short_.htm"))
("signal" . (:text "signal" :label "function" :clhs "Body/f_signal.htm"))
("signed-byte" . (:text "signed-byte" :label "type-specifier" :clhs "Body/t_sgn_by.htm"))
("signum" . (:text "signum" :label "function" :clhs "Body/f_signum.htm"))
("simple-array" . (:text "simple-array" :label "type-specifier" :clhs "Body/t_smp_ar.htm"))
("simple-base-string" . (:text "simple-base-string" :label "type-specifier" :clhs "Body/t_smp_ba.htm"))
("simple-bit-vector" . (:text "simple-bit-vector" :label "type-specifier" :clhs "Body/t_smp_bt.htm"))
("simple-bit-vector-p" . (:text "simple-bit-vector-p" :label "function" :clhs "Body/f_smp_bt.htm"))
("simple-condition" . (:text "simple-condition" :label "condition" :clhs "Body/e_smp_cn.htm"))
("simple-condition-format-arguments" . (:text "simple-condition-format-arguments" :label "function" :clhs "Body/f_smp_cn.htm"))
("simple-condition-format-control" . (:text "simple-condition-format-control" :label "function" :clhs "Body/f_smp_cn.htm"))
("simple-error" . (:text "simple-error" :label "condition" :clhs "Body/e_smp_er.htm"))
("simple-string" . (:text "simple-string" :label "type-specifier" :clhs "Body/t_smp_st.htm"))
("simple-string-p" . (:text "simple-string-p" :label "function" :clhs "Body/f_smp_st.htm"))
("simple-type-error" . (:text "simple-type-error" :label "condition" :clhs "Body/e_smp_tp.htm"))
("simple-vector" . (:text "simple-vector" :label "type-specifier" :clhs "Body/t_smp_ve.htm"))
("simple-vector-p" . (:text "simple-vector-p" :label "function" :clhs "Body/f_smp_ve.htm"))
("simple-warning" . (:text "simple-warning" :label "condition" :clhs "Body/e_smp_wa.htm"))
("sin" . (:text "sin" :label "function" :clhs "Body/f_sin_c.htm"))
("single-float" . (:text "single-float" :label "type-specifier" :clhs "Body/t_short_.htm"))
("single-float-epsilon" . (:text "single-float-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("single-float-negative-epsilon" . (:text "single-float-negative-epsilon" :label "constant" :clhs "Body/v_short_.htm"))
("sinh" . (:text "sinh" :label "function" :clhs "Body/f_sinh_.htm"))
("sixth" . (:text "sixth" :label "function" :clhs "Body/f_firstc.htm"))
("sleep" . (:text "sleep" :label "function" :clhs "Body/f_sleep.htm"))
("slot-boundp" . (:text "slot-boundp" :label "function" :clhs "Body/f_slt_bo.htm"))
("slot-exists-p" . (:text "slot-exists-p" :label "function" :clhs "Body/f_slt_ex.htm"))
("slot-makunbound" . (:text "slot-makunbound" :label "function" :clhs "Body/f_slt_ma.htm"))
("slot-missing" . (:text "slot-missing" :label "generic function" :clhs "Body/f_slt_mi.htm"))
("slot-unbound" . (:text "slot-unbound" :label "generic function" :clhs "Body/f_slt_un.htm"))
("slot-value" . (:text "slot-value" :label "function" :clhs "Body/f_slt_va.htm"))
("software-type" . (:text "software-type" :label "function" :clhs "Body/f_sw_tpc.htm"))
("software-version" . (:text "software-version" :label "function" :clhs "Body/f_sw_tpc.htm"))
("some" . (:text "some" :label "function" :clhs "Body/f_everyc.htm"))
("sort" . (:text "sort" :label "function" :clhs "Body/f_sort_.htm"))
("space" . (:text "space" :label "declare expression" :clhs "Body/d_optimi.htm"))
("special" . (:text "special" :label "declare expression" :clhs "Body/d_specia.htm"))
("special-operator-p" . (:text "special-operator-p" :label "function" :clhs "Body/f_specia.htm"))
("speed" . (:text "speed" :label "declare expression" :clhs "Body/d_optimi.htm"))
("sqrt" . (:text "sqrt" :label "function" :clhs "Body/f_sqrt_.htm"))
("stable-sort" . (:text "stable-sort" :label "function" :clhs "Body/f_sort_.htm"))
("standard" . (:text "standard" :label "method-combination type" :clhs "Body/07_ffb.htm"))
("standard-char" . (:text "standard-char" :label "type-specifier" :clhs "Body/t_std_ch.htm"))
("standard-char-p" . (:text "standard-char-p" :label "function" :clhs "Body/f_std_ch.htm"))
("standard-class" . (:text "standard-class" :label "type-specifier" :clhs "Body/t_std_cl.htm"))
("standard-generic-function" . (:text "standard-generic-function" :label "type-specifier" :clhs "Body/t_std_ge.htm"))
("standard-method" . (:text "standard-method" :label "type-specifier" :clhs "Body/t_std_me.htm"))
("standard-object" . (:text "standard-object" :label "type-specifier" :clhs "Body/t_std_ob.htm"))
("step" . (:text "step" :label "macro" :clhs "Body/m_step.htm"))
("storage-condition" . (:text "storage-condition" :label "condition" :clhs "Body/e_storag.htm"))
("store-value" . (:text "store-value" :label "function" :clhs "Body/a_store_.htm"))
("stream" . (:text "stream" :label "type-specifier" :clhs "Body/t_stream.htm"))
("stream-element-type" . (:text "stream-element-type" :label "function" :clhs "Body/f_stm_el.htm"))
("stream-error" . (:text "stream-error" :label "condition" :clhs "Body/e_stm_er.htm"))
("stream-error-stream" . (:text "stream-error-stream" :label "function" :clhs "Body/f_stm_er.htm"))
("stream-external-format" . (:text "stream-external-format" :label "function" :clhs "Body/f_stm_ex.htm"))
("streamp" . (:text "streamp" :label "function" :clhs "Body/f_stmp.htm"))
("string" . (:text "string" :label "function" :clhs "Body/a_string.htm"))
("string-capitalize" . (:text "string-capitalize" :label "function" :clhs "Body/f_stg_up.htm"))
("string-downcase" . (:text "string-downcase" :label "function" :clhs "Body/f_stg_up.htm"))
("string-equal" . (:text "string-equal" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-greaterp" . (:text "string-greaterp" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-left-trim" . (:text "string-left-trim" :label "function" :clhs "Body/f_stg_tr.htm"))
("string-lessp" . (:text "string-lessp" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-not-equal" . (:text "string-not-equal" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-not-greaterp" . (:text "string-not-greaterp" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-not-lessp" . (:text "string-not-lessp" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-right-trim" . (:text "string-right-trim" :label "function" :clhs "Body/f_stg_tr.htm"))
("string-stream" . (:text "string-stream" :label "type-specifier" :clhs "Body/t_stg_st.htm"))
("string-trim" . (:text "string-trim" :label "function" :clhs "Body/f_stg_tr.htm"))
("string-upcase" . (:text "string-upcase" :label "function" :clhs "Body/f_stg_up.htm"))
("string-literal-not-equal" . (:text "string/=" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-literal-lt" . (:text "string<" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-literal-lt-equal" . (:text "string<=" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-literal-equal" . (:text "string=" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-literal-gt" . (:text "string>" :label "function" :clhs "Body/f_stgeq_.htm"))
("string-literal-gt-equal" . (:text "string>=" :label "function" :clhs "Body/f_stgeq_.htm"))
("stringp" . (:text "stringp" :label "function" :clhs "Body/f_stgp.htm"))
("structure" . (:text "structure" :label "type-specifier" :clhs "Body/f_docume.htm"))
("structure-class" . (:text "structure-class" :label "type-specifier" :clhs "Body/t_stu_cl.htm"))
("structure-object" . (:text "structure-object" :label "type-specifier" :clhs "Body/t_stu_ob.htm"))
("style-warning" . (:text "style-warning" :label "condition" :clhs "Body/e_style_.htm"))
("sublis" . (:text "sublis" :label "function" :clhs "Body/f_sublis.htm"))
("subseq" . (:text "subseq" :label "function" :clhs "Body/f_subseq.htm"))
("subsetp" . (:text "subsetp" :label "function" :clhs "Body/f_subset.htm"))
("subst" . (:text "subst" :label "function" :clhs "Body/f_substc.htm"))
("subst-if" . (:text "subst-if" :label "function" :clhs "Body/f_substc.htm"))
("subst-if-not" . (:text "subst-if-not" :label "function" :clhs "Body/f_substc.htm"))
("substitute" . (:text "substitute" :label "function" :clhs "Body/f_sbs_s.htm"))
("substitute-if" . (:text "substitute-if" :label "function" :clhs "Body/f_sbs_s.htm"))
("substitute-if-not" . (:text "substitute-if-not" :label "function" :clhs "Body/f_sbs_s.htm"))
("subtypep" . (:text "subtypep" :label "function" :clhs "Body/f_subtpp.htm"))
("sum" . (:text "sum" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("summing" . (:text "summing" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("svref" . (:text "svref" :label "function" :clhs "Body/f_svref.htm"))
("sxhash" . (:text "sxhash" :label "function" :clhs "Body/f_sxhash.htm"))
("loop-keyword-symbol" . (:text "symbol" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("symbol" . (:text "symbol" :label "type-specifier" :clhs "Body/t_symbol.htm"))
("symbol-function" . (:text "symbol-function" :label "function" :clhs "Body/f_symb_1.htm"))
("symbol-macrolet" . (:text "symbol-macrolet" :label "special" :clhs "Body/s_symbol.htm"))
("symbol-name" . (:text "symbol-name" :label "function" :clhs "Body/f_symb_2.htm"))
("symbol-package" . (:text "symbol-package" :label "function" :clhs "Body/f_symb_3.htm"))
("symbol-plist" . (:text "symbol-plist" :label "function" :clhs "Body/f_symb_4.htm"))
("symbol-value" . (:text "symbol-value" :label "function" :clhs "Body/f_symb_5.htm"))
("symbolp" . (:text "symbolp" :label "function" :clhs "Body/f_symbol.htm"))
("symbols" . (:text "symbols" :label "loop-keyword" :clhs "Body/m_loop.htm"))
("synonym-stream" . (:text "synonym-stream" :label "type-specifier" :clhs "Body/t_syn_st.htm"))
("synonym-stream-symbol" . (:text "synonym-stream-symbol" :label "function" :clhs "Body/f_syn_st.htm"))
("literal-t" . (:text "t" :label "constant" :clhs "Body/a_t.htm"))
("tagbody" . (:text "tagbody" :label "special" :clhs "Body/s_tagbod.htm"))