-
Notifications
You must be signed in to change notification settings - Fork 0
/
dp.texi
1597 lines (1191 loc) · 28.6 KB
/
dp.texi
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
@c -*- Mode: Texinfo; -*-
@c ----- diverse.
@ifinfo
@include dpi.texi
@end ifinfo
@ifnotinfo
@include dph.texi
@end ifnotinfo
@c the folowing two macros are there for cross referencing
@c defined symbols in the manual
@c SYMBOL is the name of the symbol
@c TYPE is what type of object that symbol represents
@c types are there to distinguish different objects that have
@c the same symbol i.e. type 'integer' from function 'integer'
@c types are:
@c SYM - catch all symbol for symbols that have only one type
@c SC - System Class
@c CT - Condition Type
@c CV - Constant Value
@c SO - Special Operator
@c TS - Type Specifier
@c S - Symbol
@c M - Macro
@c A - Assessor
@c F - Function
@c D - Declaration
@macro syindexanchor {symbol, type}
@anchor{\type\_\symbol\} @syindex \symbol\
@end macro
@c referece to a symbol
@macro symbolref {symbol, type}
@code{@ref{\type\_\symbol\, \symbol\}}
@end macro
@macro bglos {arg}
@b{\arg\} @anchor{glos-\arg\} @anchor{glos-\arg\s} @anchor{glos-\arg\es} @anchor{glos-\arg\d} @anchor{glos-\arg\ed} @anchor{glos-\arg\ing}
@end macro
@macro spc {}
@w{ }
@end macro
@macro tild {}
~
@end macro
@macro cr {}
@*
@end macro
@macro backslash {}
\\
@end macro
@macro TypographyCaveats {}
@end macro
@macro gexample {arg}
``\arg\''
@end macro
@macro Noun {}
@i{n.}
@end macro
@macro Verb {}
@i{v.}
@end macro
@macro TransitiveVerb {}
@i{v.t.}
@end macro
@macro Adjective {}
@i{adj.}
@end macro
@macro Adverb {}
@i{adv.}
@end macro
@macro ANSI {}
@i{ANSI}
@end macro
@macro IEEE {}
@i{IEEE}
@end macro
@macro ISO {}
@i{ISO}
@end macro
@macro Traditional {}
@i{Trad.}
@end macro
@macro Mathematics {}
@i{Math.}
@end macro
@macro Idiomatic {}
@i{Idiom.}
@end macro
@macro Computers {}
@i{Comp.}
@end macro
@macro rev {}
15.17R
@end macro
@macro DocumentNumber {}
X3J13/94-101R
@end macro
@macro Vtop {}
@end macro
@macro id {arg}
\arg\
@end macro
@macro ampers {}
&
@end macro
@macro break {}
@end macro
@macro keyword {arg}
@f{\arg\}
@end macro
@macro it {arg}
@i{\arg\}
@end macro
@macro lbrack {}
@t{[}
@end macro
@macro rbrack {}
@t{]}
@end macro
@macro negthinspace {}
@end macro
@macro prmseven {arg}
\arg\
@end macro
@macro vert {}
@r{|}
@end macro
@macro minussign {}
@minus{}
@end macro
@macro j {arg}
@i{\arg\}
@end macro
@macro left {}
@end macro
@macro right {}
@end macro
@rmacro mat {arg}
\arg\
@end rmacro
@macro empty {}
()
@end macro
@macro ldots {}
@dots{}
@end macro
@macro over2 {}
/2
@end macro
@macro goodbreak {}
@end macro
@macro dollar {}
$
@end macro
@macro percent {}
%
@end macro
@macro TVar {}
var
@end macro
@macro hfil {}
@end macro
@macro span {}
@end macro
@macro bigl {}
@end macro
@macro bigr {}
@end macro
@macro Bigl {}
@end macro
@macro Bigr {}
@end macro
@macro over {arg}
/(\arg\)
@end macro
@macro Result {}
result
@end macro
@macro starY {}
*
@end macro
@macro starN {}
@w{ }
@end macro
@macro quad {}
@end macro
@rmacro ff {arg}
\arg\
@end rmacro
@macro log {}
log
@end macro
@macro sqrt {arg1}
sqrt(\arg1\)
@end macro
@macro begingroup {}
@end macro
@macro endgroup {}
@end macro
@macro EV {}
@result{}
@end macro
@macro IN {arg}
@kbd{\arg\}
@end macro
@macro None {}
@end macro
@macro eject {}
@end macro
@macro hat {}
^
@end macro
@macro bq {}
`
@end macro
@macro bsl {}
\\
@end macro
@macro lbr {}
@{
@end macro
@macro rbr {}
@}
@end macro
@macro rbracket {}
]
@end macro
@macro lbracket {}
[
@end macro
@macro CR {}
@*
@end macro
@macro vtop {arg}
\arg\
@end macro
@macro NV {}
not@EV{}
@end macro
@macro OV {}
or@EV{}
@end macro
@macro ang {arg}
<\arg\>
@end macro
@macro NewlineChar {}
@ang{Newline}
@end macro
@macro SpaceChar {}
@ang{Space}
@end macro
@macro TabChar {}
@ang{Tab}
@end macro
@macro ReturnChar {}
@ang{Return}
@end macro
@macro LinefeedChar {}
@ang{Linefeed}
@end macro
@macro BackspaceChar {}
@ang{Backspace}
@end macro
@macro PageChar {}
@ang{Page}
@end macro
@macro RuboutChar {}
@ang{Rubout}
@end macro
@macro WhitespaceChar {}
@ang{Whitespace}
@end macro
@macro bull {}
@bullet{}
@end macro
@macro param {arg}
@var{\arg\}
@end macro
@rmacro f {arg}
@code{\arg\}
@end rmacro
@macro bf {arg}
@b{\arg\}
@end macro
@macro tt {arg}
@code{\arg\}
@end macro
@macro medbreak {}
@
@
@end macro
@macro smallbreak {}
@
@end macro
@macro newterm {arg}
@dfn{\arg\}
@cindex \arg\
@end macro
@rmacro hbox {arg}
@w{\arg\}
@end rmacro
@rmacro paren {arg}
@t{(}\arg\@t{)}
@end rmacro
@macro lparen {}
@t{(}
@end macro
@macro rparen {}
@t{)}
@end macro
@macro pronounced {arg}
[\arg\]
@end macro
@rmacro star {arg}
\arg\*
@end rmacro
@macro plus {arg}
\arg\+
@end macro
@rmacro curly {arg}
@t{@{}\arg\@t{@}}
@end rmacro
@macro lcurly {}
@t{@{}
@end macro
@macro rcurly {}
@t{@}}
@end macro
@macro xcurly {}
@t{@{}
@end macro
@macro xparen {}
@end macro
@macro ttbrac {arg}
@t{[}\arg\@t{]}
@end macro
@rmacro brac {arg}
@t{[}\arg\@t{]}
@end rmacro
@c @macro lbrac {}
@c [
@c @end macro
@macro interleave {arg}
@begininterleave{}\arg\@endinterleave{}
@end macro
@macro plusdown {arg}
@plus{@curly{@down{\arg\}}}
@end macro
@macro plusparam {arg}
@plus{@curly{@var{\arg\}}}
@end macro
@macro plusparen {arg}
@plus{@curly{@paren{\arg\}}}
@end macro
@macro stardown {arg}
@star{@curly{@down{\arg\}}}
@end macro
@macro starparam {arg}
@star{@curly{\arg\}}
@end macro
@macro starparen {arg}
@star{@curly{@paren{\arg\}}}
@end macro
@macro VarValue {}
@curly{var @vert{} (var [init-form])}
@end macro
@macro VarInitStep {}
@curly{@var{var} @vert{} @paren{@TVar{} @brac{init-form @brac{step-form}}}}
@end macro
@macro auxbnf {arg1, arg2}
@table @asis
@item @var{\arg1\}::=
\arg2\
@end table
@end macro
@macro kwd {arg}
@t{:\arg\}
@end macro
@macro kwdref {arg}
@t{:\arg\}
@end macro
@macro HairyDefault {}
Complicated defaulting behavior; see below
@end macro
@macro noeval {}
not evaluated
@end macro
@macro evalspecial {}
evaluated as described below
@end macro
@macro eval {}
evaluated
@end macro
@macro noargs {}
@ang{no @term{arguments}}
@end macro
@macro novalues {}
@ang{no @term{values}}
@end macro
@macro metaparam {arg}
@metavar{@var{\arg\}}
@end macro
@macro editorissue {arg}
@end macro
@macro editornote {arg}
@end macro
@macro reviewer {arg}
@end macro
@macro term {arg}
@i{@ref{glos-\arg\, \arg\}}
@end macro
@macro bogusterm {arg}
\arg\
@end macro
@macro DeclsAndDoc {}
@interleave{@curly{declaration}* @vert{} documentation}
@end macro
@macro LocalDeclsAndDoc {}
@interleave{@curly{local-declaration}* @vert{} local-documentation}
@end macro
@macro Shouldcheckanytype {arg1, arg2}
Should signal an error @oftype{type-error} if @var{\arg1\} is not
\arg2\.
@end macro
@macro Shouldchecktype {arg1, arg2}
Should signal an error @oftype{type-error} if @var{\arg1\} is not \arg2\.
@end macro
@macro shouldchecktype {arg1, arg2}
should signal an error @oftype{type-error} if @var{\arg1\} is not \arg2\.
@end macro
@macro Predicate {arg1, arg2}
Returns @term{true} if @var{\arg1\} is \arg2\; otherwise, returns @term{false}.
@end macro
@macro NamedPredicate {arg1, arg2, arg3}
@code{\arg1\} returns @term{true} if @var{\arg2\} is \arg3\;
otherwise, returns @term{false}.
@end macro
@macro TypePredicate {arg1, arg2}
Returns @term{true} if @var{\arg1\} is of @term{type} @code{\arg2\};
otherwise, returns @term{false}.
@end macro
@macro StrictPredicate {arg1, arg2}
Returns @symbolref{t, SC} if @var{\arg1\} is \arg2\; otherwise, returns @code{nil}.
@end macro
@macro Lazychecktype {arg1, arg2}
Should be prepared to signal an error @oftype{type-error} if
@var{\arg1\} is not \arg2\.
@end macro
@macro Lazychecktypes {arg1, arg2}
Should be prepared to signal an error @oftype{type-error} if
@var{\arg1\} are not \arg2\.
@end macro
@macro Lazychecknottype {arg1, arg2}
Should be prepared to signal an error @oftype{type-error} if
@var{\arg1\} is \arg2\.
@end macro
@macro Lazycheckanytype {arg1, arg2}
Should be prepared to signal an error @oftype{type-error} if
any @var{\arg1\} is not \arg2\.
@end macro
@macro Lazycheckanynottype {arg1, arg2}
Should be prepared to signal an error @oftype{type-error} if
any @var{\arg1\} is \arg2\.
@end macro
@macro Checktype {arg1, arg2}
Signals an error @oftype{type-error} if @var{\arg1\} is not \arg2\
@end macro
@macro Checktypes {arg1, arg2}
Signals an error @oftype{type-error} if \arg1\ are not \arg2\
@end macro
@macro Checknottype {arg1, arg2}
Signals an error @oftype{type-error} if @var{\arg1\} is \arg2\
@end macro
@macro Checknottypes {arg1, arg2}
Signals an error @oftype{type-error} if \arg1\ are \arg2\
@end macro
@macro Shouldcheckplus {arg}
Should signal an error @oftype{program-error} if at least one
@var{\arg\} is not supplied.
@end macro
@macro SatisfyTest {arg1, arg2}
The @param{test}, @param{test-not}, and @param{key}
affect how it is determined whether @param{\arg1\} is the same as \arg2\.
For details, @ref{Satisfying a Two-Argument Test}
@end macro
@macro Defun {arg1, arg2}
@defun \arg1\ \arg2\
@end defun
@end macro
@macro Defspec {function, arg}
@defspec \function\ \arg\
@end defspec
@end macro
@macro DefmacWithValues {function, arg, result}
@defmac \function\ \arg\ @result{} \result\
@end defmac
@end macro
@macro DefunWithValues {function, arg, result}
@defun \function\ \arg\ @result{} \result\
@end defun
@end macro
@macro DefspecWithValues {function, arg, result}
@defspec \function\ \arg\ @result{} \result\
@end defspec
@end macro
@macro Defsetf {arg1, arg2, arg3}
@t{(setf (\arg1\ \arg2\) \arg3\)}
@end macro
@macro DefmacWithValuesNewline {function, arg, result}
@defmac \function\ \arg\ @result{} \result\
@end defmac
@end macro
@macro DefspecWithValuesNewline {function, arg, result}
@defspec \function\ \arg\ @result{} \result\
@end defspec
@end macro
@macro DefunWithValuesNewline {function, arg, result}
@defun \function\ \arg\ @result{} \result\
@end defun
@end macro
@macro Deftype {arg1, arg2}
(\arg1\ \arg2\)
@end macro
@macro Defgen {arg1, arg2}
@deffn {Generic Function} \arg1\ \arg2\
@end deffn
@end macro
@macro DefgenWithValues {arg1, arg2, arg3}
@deffn {Generic Function} \arg1\ \arg2\ @result{} \arg3\
@end deffn
@end macro
@macro DefgenWithValuesNewline {arg1, arg2, arg3}
@deffn {Generic Function} \arg1\ \arg2\ @result{} \arg3\
@end deffn
@end macro
@macro specparam {arg1, arg2}
@paren{@var{\arg1\} @code{\arg2\}}
@end macro
@c @alias loopref = code
@macro loopref {arg}
@code{\arg\}
@end macro
@macro keyref {arg}
@code{&\arg\}
@end macro
@macro Theloopconstruct {arg}
The @symbolref{loop, SYM} @loopref{\arg\} construct
@end macro
@macro theloopconstruct {arg}
the @symbolref{loop, SYM} @loopref{\arg\} construct
@end macro
@macro Theloopkeyword {arg}
The @symbolref{loop, SYM} @loopref{\arg\} keyword
@end macro
@macro theloopkeyword {arg}
the @symbolref{loop, SYM} @loopref{\arg\} keyword
@end macro
@macro SETFof {arg}
@code{setf} of @code{\arg\}
@end macro
@macro oftype {type}
of @term{type} @code{\type\}
@end macro
@macro ofclass {type}
of @term{class} @code{\type\}
@end macro
@macro oftypes {arg}
of @term{type} @code{\arg\} or a @term{subtype} of @term{type} @code{\arg\}
@end macro
@macro ofmetaclass {arg}
of @term{metaclass} @code{\arg\}
@end macro
@macro subclassof {arg}
@term{subclass} of @term{type} @code{\arg\}
@end macro
@macro Default {arg}
The default is \arg\.
@end macro
@macro DefaultFor {arg1, arg2}
The default for \arg1\ is \arg2\.
@end macro
@macro DefaultIn {arg1, arg2}
The defaults in \arg1\ is \arg2\.
@end macro
@macro Defaults {arg1, arg2}
The defaults for \arg1\ are \arg2\, respectively.
@end macro
@macro DefaultEach {arg1, arg2}
The defaults for each of \arg1\ is \arg2\.
@end macro
@macro DefaultsEach {arg1, arg2}
The defaults for each of \arg1\ is \arg2\.
@end macro
@macro Thenextfigure {}
The next figure
@end macro
@macro thenextfigure {}
the next figure
@end macro
@macro theclass {arg}
the @term{class} @code{\arg\}
@end macro
@macro Theclass {arg}
The @term{class} @code{\arg\}
@end macro
@macro thevariable {arg}
the @term{variable} @code{\arg\}
@end macro
@macro Thevariable {arg}
The @term{variable} @code{\arg\}
@end macro
@macro thevariables {arg}
the @term{variables} @code{\arg\}
@end macro
@macro Thevariables {arg}
The @term{variables} @code{\arg\}
@end macro
@macro thekeyarg {arg}
the @kwd{\arg\} @term{argument}
@end macro
@macro Thekeyarg {arg}
The @kwd{\arg\} @term{argument}
@end macro
@macro theinitkeyarg {arg}
the @kwd{\arg\} initialization argument
@end macro
@macro Theinitkeyarg {arg}
The @kwd{\arg\} initialization argument
@end macro
@macro theinitkeyargs {arg}
the initialization arguments named @kwd{\arg\}
@end macro
@macro Theinitkeyargs {arg}
The initialization arguments named @kwd{\arg\}
@end macro
@macro themacro {arg}
the @code{\arg\} @term{macro}
@end macro
@macro Themacro {arg}
The @code{\arg\} @term{macro}
@end macro
@macro theGF {arg}
the @term{generic function} @stymbolref{\arg\, SYM}
@end macro
@macro TheGF {arg}
The @term{generic function} @symbolref{\arg\, SYM}
@end macro
@macro Thespecop {arg}
The @code{\arg\} @term{special operator}
@end macro
@macro thespecop {arg}
the @code{\arg\} @term{special operator}
@end macro
@macro thefunction {function}
the @term{function} @code{\function\}
@end macro
@macro Thefunction {function}
The @term{function} @code{\function\}
@end macro
@macro thefunctions {function}
the @term{functions} @code{\function\}
@end macro
@macro Thefunctions {function}
The @term{functions} @code{\function\}
@end macro
@macro thespecform {function}
the @code{\function\} @term{special form}
@end macro
@macro Thespecform {function}
The @code{\function\} @term{special form}
@end macro
@macro thespecforms {function}
the @code{\function\} @term{special forms}
@end macro
@macro Thespecforms {function}
The @code{\function\} @term{special forms}
@end macro
@macro thetype {type}
the @term{type} @code{\type\}
@end macro
@macro Thetype {type}
The @term{type} @code{\type\}
@end macro
@macro thetypes {type}
the @term{types} @code{\type\}
@end macro
@macro Thetypes {type}
The @term{types} @code{\type\}
@end macro
@macro thevalueof {arg}
the @term{value} of @code{\arg\}
@end macro
@macro Thevalueof {arg}
The @term{value} of @code{\arg\}
@end macro
@macro thevaluesof {arg}
the @term{values} of @code{\arg\}
@end macro
@macro Thevaluesof {arg}
The @term{values} of @code{\arg\}
@end macro
@macro subtypeof {arg}
subtype of @term{type} @code{\arg\}
@end macro
@macro subtypesof {arg}
subtypes of @term{type} @code{\arg\}
@end macro
@macro Subtypesof {arg}
Subtypes of @term{type} @code{\arg\}
@end macro
@macro supertypeof {arg}
supertype of @term{type} @code{\arg\}
@end macro
@macro supertypesof {arg}
supertypes of @term{type} @code{\arg\}
@end macro
@macro Supertypeof {arg}
Supertypes of @term{type} @code{\arg\}
@end macro
@c books
@macro CLtL {}
@cite{Common Lisp: The Language}
@end macro
@macro CLtLTwo {}
@cite{@uref{http://www-2.cs.cmu.edu/Groups/AI/html/cltl/cltl2.html,,Common Lisp: The Language Second Edition}}
@end macro
@macro RandomHouseDictionary {}
@cite{The Random House Dictionary of the English Language, Second Edition, Unabridged}
@end macro
@macro WebstersDictionary {}
@cite{Webster's Third New International Dictionary the English Language, Unabridged}
@end macro
@macro CondSysPaper {}
@cite{@uref{http://www.nhplace.com/kent/Papers/Exceptional-Situations-1990.html,,Exceptional Situations in Lisp}}
@end macro
@macro GabrielBenchmarks {}
@cite{@uref{http://www.dreamsongs.com/Books.html,,Performance and Evaluation of Lisp Programs}}
@end macro
@macro KnuthVolThree {}
@cite{The Art of Computer Programming, Volume 3}
@end macro
@macro MetaObjectProtocol {}
@cite{The Art of the Metaobject Protocol}
@end macro
@macro AnatomyOfLisp {}
@cite{The Anatomy of Lisp}
@end macro
@macro FlavorsPaper {}
@cite{Flavors: A Non-Hierarchical Approach to Object-Oriented Programming}
@end macro
@macro LispOnePointFive {}
@cite{@uref{http://green.iis.nsk.su/~vp/doc/lisp1.5/mccarthy.html,,Lisp 1.5 Programmer's Manual}}
@end macro