forked from xach/dpans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChange-Log.text
1517 lines (1227 loc) · 62.4 KB
/
Change-Log.text
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
Comparing Draft 14.10 with Draft 15.17 ...
============================================================
File: chap-0-edit-history.tex
============================================================
Source compare made by kmp on 5/11/94 23:03:14 -*-Mode:Fundamental-*-
of File B:>ansi-cl>spec>source>chap-0-edit-history.tex.82
with File B:>ansi-cl>spec>source>chap-0-edit-history.tex.89
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.82, Line #134:
09-Sep-92 & Samson & Public Review Comments (\#1).\cr
22-Oct-92 & Rose, Yen & Public Review Comments (\#2).\cr
23-Oct-92 & Staley & Public Review Comments (\#3).\cr
09-Nov-92 & Barrett & Public Review Comments (\#4).\cr
11-Nov-92 & Moon & Public Review Comments (\#5).\cr
17-Nov-92 & Loosemore & Public Review Comments (\#6).\cr
23-Nov-92 & Margolin & Public Review Comments (\#7).\cr
23-Nov-92 & Withington & Public Review Comments (\#8a).\cr
23-Nov-92 & Feinberg & Public Review Comments (\#8b).\cr
23-Nov-92 & Wechsler & Public Review Comments (\#8c).\cr
23-Nov-92 & Moore & Public Review Comments (\#9).\cr
23-Nov-92 & Flanagan & Public Review Comments (\#10).\cr
23-Nov-92 & Dalton & Public Review Comments (\#11).\cr
23-Nov-92 & Gallagher & Public Review Comments (\#12).\cr
23-Nov-92 & Norvig & Public Review Comments (\#13).\cr
24-Nov-92 & Robertson & Public Review Comments (\#14).\cr
23-Nov-92 & Kawabe & Public Review Comments (\#15).\cr
23-Nov-92 & Barrett & Public Review Comments (\#16).\cr
23-Nov-92 & Wertheimer & Public Review Comments (\#17).\cr
24-Nov-92 & Pitman & Public Review Comments (\#18).\cr
24-Nov-92 & Mato Mira & Public Review Comments (\#19).\cr
24-Nov-92 & Philpot & Public Review Comments (\#20).\cr
30-Aug-93 & Pitman & Draft 13.65 (for X3J13 consideration). Document X3J13/93-101.\cr
04-Oct-93 & X3J13 & Minor fixes to Draft 13.65 before sending to X3.\cr
05-Oct-93 & Pitman & Draft {\rev} (for X3 consideration). Document {\DocumentNumber}.\cr
%??-???-?? & Pitman & Draft {\rev} (???).\cr
} $$
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.89, Line #134:
09-Sep-92 & Samson & Public Review Comments (\#1). Documents X3J13/92-1001 to 92-1003.\cr
22-Oct-92 & Rose, Yen & Public Review Comments (\#2). Documents X3J13/92-1101 to 92-1103.\cr
23-Oct-92 & Staley & Public Review Comments (\#3). Documents X3J13/92-1201 to 92-1204.\cr
09-Nov-92 & Barrett & Public Review Comments (\#4). Documents X3J13/92-3101 to 92-3110.\cr
11-Nov-92 & Moon & Public Review Comments (\#5). Documents X3J13/92-3201 to 92-3248.\cr
17-Nov-92 & Loosemore & Public Review Comments (\#6). Documents X3J13/92-1301 to 92-1335.\cr
23-Nov-92 & Margolin & Public Review Comments (\#7). Documents X3J13/92-1401 to 92-1419.\cr
23-Nov-92 & Withington & Public Review Comments (\#8a). Documents X3J13/92-1501 to 92-1512.\cr\cr
23-Nov-92 & Feinberg & Public Review Comments (\#8b). Documents X3J13/92-1601 to 92-1603.\cr
23-Nov-92 & Wechsler & Public Review Comments (\#8c). Documents X3J13/92-1701 to 92-1703.\cr
23-Nov-92 & Moore & Public Review Comments (\#9). Documents X3J13/92-1801 to 92-1802.\cr
23-Nov-92 & Flanagan & Public Review Comments (\#10). Documents X3J13/92-1901 to 92-1910.\cr
23-Nov-92 & Dalton & Public Review Comments (\#11). Documents X3J13/92-2001 to 92-2012.\cr
23-Nov-92 & Gallagher & Public Review Comments (\#12). Documents X3J13/92-2101 to 92-2103.\cr
23-Nov-92 & Norvig & Public Review Comments (\#13). Documents X3J13/92-2201 to 92-2208.\cr
24-Nov-92 & Robertson & Public Review Comments (\#14). Document X3J13/92-2301.\cr
23-Nov-92 & Kawabe & Public Review Comments (\#15). Documents X3J13/92-2401 to 92-2403.\cr
23-Nov-92 & Barrett & Public Review Comments (\#16). Documents X3J13/92-2511 to X3J13/92-2531.\cr
23-Nov-92 & Wertheimer & Public Review Comments (\#17). Document X3J13/92-2601.\cr
24-Nov-92 & Pitman & Public Review Comments (\#18). Documents X3J13/92-2701 to 92-2742.\cr
24-Nov-92 & Mato Mira & Public Review Comments (\#19). Documents X3J13/92-2801 to 92-2805.\cr
24-Nov-92 & Philpot & Public Review Comments (\#20). Document X3J13/92-2901.\cr
23-Nov-92 & Cerys & Public Review Comments (\#21). Document X3J13/92-3001.\cr
30-Aug-93 & Pitman & Draft 13.65 (for X3J13 consideration). Document X3J13/93-101.\cr
04-Oct-93 & X3J13 & Minor fixes to Draft 13.65 before sending to X3.\cr
05-Oct-93 & Pitman & Draft 14.10 (for X3 consideration). Document X3J13/93-102.\cr
08-Nov-93 & Dalton & ``reply to reply to pr comments''. Document X3J13/94-311.\cr
04-Apr-94 & Boyer, & \cr
& Kaufmann, & \cr
& Moore & Public Review Comments (\#1). Document X3J13/94-305.\cr
05-Apr-94 & Pitman & Public Review Comments (\#2). Document X3J13/94-306.\cr
14-Mar-94 & Schulenburg & Public Review Comments (\#3). Document X3J13/94-307.\cr
04-Apr-94 & Shepard & Late commentary. Document X3J13/94-309.\cr
05-May-94 & X3J13 & Editorial-only changes to Draft 14.10 in response to comments.\cr
10-May-94 & Pitman & Draft {\rev} (for X3 consideration). Document {\DocumentNumber}.\cr
} $$
***************
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.82, Line #175:
Committee Chairs:&\cr
\noalign{\vskip 8pt}
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.89, Line #184:
%Committee Chairs:&\cr
Ad Hoc Group Chairs:&\cr
\noalign{\vskip 8pt}
***************
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.82, Line #180:
& Fahlman, Scott \cr
Compiler & Haflich, Steve \cr
& Loosemore, Sandra \cr
Conditions & Pitman, Kent M. \cr
& Daniels, Andy \cr
Editorial & Chapman, Kathy \cr
% Graphics \& Windows & ??? \cr
Iteration & White, JonL \cr
& Waters, Richard C. \cr
& Perdue, Crispin \cr
Lisp$\sub1$/Lisp$\sub2$ & Gabriel, Richard P. \cr
& Pitman, Kent M. \cr
Macros & Haflich, Steve \cr
& Pitman, Kent M. \cr
Objects & Bobrow, Daniel G. \cr
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.89, Line #190:
& Fahlman, Scott \cr
Compiler & Haflich, Steve \cr
& Loosemore, Sandra \cr
Conditions & Pitman, Kent M. \cr
%% Removed per X3J13 at May 4-5, 1994 meeting. -kmp 9-May-94
% & Daniels, Andy \cr
Editorial & Chapman, Kathy \cr
%% Added per X3J13 at May 4-5, 1994 meeting. -kmp 9-May-94
Graphics \& Windows & Douglas Rand \cr
Iteration & White, JonL \cr
%% Removed per X3J13 at May 4-5, 1994 meeting. -kmp 9-May-94
% & Waters, Richard C. \cr
% & Perdue, Crispin \cr
Lisp$\sub1$/Lisp$\sub2$ & Gabriel, Richard P. \cr
%% Removed per X3J13 at May 4-5, 1994 meeting. -kmp 9-May-94
% & Pitman, Kent M. \cr
Macros & Haflich, Steve \cr
& Pitman, Kent M. \cr
Objects & Bobrow, Daniel G. \cr
***************
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.82, Line #209:
Mathis, Robert& % Convenor; Chairman; Interfacing to X3, etc.
Barrett, Kim\cr % Administration of Cleanup
Steele, Guy L., Jr.& % Interfacing to X3, etc.; Vice-Chairman; Roberts Rules expert
Brown, Gary\cr % Secretary, Funding administration for DEC's editorship
Zubkoff, Jan L.& % Meeting organization, Secretary, Funding administration for Lucid
Eiron, Hanoch\cr % Funding administration for Franz, Help finding other funding
Gabriel, Richard P.& % Interfacing to ISO, etc.
Haflich, Steve\cr % Establishment of second-generation CL Editorship
Masinter, Larry& % Administration of Cleanup, agenda setting
Whittemore, Susan\cr % Funding administration for Apple
Loosemore, Sandra& % Administration of Cleanup & Compiler, agenda setting
Woodyatt, Anne\cr % Funding administration for Harlequin
Pitman, Kent M.& % Administration of Cleanup, agenda setting
Ida, Masayuki\cr % International Liaison to Japan
}
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.89, Line #223:
%% Added "Loeffler" and "Tyson" per Pitman #3 (by X3J13 vote at May 4-5, 1994 meeting)
%% -kmp 9-May-94
Mathis, Robert& % Convenor; Chairman; Interfacing to X3, etc.
Brown, Gary\cr % Secretary, Funding administration for DEC's editorship
Steele, Guy L., Jr.& % Interfacing to X3, etc.; Vice-Chairman; Roberts Rules expert
Eiron, Hanoch\cr % Funding administration for Franz, Help finding other funding
Zubkoff, Jan L.& % Meeting organization, Secretary, Funding administration for Lucid
Haflich, Steve\cr % Establishment of second-generation CL Editorship
Gabriel, Richard P.& % Interfacing to ISO, etc.
Ida, Masayuki\cr % International Liaison to Japan
Masinter, Larry& % Administration of Cleanup, agenda setting
Loeffler, David D.\cr % Mailing lists at MCC
Loosemore, Sandra& % Administration of Cleanup & Compiler, agenda setting
Tyson, Mabry\cr % Mailing lists at SRI
Pitman, Kent M.& % Administration of Cleanup, agenda setting
Whittemore, Susan\cr % Funding administration for Apple
Barrett, Kim& % Administration of Cleanup
Woodyatt, Anne\cr % Funding administration for Harlequin
}
***************
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.82, Line #235:
DeMichiel, Linda G. & % CLOS
Moon, David A. \cr % Review, CLOS, Conditions
Dussud, Patrick H. & % CLOS
Pitman, Kent M. \cr % Review, Conditions, Cleanup, Editor
Gabriel, Richard P. & % Review, Editing, CLOS
Steele, Guy L., Jr. \cr % Review, CLtL
Ida, Masayuki & % Administration of Public Review work
Waters, Richard C. \cr % Pretty Printer
Kiczales, Gregor & % CLOS
**** File B:>ansi-cl>spec>source>chap-0-edit-history.tex.89, Line #253:
Daniels, Andy & % Conditions
Moon, David A. \cr % Review, CLOS, Conditions
DeMichiel, Linda G. & % CLOS
Pitman, Kent M. \cr % Review, Conditions, Cleanup, Editor, Lisp1/Lisp2
Dussud, Patrick H. & % CLOS
Perdue, Crispin \cr % Iteration
Gabriel, Richard P. & % Review, Editing, CLOS
Steele, Guy L., Jr. \cr % Review, CLtL
Ida, Masayuki & % Administration of Public Review work
Waters, Richard C. \cr % Pretty Printer, Iteration
Kiczales, Gregor & % CLOS
***************
Done.
============================================================
File: concept-arrays.tex
============================================================
Source compare made by kmp on 5/11/94 13:45:14
of File B:>ansi-cl>spec>source>concept-arrays.tex.19
with File B:>ansi-cl>spec>source>concept-arrays.tex.20
**** File B:>ansi-cl>spec>source>concept-arrays.tex.19, Line #130:
\displaythree{General Purpose Array-Related Defined Names}{
adjust-array&array-in-bounds-p&svref\cr
adjustable-array-p&array-rank&upgraded-array-element-type\cr
aref&array-rank-limit&upgraded-complex-part-type\cr
array-dimension&array-row-major-index&vector\cr
array-dimension-limit&array-total-size&vector-pop\cr
array-dimensions&array-total-size-limit&vector-push\cr
array-element-type&fill-pointer&vector-push-extend\cr
array-has-fill-pointer-p&make-array&\cr
}
**** File B:>ansi-cl>spec>source>concept-arrays.tex.20, Line #130:
%% Added ARRAY-DISPLACEMENT per Tom Shepard. (X3J13 approved: May 4-5, 1994)
%% -kmp 9-May-94
\displaythree{General Purpose Array-Related Defined Names}{
adjust-array&array-has-fill-pointer-p&make-array\cr
adjustable-array-p&array-in-bounds-p&svref\cr
aref&array-rank&upgraded-array-element-type\cr
array-dimension&array-rank-limit&upgraded-complex-part-type\cr
array-dimension-limit&array-row-major-index&vector\cr
array-dimensions&array-total-size&vector-pop\cr
array-displacement&array-total-size-limit&vector-push\cr
array-element-type&fill-pointer&vector-push-extend\cr
}
***************
Done.
============================================================
File: concept-conformance.tex
============================================================
Source compare made by kmp on 5/11/94 13:45:15
of File B:>ansi-cl>spec>source>concept-conformance.tex.66
with File B:>ansi-cl>spec>source>concept-conformance.tex.68
**** File B:>ansi-cl>spec>source>concept-conformance.tex.66:
\itemitem{2.} \term{Conforming code} shall not rely on any particular
interpretation of \term{implementation-dependent} features.
**** File B:>ansi-cl>spec>source>concept-conformance.tex.68, Line #130:
%% Rewritten per X3J13 and Boyer/Kaufmann/Moore #2 (second public review).
%% -kmp 9-May-94
% \itemitem{2.} \term{Conforming code} shall not rely on any particular
% interpretation of \term{implementation-dependent} features.
\itemitem{2.} \term{Conforming code} may use
\term{implementation-dependent} features and values,
but shall not rely upon
any particular interpretation of these features and values
other than those that are discovered by the execution of \term{code}.
***************
**** File B:>ansi-cl>spec>source>concept-conformance.tex.66, Line #191:
%!!! Barmar wonders if this is really the right place for the next sentence.
\term{Portable code} is written using only \term{standard characters}.
**** File B:>ansi-cl>spec>source>concept-conformance.tex.68, Line #199:
%% Moved to its own section (see below) per Dalton #1 (1st Public Review)
%% by X3J13 vote May 4-5, 1994 (after 2nd public review).
%% -kmp 9-May-94
% %!!! Barmar wonders if this is really the right place for the next sentence.
% \term{Portable code} is written using only \term{standard characters}.
***************
**** File B:>ansi-cl>spec>source>concept-conformance.tex.66, Line #257:
\endsubSection%{Conforming Programs}
**** File B:>ansi-cl>spec>source>concept-conformance.tex.68, Line #268:
\beginsubsubsection{Character Set for Portable Code}
\term{Portable code} is written using only \term{standard characters}.
\endsubsubsection%{Character Set for Portable Code}
\endsubSection%{Conforming Programs}
***************
Done.
============================================================
File: concept-definitions.tex
============================================================
Source compare made by kmp on 5/11/94 13:45:16
of File B:>ansi-cl>spec>source>concept-definitions.tex.174
with File B:>ansi-cl>spec>source>concept-definitions.tex.177
**** File B:>ansi-cl>spec>source>concept-definitions.tex.174, Line #596:
\beginsubSection{Error Terminology}\idxterm{error terminology}
\DefineSection{ErrorTerms}
**** File B:>ansi-cl>spec>source>concept-definitions.tex.177, Line #596:
\beginsubSection{Error Terminology}\idxtext{error terminology}
\DefineSection{ErrorTerms}
***************
**** File B:>ansi-cl>spec>source>concept-definitions.tex.174, Line #885:
\endsubsubsection%{The ``Arguments and Values'' Section of a Dictionary Entry}
**** File B:>ansi-cl>spec>source>concept-definitions.tex.177, Line #885:
%% I added the first part of this sentence as editorial discretion
%% since I believe we strongly feel that this is not specified otherwise,
%% but we want to avoid an unexpected conflict in case it is. -kmp 9-May-94
Except as explicitly specified otherwise,
%% Added per X3J13 at May 4-5, 1994 meeting. -kmp 9-May-94
the consequences are undefined if these type restrictions are violated.
\endsubsubsection%{The ``Arguments and Values'' Section of a Dictionary Entry}
***************
**** File B:>ansi-cl>spec>source>concept-definitions.tex.174, Line #1042:
This information describes the argument precedence order.
If it is omitted, the argument precedence order is the default (left to right).
**** File B:>ansi-cl>spec>source>concept-definitions.tex.177, Line #1049:
%% Added italic font for "argument precedence order" per Boyer/Kaufmann/Moore #3.
%% -kmp 9-May-94
This information describes the \term{argument precedence order}.
If it is omitted, the \term{argument precedence order} is the default (left to right).
***************
**** File B:>ansi-cl>spec>source>concept-definitions.tex.174, Line #1382:
\endsubsubsection%{The ``Value Type'' Section of a Dictionary Entry}
**** File B:>ansi-cl>spec>source>concept-definitions.tex.177, Line #1391:
%% I added the first part of this sentence as editorial discretion
%% since I believe we strongly feel that this is not specified otherwise,
%% but we want to avoid an unexpected conflict in case it is. -kmp 9-May-94
Except as explicitly specified otherwise,
%% Added per X3J13 at May 4-5, 1994 meeting. -kmp 9-May-94
the consequences are undefined if this type restriction is violated.
\endsubsubsection%{The ``Value Type'' Section of a Dictionary Entry}
***************
Done.
============================================================
File: concept-format.tex
============================================================
Source compare made by kmp on 5/11/94 13:45:18
of File B:>ansi-cl>spec>source>concept-format.tex.41
with File B:>ansi-cl>spec>source>concept-format.tex.44
**** Section "Tilde C: Character"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #137:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #137:
\idxtext{C (format directive)}\idxtext{Tilde C (format directive)}
***************
**** Section "Tilde Percent: Newline"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #207:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #209:
\idxtext{Percent (format directive)}\idxtext{Tilde Percent (format directive)}
***************
**** Section "Tilde Ampersand: Fresh-Line"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #218:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #221:
\idxtext{Ampersand (format directive)}\idxtext{Tilde Ampersand (format directive)}
***************
**** Section "Tilde Vertical-Bar: Page"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #231:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #235:
\idxtext{Vertical-Bar (format directive)}\idxtext{Tilde Vertical-Bar (format directive)}
***************
**** Section "Tilde Tilde: Tilde"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #242:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #247:
\idxtext{Tilde (format directive)}\idxtext{Tilde Tilde (format directive)}
***************
**** Section "Tilde R: Radix"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #252:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #258:
\idxtext{R (format directive)}\idxtext{Tilde R (format directive)}
***************
**** Section "Tilde D: Decimal"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #314:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #321:
\idxtext{D (format directive)}\idxtext{Tilde D (format directive)}
***************
**** Section "Tilde B: Binary"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #365:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #373:
\idxtext{B (format directive)}\idxtext{Tilde B (format directive)}
***************
**** Section "Tilde O: Octal"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #385:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #394:
\idxtext{O (format directive)}\idxtext{Tilde O (format directive)}
***************
**** Section "Tilde X: Hexadecimal"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #405:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #415:
\idxtext{X (format directive)}\idxtext{Tilde X (format directive)}
***************
**** Section "Tilde F: Fixed-Format Floating-Point"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #429:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #440:
\idxtext{F (format directive)}\idxtext{Tilde F (format directive)}
***************
**** Section "Tilde E: Exponential Floating-Point"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #534:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #546:
\idxtext{E (format directive)}\idxtext{Tilde E (format directive)}
***************
**** Section "Tilde G: General Floating-Point"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #667:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #680:
\idxtext{G (format directive)}\idxtext{Tilde G (format directive)}
***************
**** Section "Tilde Dollarsign: Monetary Floating-Point"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #716:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #730:
\idxtext{Dollarsign (format directive)}\idxtext{Tilde Dollarsign (format directive)}
***************
**** Section "Tilde A: Aesthetic"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #787:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #802:
\idxtext{A (format directive)}\idxtext{Tilde A (format directive)}
***************
**** Section "Tilde S: Standard"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #830:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #846:
\idxtext{S (format directive)}\idxtext{Tilde S (format directive)}
***************
**** Section "Tilde W: Write"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #850:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #867:
\idxtext{W (format directive)}\idxtext{Tilde W (format directive)}
***************
**** Section "Tilde Underscore: Conditional Newline"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #876:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #894:
\idxtext{Underscore (format directive)}\idxtext{Tilde Underscore (format directive)}
***************
**** Section "Tilde Less-Than-Sign: Logical Block"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #886:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #905:
\idxtext{Less-Than-Sign (format directive)}\idxtext{Tilde Less-Than-Sign (format directive)}
***************
**** Section "Tilde I: Indent"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #955:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #975:
\idxtext{I (format directive)}\idxtext{Tilde I (format directive)}
***************
**** Section "Tilde Slash: Call Function"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #964:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #985:
\idxtext{Slash (format directive)}\idxtext{Tilde Slash (format directive)}
***************
**** Section "Tilde T: Tabulate"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1012:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1034:
\idxtext{T (format directive)}\idxtext{Tilde T (format directive)}
***************
**** Section "Tilde Less-Than-Sign: Justification"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1068:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1091:
\idxtext{Less-Than-Sign (format directive)}\idxtext{Tilde Less-Than-Sign (format directive)}
***************
**** Section "Tilde Greater-Than-Sign: End of Justification"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1151:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1175:
\idxtext{Greater-Than-Sign (format directive)}\idxtext{Tilde Greater-Than-Sign (format directive)}
***************
**** Section "Tilde Asterisk: Go-To"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1164:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1189:
\idxtext{Asterisk (format directive)}\idxtext{Tilde Asterisk (format directive)}
***************
**** Section "Tilde Left-Bracket: Conditional Expression"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1192:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1218:
\idxtext{Left-Bracket (format directive)}\idxtext{Tilde Left-Bracket (format directive)}
***************
**** Section "Tilde Right-Bracket: End of Conditional Expression"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1271:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1298:
\idxtext{Right-Bracket (format directive)}\idxtext{Tilde Right-Bracket (format directive)}
***************
**** Section "Tilde Left-Brace: Iteration"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1280:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1308:
\idxtext{Left-Brace (format directive)}\idxtext{Tilde Left-Brace (format directive)}
***************
**** Section "Tilde Right-Brace: End of Iteration"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1390:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1419:
\idxtext{Right-Brace (format directive)}\idxtext{Tilde Right-Brace (format directive)}
***************
**** Section "Tilde Question-Mark: Recursive Processing"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1399:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1429:
\idxtext{Question-Mark (format directive)}\idxtext{Tilde Question-Mark (format directive)}
***************
**** Section "Tilde Left-Paren: Case Conversion"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1443:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1474:
\idxtext{Left-Paren (format directive)}\idxtext{Tilde Left-Paren (format directive)}
***************
**** Section "Tilde Right-Paren: End of Case Conversion"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1492:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1524:
\idxtext{Right-Paren (format directive)}\idxtext{Tilde Right-Paren (format directive)}
***************
**** Section "Tilde P: Plural"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1501:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1534:
\idxtext{P (format directive)}\idxtext{Tilde P (format directive)}
***************
**** Section "Tilde Semicolon: Clause Separator"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1534:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1568:
\idxtext{Semicolon (format directive)}\idxtext{Tilde Semicolon (format directive)}
***************
**** Section "Tilde Circumflex: Escape Upward"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1543:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1578:
\idxtext{Circumflex (format directive)}\idxtext{Tilde Circumflex (format directive)}
***************
**** Section "Tilde Newline: Ignored Newline"
**** File B:>ansi-cl>spec>source>concept-format.tex.41, Line #1648:
**** File B:>ansi-cl>spec>source>concept-format.tex.44, Line #1684:
\idxtext{Newline (format directive)}\idxtext{Tilde Newline (format directive)}
***************
Done.
============================================================
File: concept-glossary.tex
============================================================
Source compare made by kmp on 5/11/94 13:45:21
of File B:>ansi-cl>spec>source>concept-glossary.tex.210
with File B:>ansi-cl>spec>source>concept-glossary.tex.212
**** Glossary entry "binding"
**** File B:>ansi-cl>spec>source>concept-glossary.tex.210, Line #488:
**** File B:>ansi-cl>spec>source>concept-glossary.tex.212, Line #488:
%% Added per Boyer/Kaufmann/Moore #5 (by X3J13 vote at May 4-5, 1994 meeting).
%% -kmp 9-May-94
When the term \term{binding} is qualified by the name of a \term{namespace},
such as ``variable'' or ``function,''
it restricts the binding to the indicated namespace, as in:
\gexample{\specref{let} establishes variable bindings.}
or
\gexample{\specref{let} establishes bindings of variables.}
***************
**** Glossary entry "function name"
**** File B:>ansi-cl>spec>source>concept-glossary.tex.210, Line #2189:
\gentry{function name} \Noun\ (in an \term{environment})
A \term{symbol} or a \term{list} \f{(setf \i{symbol})}
that is the \term{name} of a \term{function} in that \term{environment}.
**** File B:>ansi-cl>spec>source>concept-glossary.tex.212, Line #2197:
\gentry{function name} \Noun\
1. (in an \term{environment})
A \term{symbol} or a \term{list} \f{(setf \i{symbol})}
that is the \term{name} of a \term{function} in that \term{environment}.
***************
**** Glossary entry "function name"
**** File B:>ansi-cl>spec>source>concept-glossary.tex.210, Line #2198:
**** File B:>ansi-cl>spec>source>concept-glossary.tex.212, Line #2207:
%% Added per Boyer/Kaufmann/Moore #8,#9 (by X3J13 vote at May 4-5, 1994 meeting)
%% -kmp 9-May-94
2. A \term{symbol} or a \term{list} \f{(setf \i{symbol})}.
***************
**** Glossary entry "variable"
**** File B:>ansi-cl>spec>source>concept-glossary.tex.210, Line #5003:
%!!! Moon: This is certainly no valid definition, especially when contrasting
% the variable namespace with the function namespace.
\gentry{variable} \Noun\
a \term{binding} in which a \term{symbol} is the \term{name}
used to refer to an \term{object}.
**** File B:>ansi-cl>spec>source>concept-glossary.tex.212, Line #5015:
\gentry{variable} \Noun\
%% Rewritten per Boyer/Kaufmann/Moore #5 (by X3J13 vote at May 4-5, 1994 meeting).
%% -kmp 9-May-94
% %!!! Moon: This is certainly no valid definition, especially when contrasting
% % the variable namespace with the function namespace.
% a \term{binding} in which a \term{symbol} is the \term{name}
% used to refer to an \term{object}.
a \term{binding} in the ``variable'' \term{namespace}.
\Seesection\SymbolsAsForms.
***************
Done.
============================================================
File: concept-macro-chars.tex
============================================================
Source compare made by kmp on 5/11/94 13:45:27
of File B:>ansi-cl>spec>source>concept-macro-chars.tex.140
with File B:>ansi-cl>spec>source>concept-macro-chars.tex.152
**** Section "Left-Parenthesis"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #18:
\DefineSection{LeftParen}
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #18:
\DefineSection{LeftParen}\idxcode{(}\idxtext{Left-Parenthesis (reader macro)}\idxref{list}
***************
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #52:
If a \term{token} that is just a dot
not immediately preceded by an escape character
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #52
If a \term{token} that is just a dot\idxterm{dot}\idxcode{.}
not immediately preceded by an escape character
***************
**** Section "Right-Parenthesis"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #88:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #88:
\idxcode{)}\idxtext{Right-Parenthesis (reader macro)}
***************
**** Section "Single-Quote"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #99:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #100:
\idxcode{'}\idxtext{Single-Quote (reader macro)}\idxtext{quotation (of forms)}\idxref{quote}
***************
**** Section "Semicolon"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #123:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #125:
\idxcode{;}\idxtext{Semicolon (reader macro)}\idxtext{comment}
***************
**** Section "Double-Quote"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #231:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #234:
\idxtext{Double-Quote (reader macro)}\idxtext{quotation (of strings)}\idxref{string}
***************
**** Section "Backquote"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #281:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #285:
\idxcode{`}\idxtext{Backquote (reader macro)}\idxtext{quotation (of forms)}
\idxref{quote}\idxref{list}\idxref{cons}
***************
**** Section "Comma"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #466:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #472:
\idxcode{,}\idxtext{Comma (reader macro)}\idxtext{quotation (of forms)}
\idxref{quote}\idxref{list}\idxref{cons}
***************
**** Section "Sharpsign"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #476:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #484:
\idxcode{\#}\idxtext{Sharpsign (reader macro)}
***************
**** Section "Sharpsign Backslash"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #615:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #624:
\idxtext{Sharpsign Backslash (reader macro)}\idxtext{Backslash (sharpsign reader macro)}\idxref{character}
***************
**** Section "Sharpsign Single-Quote"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #670:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #680:
\idxtext{Sharpsign Single-Quote (reader macro)}\idxtext{Single-Quote (sharpsign reader macro)}\idxref{function}
***************
**** Section "Sharpsign Left-Parenthesis"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #694:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #705:
\idxtext{Sharpsign Left-Parenthesis (reader macro)}\idxtext{Left-Parenthesis (sharpsign reader macro)}\idxref{vector}\idxref{simple-vector}
***************
**** Section "Sharpsign Asterisk"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #746:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #758:
\idxtext{Sharpsign Asterisk (reader macro)}\idxtext{Asterisk (sharpsign reader macro)}\idxref{bit-vector}\idxref{simple-bit-vector}
***************
**** Section "Sharpsign Colon"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #806:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #819:
\idxtext{Sharpsign Colon (reader macro)}\idxtext{Colon (sharpsign reader macro)}\idxref{symbol}
***************
**** Section "Sharpsign Dot"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #833:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #847:
\idxtext{Sharpsign Dot (reader macro)}\idxtext{Dot (sharpsign reader macro)}\idxref{eval}\idxref{*read-eval*}
***************
**** Section "Sharpsign B"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #873:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #888:
\idxtext{Sharpsign B (reader macro)}\idxtext{B (sharpsign reader macro)}\idxref{*read-base*}
***************
**** Section "Sharpsign O"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #893:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #909:
\idxtext{Sharpsign O (reader macro)}\idxtext{O (sharpsign reader macro)}\idxref{*read-base*}
***************
**** Section "Sharpsign X"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #914:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #931:
\idxtext{Sharpsign X (reader macro)}\idxtext{X (sharpsign reader macro)}\idxref{*read-base*}
***************
**** Section "Sharpsign R"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #935:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #953:
\idxtext{Sharpsign R (reader macro)}\idxtext{R (sharpsign reader macro)}\idxref{*read-base*}
***************
**** Section "Sharpsign C"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #980:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #999:
\idxtext{Sharpsign C (reader macro)}\idxtext{C (sharpsign reader macro)}\idxref{complex}
***************
**** Section "Sharpsign A"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1017:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1037:
\idxtext{Sharpsign A (reader macro)}\idxtext{A (sharpsign reader macro)}\idxref{array}
***************
**** Section "Sharpsign S"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1067:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1088:
\idxtext{Sharpsign S (reader macro)}\idxtext{S (sharpsign reader macro)}\idxref{structure}
***************
**** Section "Sharpsign P"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1105:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1127:
\idxtext{Sharpsign P (reader macro)}\idxtext{P (sharpsign reader macro)}\idxref{pathname}
***************
**** Section "Sharpsign Equal-Sign"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1125:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1148:
\idxtext{Sharpsign Equal-Sign (reader macro)}\idxtext{Equal-Sign (sharpsign reader macro)}\idxref{*print-circle*}
***************
**** Section "Sharpsign Sharpsign"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1140:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1164:
\idxtext{Sharpsign Sharpsign (reader macro)}\idxtext{Sharpsign (sharpsign reader macro)}\idxref{*print-circle*}
***************
**** Section "Sharpsign Plus"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1178:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1203:
\idxtext{Sharpsign Plus (reader macro)}\idxtext{Plus (sharpsign reader macro)}\idxref{*features*}
***************
**** Section "Sharpsign Minus"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1209:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1235:
\idxtext{Sharpsign Minus (reader macro)}\idxtext{Minus (sharpsign reader macro)}\idxref{*features*}
***************
**** Section "Sharpsign Vertical-Bar"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1225:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1252:
\idxtext{Sharpsign Vertical-Bar (reader macro)}\idxtext{Vertical-Bar (sharpsign reader macro)}\idxtext{comment}
***************
**** Section "Sharpsign Less-Than-Sign"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1323:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1351:
\idxtext{Sharpsign Less-Than-Sign (reader macro)}\idxtext{Less-Than-Sign (sharpsign reader macro)}
***************
**** Section "Sharpsign Whitespace"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1338:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1367:
\idxtext{Sharpsign Whitespace}
***************
**** Section "Sharpsign Right-Parenthesis"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1351:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1381:
\idxtext{Sharpsign Right-Parenthesis}
***************
**** Section "Re-Reading Abbreviated Expressions"
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.140, Line #1369:
**** File B:>ansi-cl>spec>source>concept-macro-chars.tex.152, Line #1400:
\idxtext{Dot Dot}\idxcode{..}
\idxtext{Dot Dot Dot}\idxcode{...}
\idxtext{Sharpsign Whitespace}\idxtext{Sharpsign Right-Parenthesis}
***************
Done.
============================================================
File: concept-numbers.tex
============================================================
Source compare made by kmp on 5/11/94 13:45:31
of File B:>ansi-cl>spec>source>concept-numbers.tex.34
with File B:>ansi-cl>spec>source>concept-numbers.tex.35
**** File B:>ansi-cl>spec>source>concept-numbers.tex.34, Line #267:
If the arguments to a mathematical \term{function} are all of type
\f{(or rational (complex rational))}
**** File B:>ansi-cl>spec>source>concept-numbers.tex.35, Line #267:
If the arguments to
%% Added "irrational" per Boyer/Kaufmann/Moore #14 (by X3J13 vote at May 4-5, 1994 meeting)
%% -kmp 9-May-94
%a
an irrational
mathematical \term{function} are all of type
\f{(or rational (complex rational))}
***************
**** File B:>ansi-cl>spec>source>concept-numbers.tex.34, Line #286:
\tablefigtwo{Functions Affected by Rule of Float Substitutability}%
**** File B:>ansi-cl>spec>source>concept-numbers.tex.35, Line #291:
%% Added per Boyer/Kaufmann/Moore #14 (by X3J13 vote at May 4-5, 1994 meeting)
%% -kmp 9-May-94
Float substitutability applies neither to the rational \term{functions}
\funref{+},
\funref{-},
\funref{*},
and \funref{/}
nor to the related \term{operators}
\funref{1+},
\funref{1-},
\macref{incf},
\macref{decf},
and \funref{conjugate}.
For rational \term{functions},
if all arguments are \term{rational},
then the result is \term{rational};
if all arguments are of type \f{(or rational (complex rational))},
then the result is of type \f{(or rational (complex rational))}.
\tablefigtwo{Functions Affected by Rule of Float Substitutability}%
***************
**** File B:>ansi-cl>spec>source>concept-numbers.tex.34, Line #295:
\funref{cis} & \f{(cis 0) \EV\ \#c(1 0) \i{or} \#c(1.0 0.0)} \cr
\funref{cos} & \f{(cos 0) \EV\ 1 \i{or} 1.0} \cr
**** File B:>ansi-cl>spec>source>concept-numbers.tex.35, Line #319:
%% #c(1 0) => 1 per Boyer/Kaufmann/Moore #14 (by X3J13 vote at May 4-5, 1994 meeting)