summaryrefslogtreecommitdiff
path: root/web/funnelAC/userman/u_manual.sin
blob: abee6744ad2521f15ab295f101c886bf904da203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
\indexentry{+= tutorial}{26}
\indexentry{+=}{85}
\indexentry{2167A}{51}
\indexentry{== tutorial}{26}
\indexentry{==}{85}
\indexentry{@!}{37}
\indexentry{@!}{75}
\indexentry{@"}{29}
\indexentry{@(}{29}
\indexentry{@)}{29}
\indexentry{@+}{20}
\indexentry{@+}{76}
\indexentry{@,}{29}
\indexentry{@-}{23}
\indexentry{@-}{77}
\indexentry{@1...}{28}
\indexentry{@1...}{86}
\indexentry{@<}{20}
\indexentry{@=}{20}
\indexentry{@>}{20}
\indexentry{@A...}{34}
\indexentry{@braces}{20}
\indexentry{@braces}{37}
\indexentry{@circumflex}{74}
\indexentry{@dollar}{22}
\indexentry{@hash}{76}
\indexentry{@i}{30}
\indexentry{@i}{77}
\indexentry{@M tutorial}{24}
\indexentry{@M}{85}
\indexentry{@O}{20}
\indexentry{@O}{22}
\indexentry{@slash}{37}
\indexentry{@Z tutorial}{24}
\indexentry{@Z}{85}
\indexentry{absent command}{93}
\indexentry{abstract data type}{55}
\indexentry{abstraction code}{56}
\indexentry{abstraction data}{26}
\indexentry{abstraction set}{59}
\indexentry{abuse comments}{57}
\indexentry{access random}{50}
\indexentry{acknowledgements}{11}
\indexentry{action execution order}{71}
\indexentry{Action options}{70}
\indexentry{actual parameters}{29}
\indexentry{Ada}{11}
\indexentry{Ada}{44}
\indexentry{Ada}{49}
\indexentry{Ada}{51}
\indexentry{Ada}{55}
\indexentry{additive macros}{26}
\indexentry{additive macro}{26}
\indexentry{additively defined}{85}
\indexentry{Adelaide University}{59}
\indexentry{admin directory}{102}
\indexentry{administration FunnelWeb}{109}
\indexentry{ADT}{55}
\indexentry{alias}{49}
\indexentry{Analyser}{115}
\indexentry{analyser}{65}
\indexentry{analyser}{88}
\indexentry{analysis static}{88}
\indexentry{Andrew Trevorrow}{13}
\indexentry{animal poem}{30}
\indexentry{annual report}{58}
\indexentry{anonymous ftp}{101}
\indexentry{ANSI}{109}
\indexentry{ANSI}{117}
\indexentry{answers correct}{102}
\indexentry{answers directory}{102}
\indexentry{ANZE}{117}
\indexentry{ANZE}{19}
\indexentry{applications FunnelWeb}{53}
\indexentry{arbitrary characters inserting into text}{74}
\indexentry{architecture semantic}{64}
\indexentry{archive ftp}{114}
\indexentry{archive FunnelWeb}{114}
\indexentry{argument command line}{67}
\indexentry{arguments}{67}
\indexentry{Argument}{115}
\indexentry{assertion severity}{65}
\indexentry{assertion status}{90}
\indexentry{Atrax robustus}{19}
\indexentry{attributes macro}{85}
\indexentry{author contacting}{114}
\indexentry{B option}{68}
\indexentry{Barry Dwyer}{11}
\indexentry{Barry Dwyer}{59}
\indexentry{Barry Humphries}{19}
\indexentry{BASIC}{57}
\indexentry{Begg Jeremy}{11}
\indexentry{binding problems}{57}
\indexentry{bindings macro}{22}
\indexentry{blank indentation}{78}
\indexentry{blank indentation}{78}
\indexentry{blanks trailing}{42}
\indexentry{boring organization}{50}
\indexentry{Brissenden Roger}{11}
\indexentry{BSI82}{117}
\indexentry{BSI82}{15}
\indexentry{BSI82}{18}
\indexentry{C header}{57}
\indexentry{C option}{68}
\indexentry{C preprocessor}{20}
\indexentry{C preprocessor}{57}
\indexentry{calls macro}{86}
\indexentry{calls number}{23}
\indexentry{camera poem}{30}
\indexentry{case dependence}{67}
\indexentry{changing special character}{31}
\indexentry{characters control}{42}
\indexentry{characters non-printable}{96}
\indexentry{characters unprintable}{71}
\indexentry{checks macro}{88}
\indexentry{cheer hacker's}{35}
\indexentry{cheer programmer's}{35}
\indexentry{code abstraction}{56}
\indexentry{code explaining}{17}
\indexentry{code gardening}{53}
\indexentry{code vs documentation}{32}
\indexentry{codify command}{93}
\indexentry{command absent}{93}
\indexentry{command codify}{93}
\indexentry{command compare}{93}
\indexentry{command define}{91}
\indexentry{command define}{94}
\indexentry{command diffsummary}{95}
\indexentry{command diffzero}{95}
\indexentry{command diff}{94}
\indexentry{command eneo}{95}
\indexentry{command execute}{96}
\indexentry{command exists}{96}
\indexentry{command fixeols}{96}
\indexentry{command fw}{97}
\indexentry{command help}{97}
\indexentry{command here}{98}
\indexentry{command interpreter}{47}
\indexentry{command length}{91}
\indexentry{command line argument}{67}
\indexentry{command line interface}{66}
\indexentry{command line options syntax}{67}
\indexentry{command line parsing}{66}
\indexentry{command line processing}{66}
\indexentry{command line processing}{92}
\indexentry{command line syntax}{67}
\indexentry{command options}{92}
\indexentry{command quit}{98}
\indexentry{command set}{48}
\indexentry{command set}{98}
\indexentry{command shell FunnelWeb}{90}
\indexentry{command show}{48}
\indexentry{command show}{98}
\indexentry{command skipto}{98}
\indexentry{command status}{99}
\indexentry{command tolerate}{100}
\indexentry{command trace on}{48}
\indexentry{command trace}{100}
\indexentry{command verb fw}{66}
\indexentry{command writeu}{100}
\indexentry{command write}{100}
\indexentry{commands FunnelWeb}{90}
\indexentry{commands shell}{93}
\indexentry{commands useful}{47}
\indexentry{comments abuse}{57}
\indexentry{comments eliminating}{57}
\indexentry{comments FunnelWeb}{75}
\indexentry{comments}{37}
\indexentry{commitment FunnelWeb}{109}
\indexentry{compare command}{93}
\indexentry{compilers Fortran}{42}
\indexentry{compiling FunnelWeb}{105}
\indexentry{complete example}{38}
\indexentry{conditionals fudging}{44}
\indexentry{console output suppress}{69}
\indexentry{constructs section}{83}
\indexentry{contacting author}{114}
\indexentry{contents table of}{81}
\indexentry{context infinite}{68}
\indexentry{context listing file}{68}
\indexentry{context}{69}
\indexentry{control characters inserting into text}{74}
\indexentry{control characters}{42}
\indexentry{controllability}{18}
\indexentry{copyright FunnelWeb}{112}
\indexentry{copyright notice}{1}
\indexentry{correct answers}{102}
\indexentry{cross reference numbering}{89}
\indexentry{cross referencing}{17}
\indexentry{cross referencing}{89}
\indexentry{cryptic text files}{55}
\indexentry{D option}{49}
\indexentry{D option}{68}
\indexentry{dangers FunnelWeb}{50}
\indexentry{data abstraction}{26}
\indexentry{David Hulse}{11}
\indexentry{debugger}{53}
\indexentry{debugging wholistic}{53}
\indexentry{default options}{49}
\indexentry{default options}{92}
\indexentry{default special character}{72}
\indexentry{define command}{91}
\indexentry{define command}{94}
\indexentry{definition FunnelWeb}{63}
\indexentry{definition macro}{85}
\indexentry{definition macro}{87}
\indexentry{delete output files}{49}
\indexentry{delete output option}{68}
\indexentry{delimiting macro parameter}{87}
\indexentry{dependence case}{67}
\indexentry{dependencies file}{49}
\indexentry{development time}{17}
\indexentry{diagnostics levels of}{65}
\indexentry{diagnostics}{65}
\indexentry{dictionary hacker's}{35}
\indexentry{diff command}{94}
\indexentry{differences file}{94}
\indexentry{diffsummary command}{95}
\indexentry{diffzero command}{95}
\indexentry{directive emphasis}{85}
\indexentry{directive literal}{84}
\indexentry{directive newpage}{37}
\indexentry{directive table of contents}{37}
\indexentry{directive title}{37}
\indexentry{directive vskip}{37}
\indexentry{directives typesetter}{81}
\indexentry{directives}{32}
\indexentry{directives}{83}
\indexentry{Directive}{115}
\indexentry{directory admin}{102}
\indexentry{directory answers}{102}
\indexentry{directory hackman}{103}
\indexentry{directory results}{103}
\indexentry{directory scripts}{103}
\indexentry{directory sources}{103}
\indexentry{directory tests}{104}
\indexentry{directory tree}{102}
\indexentry{directory userman}{105}
\indexentry{directory}{70}
\indexentry{Distribution FunnelWeb}{113}
\indexentry{document list dump}{68}
\indexentry{document list}{64}
\indexentry{documentation duplicate}{51}
\indexentry{documentation examples}{58}
\indexentry{Documentation file}{115}
\indexentry{documentation file}{18}
\indexentry{documentation FunnelWeb}{110}
\indexentry{documentation interdependent}{50}
\indexentry{documentation over}{51}
\indexentry{documentation pavlov}{51}
\indexentry{documentation vs code}{32}
\indexentry{Documentation}{115}
\indexentry{documentation}{64}
\indexentry{DOD83}{55}
\indexentry{Donald Knuth}{11}
\indexentry{Donald Knuth}{50}
\indexentry{Donald Knuth}{9}
\indexentry{dump document list}{68}
\indexentry{dump global line list}{68}
\indexentry{dump macro table}{68}
\indexentry{dump mapped file}{68}
\indexentry{dump option}{68}
\indexentry{dump times}{68}
\indexentry{dump token list}{68}
\indexentry{duplicate documentation}{51}
\indexentry{Dwyer Barry}{11}
\indexentry{Dwyer Barry}{59}
\indexentry{EBNF syntax}{63}
\indexentry{editors text}{42}
\indexentry{Edna Everage}{19}
\indexentry{efficiency FunnelWeb}{47}
\indexentry{efficiency notes}{47}
\indexentry{eliminating comments}{57}
\indexentry{emphasis construct}{37}
\indexentry{emphasis directive}{85}
\indexentry{empty name}{42}
\indexentry{end-of-line fiddling with}{43}
\indexentry{eneo command}{95}
\indexentry{EOL fiddling with}{43}
\indexentry{EOL markers inserting}{76}
\indexentry{EOL markers suppressing}{77}
\indexentry{EOL suppression}{23}
\indexentry{error severity}{65}
\indexentry{error status}{90}
\indexentry{errors shell}{90}
\indexentry{Everage Edna}{19}
\indexentry{example applications FunnelWeb}{53}
\indexentry{example complete}{38}
\indexentry{example filename inheritance}{70}
\indexentry{Example FunnelWeb}{38}
\indexentry{examples documentation}{58}
\indexentry{executable FunnelWeb}{106}
\indexentry{execute command}{96}
\indexentry{execute script option}{69}
\indexentry{execution phases}{64}
\indexentry{exists command}{96}
\indexentry{expansion macro}{30}
\indexentry{expansion macro}{47}
\indexentry{expansion macro}{87}
\indexentry{explaining code}{17}
\indexentry{expressions macro}{86}
\indexentry{expression}{85}
\indexentry{extension}{70}
\indexentry{F option}{68}
\indexentry{fatal severity}{65}
\indexentry{fatal status}{90}
\indexentry{fiddling with end-of-line}{43}
\indexentry{fiddling with EOL}{43}
\indexentry{fields filename}{70}
\indexentry{file dependencies}{49}
\indexentry{file differences}{94}
\indexentry{file include}{69}
\indexentry{file journal}{69}
\indexentry{file listing}{69}
\indexentry{file suppression}{49}
\indexentry{file termination}{71}
\indexentry{file typeset}{69}
\indexentry{filename fields}{70}
\indexentry{filename inheritance example}{70}
\indexentry{filename inheritance}{70}
\indexentry{files header}{57}
\indexentry{files include}{30}
\indexentry{files include}{77}
\indexentry{files input}{47}
\indexentry{fixeols command}{96}
\indexentry{font size}{46}
\indexentry{formal parameter lists}{86}
\indexentry{formal parameters}{28}
\indexentry{formal parameters}{28}
\indexentry{formal parameters}{87}
\indexentry{Fortran compilers}{42}
\indexentry{Free text}{115}
\indexentry{free text}{32}
\indexentry{Free text}{83}
\indexentry{free text}{83}
\indexentry{freestanding typesetter directives}{83}
\indexentry{freestanding}{81}
\indexentry{ftp anonymous}{101}
\indexentry{ftp archive}{114}
\indexentry{fudging conditionals}{44}
\indexentry{fudging generics}{59}
\indexentry{functions small}{56}
\indexentry{Funnel-web spider}{19}
\indexentry{FunnelWeb administration}{109}
\indexentry{FunnelWeb applications}{53}
\indexentry{FunnelWeb archive}{114}
\indexentry{FunnelWeb command shell}{90}
\indexentry{FunnelWeb command shell}{90}
\indexentry{FunnelWeb commands}{90}
\indexentry{FunnelWeb comments}{75}
\indexentry{FunnelWeb commitment}{109}
\indexentry{FunnelWeb compiling}{105}
\indexentry{FunnelWeb copyright}{112}
\indexentry{FunnelWeb dangers}{50}
\indexentry{FunnelWeb definition}{63}
\indexentry{FunnelWeb Distribution}{113}
\indexentry{FunnelWeb documentation}{110}
\indexentry{FunnelWeb efficiency}{47}
\indexentry{FunnelWeb example applications}{53}
\indexentry{FunnelWeb Example}{38}
\indexentry{FunnelWeb executable}{106}
\indexentry{FunnelWeb file}{115}
\indexentry{FunnelWeb file}{64}
\indexentry{FunnelWeb hints}{41}
\indexentry{FunnelWeb initialization}{70}
\indexentry{FunnelWeb installation}{101}
\indexentry{FunnelWeb installing}{106}
\indexentry{FunnelWeb invoking}{66}
\indexentry{FunnelWeb language}{115}
\indexentry{FunnelWeb license}{112}
\indexentry{FunnelWeb martinet}{42}
\indexentry{FunnelWeb name}{19}
\indexentry{FunnelWeb obtaining}{101}
\indexentry{FunnelWeb overview}{18}
\indexentry{FunnelWeb overview}{64}
\indexentry{FunnelWeb pitfalls}{50}
\indexentry{FunnelWeb program}{65}
\indexentry{FunnelWeb proper}{115}
\indexentry{FunnelWeb proper}{48}
\indexentry{FunnelWeb proper}{65}
\indexentry{FunnelWeb registration}{110}
\indexentry{FunnelWeb rules}{42}
\indexentry{FunnelWeb running}{66}
\indexentry{FunnelWeb shell}{90}
\indexentry{FunnelWeb startup}{70}
\indexentry{FunnelWeb support}{110}
\indexentry{FunnelWeb testing}{105}
\indexentry{FunnelWeb two main aspects}{21}
\indexentry{FunnelWeb versions}{114}
\indexentry{FunnelWeb}{115}
\indexentry{fw command verb}{66}
\indexentry{fw command}{97}
\indexentry{fwinit.fws}{49}
\indexentry{fwinit.fws}{71}
\indexentry{FW}{115}
\indexentry{gardening code}{53}
\indexentry{generics fudging}{59}
\indexentry{generics typesafe}{61}
\indexentry{global line list dump}{68}
\indexentry{glossary}{115}
\indexentry{GNU license}{112}
\indexentry{GNU license}{18}
\indexentry{GNU license}{9}
\indexentry{good old days}{57}
\indexentry{Gries81}{117}
\indexentry{Gries81}{51}
\indexentry{H option}{68}
\indexentry{hacker's cheer}{35}
\indexentry{hacker's dictionary}{35}
\indexentry{Hackett Simon}{11}
\indexentry{hackman directory}{103}
\indexentry{header C}{57}
\indexentry{header file postscript}{54}
\indexentry{header files}{57}
\indexentry{header page}{37}
\indexentry{headings section}{34}
\indexentry{headings strength}{46}
\indexentry{Hello Northern Hemisphere Program}{21}
\indexentry{hello world document}{20}
\indexentry{help command}{97}
\indexentry{help option}{68}
\indexentry{here command}{98}
\indexentry{hierarchical structure}{34}
\indexentry{high level syntax}{82}
\indexentry{hints FunnelWeb}{41}
\indexentry{Hulse David}{11}
\indexentry{Humphries Barry}{19}
\indexentry{Humphries91}{117}
\indexentry{Humphries91}{19}
\indexentry{hypertext}{15}
\indexentry{I option}{69}
\indexentry{identifiers macro}{41}
\indexentry{include file option}{69}
\indexentry{include files recursive}{31}
\indexentry{include files}{30}
\indexentry{include files}{77}
\indexentry{include files}{77}
\indexentry{Include file}{115}
\indexentry{include file}{69}
\indexentry{indentation blank}{78}
\indexentry{indentation macro calls}{25}
\indexentry{indentation macro expansion}{78}
\indexentry{indentation none}{78}
\indexentry{independence language}{18}
\indexentry{independence typesetter}{18}
\indexentry{independence typesetter}{34}
\indexentry{independence typesetter}{65}
\indexentry{independence typesetter}{80}
\indexentry{infinite context}{68}
\indexentry{inheritance filename}{70}
\indexentry{inheritance section name}{35}
\indexentry{initialization FunnelWeb}{70}
\indexentry{initialization script}{49}
\indexentry{initialization script}{71}
\indexentry{inline typesetter directives}{83}
\indexentry{inline}{81}
\indexentry{input file option}{68}
\indexentry{input files}{47}
\indexentry{Input file}{115}
\indexentry{input file}{18}
\indexentry{input file}{64}
\indexentry{input file}{77}
\indexentry{input line length maximum}{79}
\indexentry{input line length pragma}{79}
\indexentry{input line length}{42}
\indexentry{input line length}{79}
\indexentry{inserting EOL markers}{76}
\indexentry{inserting into text arbitrary characters}{74}
\indexentry{inserting into text control characters}{74}
\indexentry{inserting into text special character}{74}
\indexentry{installation FunnelWeb}{101}
\indexentry{installation problems}{107}
\indexentry{installing FunnelWeb}{106}
\indexentry{interactive mode}{47}
\indexentry{interactive option}{69}
\indexentry{interdependent documentation}{50}
\indexentry{interface command line}{66}
\indexentry{interpreter command}{47}
\indexentry{introduction tutorial}{19}
\indexentry{invisible pragmas}{78}
\indexentry{invocation number}{23}
\indexentry{invocations number}{42}
\indexentry{invoking FunnelWeb}{20}
\indexentry{invoking FunnelWeb}{66}
\indexentry{J option}{69}
\indexentry{Jeremy Begg}{11}
\indexentry{journal file option}{69}
\indexentry{Journal file}{115}
\indexentry{journal file}{64}
\indexentry{journal file}{69}
\indexentry{K option}{69}
\indexentry{Kernighan88}{117}
\indexentry{Kernighan88}{65}
\indexentry{keyboard mode}{47}
\indexentry{keyboard option}{69}
\indexentry{Knuth Donald}{11}
\indexentry{Knuth Donald}{50}
\indexentry{Knuth Donald}{9}
\indexentry{Knuth83}{117}
\indexentry{Knuth83}{17}
\indexentry{Knuth83}{25}
\indexentry{Knuth83}{25}
\indexentry{Knuth83}{9}
\indexentry{Knuth84}{117}
\indexentry{Knuth84}{117}
\indexentry{Knuth84}{13}
\indexentry{Knuth84}{17}
\indexentry{Knuth84}{18}
\indexentry{L option}{69}
\indexentry{Lamport86}{117}
\indexentry{Lamport86}{13}
\indexentry{language independence}{18}
\indexentry{languages multiple}{55}
\indexentry{laser printer}{55}
\indexentry{LaTeX}{13}
\indexentry{LaTeX}{84}
\indexentry{layout program}{22}
\indexentry{layout program}{28}
\indexentry{length command}{91}
\indexentry{length input line}{42}
\indexentry{length line}{71}
\indexentry{length output line}{42}
\indexentry{letter}{67}
\indexentry{levels of diagnostics}{65}
\indexentry{libraries macro}{31}
\indexentry{license FunnelWeb}{112}
\indexentry{license GNU}{112}
\indexentry{license GNU}{18}
\indexentry{license GNU}{9}
\indexentry{line length input}{79}
\indexentry{line length}{71}
\indexentry{line termination}{71}
\indexentry{list document}{64}
\indexentry{list options}{68}
\indexentry{list shell commands}{93}
\indexentry{listing file context}{68}
\indexentry{listing file option}{69}
\indexentry{Listing file}{115}
\indexentry{listing file}{64}
\indexentry{listing file}{69}
\indexentry{literal construct}{37}
\indexentry{literal directive}{84}
\indexentry{literate programming tools}{15}
\indexentry{literate programming, facilities}{15}
\indexentry{literate programming, most significant benefit}{17}
\indexentry{literate programming}{15}
\indexentry{literate programming}{15}
\indexentry{literate programming}{50}
\indexentry{MacDraw}{54}
\indexentry{Macintosh}{13}
\indexentry{Macintosh}{54}
\indexentry{macro attributes}{85}
\indexentry{macro bindings}{22}
\indexentry{macro body}{85}
\indexentry{macro calls indentation}{25}
\indexentry{macro calls}{86}
\indexentry{macro checks}{88}
\indexentry{macro definitions}{32}
\indexentry{Macro definition}{116}
\indexentry{macro definition}{85}
\indexentry{macro definition}{87}
\indexentry{macro expansion indentation}{78}
\indexentry{macro expansion}{30}
\indexentry{macro expansion}{47}
\indexentry{macro expansion}{87}
\indexentry{macro expressions}{86}
\indexentry{macro facilities tutorial}{22}
\indexentry{macro identifiers}{41}
\indexentry{macro libraries}{31}
\indexentry{macro names}{41}
\indexentry{macro names}{86}
\indexentry{macro name}{85}
\indexentry{macro parameter delimiting}{87}
\indexentry{macro recursion}{43}
\indexentry{macro recursion}{88}
\indexentry{macro table dump}{68}
\indexentry{macro table}{64}
\indexentry{macros additive}{26}
\indexentry{macros parameterized}{28}
\indexentry{macros simple tutorial}{22}
\indexentry{macros static}{87}
\indexentry{Macro}{115}
\indexentry{magic trick}{15}
\indexentry{maintenance programmer}{50}
\indexentry{make utility}{49}
\indexentry{manuals printing}{107}
\indexentry{mapped file dump}{68}
\indexentry{Mapper}{116}
\indexentry{mapper}{71}
\indexentry{martinet FunnelWeb}{42}
\indexentry{maximum input line length}{79}
\indexentry{maximum output file line length pragma}{79}
\indexentry{maximum output file line length}{79}
\indexentry{maximum product file line length pragma}{79}
\indexentry{maximum product file line length}{79}
\indexentry{medicine wholistic}{53}
\indexentry{memory use of}{30}
\indexentry{memory}{47}
\indexentry{MIL-STD-2167A}{51}
\indexentry{monster file postscript}{54}
\indexentry{multiple languages}{55}
\indexentry{name empty}{42}
\indexentry{name FunnelWeb}{19}
\indexentry{name section}{34}
\indexentry{name section}{84}
\indexentry{names macro}{41}
\indexentry{names macro}{86}
\indexentry{names quick}{42}
\indexentry{names quick}{76}
\indexentry{names section}{86}
\indexentry{names}{86}
\indexentry{name}{70}
\indexentry{new page pragma}{81}
\indexentry{new page}{81}
\indexentry{newpage directive}{37}
\indexentry{no indentation}{78}
\indexentry{non-determinism}{68}
\indexentry{non-printable characters}{96}
\indexentry{none indentation}{78}
\indexentry{notation}{63}
\indexentry{notes efficiency}{47}
\indexentry{notice copyright}{1}
\indexentry{novels}{50}
\indexentry{number calls}{23}
\indexentry{number invocations}{42}
\indexentry{number invocation}{23}
\indexentry{number of times called}{23}
\indexentry{numbering cross reference}{89}
\indexentry{numbering section}{89}
\indexentry{object code}{26}
\indexentry{obtaining FunnelWeb}{101}
\indexentry{open systems}{55}
\indexentry{option B}{68}
\indexentry{option C}{68}
\indexentry{option delete output}{68}
\indexentry{option dump}{68}
\indexentry{option D}{49}
\indexentry{option D}{68}
\indexentry{option execute script}{69}
\indexentry{option F}{68}
\indexentry{option help}{68}
\indexentry{option H}{68}
\indexentry{option include file}{69}
\indexentry{option input file}{68}
\indexentry{option interactive}{69}
\indexentry{option I}{69}
\indexentry{option journal file}{69}
\indexentry{option J}{69}
\indexentry{option keyboard}{69}
\indexentry{option K}{69}
\indexentry{option listing file}{69}
\indexentry{option L}{69}
\indexentry{option quiet}{69}
\indexentry{option Q}{69}
\indexentry{option screen}{69}
\indexentry{option S}{69}
\indexentry{option typeset}{69}
\indexentry{option T}{69}
\indexentry{option width}{69}
\indexentry{option W}{69}
\indexentry{option X}{69}
\indexentry{options command}{92}
\indexentry{options default}{49}
\indexentry{options default}{92}
\indexentry{options list}{68}
\indexentry{options setting defaults}{49}
\indexentry{options syntax}{67}
\indexentry{options tracedump}{68}
\indexentry{options}{67}
\indexentry{options}{68}
\indexentry{Option}{116}
\indexentry{order action execution}{71}
\indexentry{order program}{22}
\indexentry{ordering program}{15}
\indexentry{Ordinary options}{70}
\indexentry{organization boring}{50}
\indexentry{organization spaghetti}{50}
\indexentry{output file line length maximum}{79}
\indexentry{output files delete}{49}
\indexentry{output files}{18}
\indexentry{output files}{64}
\indexentry{Output file}{116}
\indexentry{output line length}{42}
\indexentry{output WEB}{25}
\indexentry{over documentation}{51}
\indexentry{overhead procedure call}{57}
\indexentry{overview FunnelWeb}{18}
\indexentry{overview FunnelWeb}{64}
\indexentry{overview typesetting}{32}
\indexentry{OzTeX}{13}
\indexentry{package}{55}
\indexentry{parameter list, absent}{29}
\indexentry{parameter lists formal}{86}
\indexentry{parameterized macros}{28}
\indexentry{parameters actual}{29}
\indexentry{parameters formal}{28}
\indexentry{parameters formal}{28}
\indexentry{parameters formal}{87}
\indexentry{Parser}{116}
\indexentry{parser}{64}
\indexentry{parser}{82}
\indexentry{parsing command line}{66}
\indexentry{Pascal}{15}
\indexentry{Pascal}{25}
\indexentry{Pascal}{26}
\indexentry{Pascal}{57}
\indexentry{Pascal}{59}
\indexentry{Pat Scannel}{29}
\indexentry{pavlov documentation}{51}
\indexentry{phases execution}{64}
\indexentry{phases}{64}
\indexentry{PhD thesis}{54}
\indexentry{pitfalls FunnelWeb}{50}
\indexentry{poem animal}{30}
\indexentry{poem camera}{30}
\indexentry{portability}{18}
\indexentry{postscript header file}{54}
\indexentry{postscript monster file}{54}
\indexentry{PostScript}{54}
\indexentry{postscript}{57}
\indexentry{pragma input line length}{79}
\indexentry{pragma maximum output file line length}{79}
\indexentry{pragma maximum product file line length}{79}
\indexentry{pragma new page}{81}
\indexentry{pragma table of contents}{81}
\indexentry{pragma title}{82}
\indexentry{pragma typesetter}{80}
\indexentry{pragma vskip}{81}
\indexentry{pragmas invisible}{78}
\indexentry{pragmas visible}{78}
\indexentry{pragmas}{78}
\indexentry{Pragma}{116}
\indexentry{pragma}{25}
\indexentry{pragma}{78}
\indexentry{preface}{9}
\indexentry{preprocessor C}{20}
\indexentry{preprocessor C}{57}
\indexentry{presentation notes}{13}
\indexentry{Printed documentation}{116}
\indexentry{printer laser}{55}
\indexentry{printing manuals}{107}
\indexentry{printing system}{55}
\indexentry{problems binding}{57}
\indexentry{problems installation}{107}
\indexentry{procedure call overhead}{57}
\indexentry{processing command line}{66}
\indexentry{processing command line}{92}
\indexentry{product file line length maximum}{79}
\indexentry{product file width}{69}
\indexentry{product files}{18}
\indexentry{product files}{64}
\indexentry{Product file}{116}
\indexentry{production tool}{19}
\indexentry{program layout}{22}
\indexentry{program layout}{28}
\indexentry{program ordering}{15}
\indexentry{program order}{22}
\indexentry{programmer maintenance}{50}
\indexentry{programmer's cheer}{35}
\indexentry{programming literate}{50}
\indexentry{Q option}{69}
\indexentry{quick names}{42}
\indexentry{quick names}{76}
\indexentry{quick name}{42}
\indexentry{quick name}{76}
\indexentry{quiet option}{69}
\indexentry{quit command}{98}
\indexentry{random access}{50}
\indexentry{rec.humor.funny}{29}
\indexentry{recursion macro}{43}
\indexentry{recursion macro}{88}
\indexentry{recursive include files}{31}
\indexentry{references}{117}
\indexentry{referencing cross}{89}
\indexentry{registration FunnelWeb}{110}
\indexentry{regression testing}{103}
\indexentry{regression testing}{47}
\indexentry{reliability}{18}
\indexentry{REM statement}{57}
\indexentry{report annual}{58}
\indexentry{results directory}{103}
\indexentry{return status}{65}
\indexentry{Roger Brissenden}{11}
\indexentry{Rosovsky90}{117}
\indexentry{Rosovsky90}{17}
\indexentry{Ross Williams}{1}
\indexentry{rule simple}{20}
\indexentry{rules FunnelWeb}{42}
\indexentry{running FunnelWeb}{66}
\indexentry{S option}{69}
\indexentry{Scannel Pat}{29}
\indexentry{Scanner}{116}
\indexentry{scanner}{64}
\indexentry{scanner}{71}
\indexentry{screen option}{69}
\indexentry{script initialization}{49}
\indexentry{script initialization}{71}
\indexentry{script startup}{49}
\indexentry{scripts directory}{103}
\indexentry{Script}{116}
\indexentry{section constructs}{83}
\indexentry{section headings}{34}
\indexentry{section name inheritance}{35}
\indexentry{section names}{86}
\indexentry{section name}{34}
\indexentry{section name}{84}
\indexentry{section numbering}{89}
\indexentry{section strength}{46}
\indexentry{semantic architecture}{64}
\indexentry{sequences special}{72}
\indexentry{set abstraction}{59}
\indexentry{set command}{48}
\indexentry{set command}{98}
\indexentry{setting defaults options}{49}
\indexentry{setting special character}{74}
\indexentry{severe severity}{65}
\indexentry{severe status}{90}
\indexentry{severity assertion}{65}
\indexentry{severity error}{65}
\indexentry{severity fatal}{65}
\indexentry{severity severe}{65}
\indexentry{severity warning}{65}
\indexentry{severity}{65}
\indexentry{sharing information}{56}
\indexentry{sharing text}{58}
\indexentry{shark white pointer}{19}
\indexentry{shell commands list}{93}
\indexentry{shell commands}{93}
\indexentry{shell errors}{90}
\indexentry{shell FunnelWeb}{90}
\indexentry{shell uses}{90}
\indexentry{Shell}{116}
\indexentry{shooting}{31}
\indexentry{show command}{48}
\indexentry{show command}{98}
\indexentry{sign}{67}
\indexentry{Simon Hackett}{11}
\indexentry{simple macros tutorial}{22}
\indexentry{simple rule}{20}
\indexentry{simple sequence}{72}
\indexentry{simplicity}{18}
\indexentry{size font}{46}
\indexentry{skip vertical}{81}
\indexentry{skipto command}{98}
\indexentry{small functions}{56}
\indexentry{Smith91}{117}
\indexentry{Smith91}{17}
\indexentry{snake tiger}{19}
\indexentry{song}{29}
\indexentry{sources directory}{103}
\indexentry{spacing}{43}
\indexentry{spaghetti organization}{50}
\indexentry{special character changing}{31}
\indexentry{special character default}{72}
\indexentry{special character inserting into text}{74}
\indexentry{special character setting}{74}
\indexentry{Special character}{116}
\indexentry{special character}{20}
\indexentry{special character}{72}
\indexentry{special sequences}{72}
\indexentry{Special sequence}{116}
\indexentry{special sequence}{20}
\indexentry{special sequence}{72}
\indexentry{special tokens}{82}
\indexentry{speed}{47}
\indexentry{spider Funnel-web}{19}
\indexentry{startup FunnelWeb}{70}
\indexentry{startup script}{49}
\indexentry{statement REM}{57}
\indexentry{static analysis}{88}
\indexentry{static macros}{87}
\indexentry{status assertion}{90}
\indexentry{status command}{99}
\indexentry{status error}{90}
\indexentry{status fatal}{90}
\indexentry{status return}{65}
\indexentry{status severe}{90}
\indexentry{status success}{90}
\indexentry{status warning}{90}
\indexentry{stream of consciousness}{50}
\indexentry{strength headings}{46}
\indexentry{strength section}{46}
\indexentry{strength typesetting}{46}
\indexentry{string substitution}{91}
\indexentry{string substitution}{94}
\indexentry{string}{67}
\indexentry{structure hierarchical}{34}
\indexentry{structure tree}{83}
\indexentry{Strunk79}{117}
\indexentry{Strunk79}{51}
\indexentry{substitution string}{91}
\indexentry{substitution string}{94}
\indexentry{success status}{90}
\indexentry{support FunnelWeb}{110}
\indexentry{suppress console output}{69}
\indexentry{suppressing EOL markers}{77}
\indexentry{suppression EOL}{23}
\indexentry{suppression file}{49}
\indexentry{Sydney}{19}
\indexentry{syntax command line options}{67}
\indexentry{syntax command line}{67}
\indexentry{syntax EBNF}{63}
\indexentry{syntax high level}{82}
\indexentry{syntax options}{67}
\indexentry{system printing}{55}
\indexentry{T option}{69}
\indexentry{table macro}{64}
\indexentry{table of contents directive}{37}
\indexentry{table of contents pragma}{81}
\indexentry{table of contents}{81}
\indexentry{tabs}{42}
\indexentry{Tangle}{116}
\indexentry{tangle}{65}
\indexentry{tangle}{88}
\indexentry{Tangling}{21}
\indexentry{target typesetter}{89}
\indexentry{termination file}{71}
\indexentry{termination line}{71}
\indexentry{terminology}{63}
\indexentry{testing FunnelWeb}{105}
\indexentry{testing regression}{103}
\indexentry{testing regression}{47}
\indexentry{tests directory}{104}
\indexentry{text editors}{42}
\indexentry{text files cryptic}{55}
\indexentry{text free}{83}
\indexentry{text sharing}{58}
\indexentry{text tokens}{82}
\indexentry{TeX}{13}
\indexentry{TeX}{18}
\indexentry{TeX}{22}
\indexentry{TeX}{54}
\indexentry{thesis PhD}{54}
\indexentry{tiger snake}{19}
\indexentry{time development}{17}
\indexentry{times dump}{68}
\indexentry{title directive}{37}
\indexentry{title pragma}{82}
\indexentry{title}{82}
\indexentry{token list dump}{68}
\indexentry{tolerate command}{100}
\indexentry{tools literate programming}{15}
\indexentry{trace command}{100}
\indexentry{trace on command}{48}
\indexentry{tracedump options}{68}
\indexentry{trailing blanks}{42}
\indexentry{tree directory}{102}
\indexentry{tree structure}{83}
\indexentry{Trevorrow Andrew}{13}
\indexentry{tutorial +=}{26}
\indexentry{tutorial ==}{26}
\indexentry{tutorial @M}{24}
\indexentry{tutorial @Z}{24}
\indexentry{tutorial introduction}{19}
\indexentry{tutorial macro facilities}{22}
\indexentry{tutorial macros simple}{22}
\indexentry{tutorial simple macros}{22}
\indexentry{tutorial typesetting}{32}
\indexentry{tutorial}{15}
\indexentry{tutorial}{19}
\indexentry{twelve bugs of christmas}{29}
\indexentry{two main aspects FunnelWeb}{21}
\indexentry{typesafe generics}{61}
\indexentry{typeset file}{69}
\indexentry{typeset option}{69}
\indexentry{typesetter directive tokens}{82}
\indexentry{typesetter directives}{66}
\indexentry{typesetter directives}{81}
\indexentry{typesetter independence}{18}
\indexentry{typesetter independence}{34}
\indexentry{typesetter independence}{65}
\indexentry{typesetter independence}{80}
\indexentry{typesetter independent}{34}
\indexentry{typesetter pragma}{80}
\indexentry{typesetter target}{89}
\indexentry{Typesetting directive}{116}
\indexentry{typesetting overview}{32}
\indexentry{typesetting strength}{46}
\indexentry{typesetting tutorial}{32}
\indexentry{typesetting}{13}
\indexentry{typesetting}{89}
\indexentry{universities}{17}
\indexentry{University Adelaide}{59}
\indexentry{Unix newline}{75}
\indexentry{Unix}{67}
\indexentry{unprintable characters}{71}
\indexentry{USDOD83}{117}
\indexentry{use of memory}{30}
\indexentry{useful commands}{47}
\indexentry{userman directory}{105}
\indexentry{uses shell}{90}
\indexentry{versions FunnelWeb}{114}
\indexentry{vertical skip}{81}
\indexentry{visible pragmas}{78}
\indexentry{vskip directive}{37}
\indexentry{vskip pragma}{81}
\indexentry{W option}{69}
\indexentry{warning severity}{65}
\indexentry{warning status}{90}
\indexentry{warranty}{112}
\indexentry{Weave}{116}
\indexentry{weave}{65}
\indexentry{weave}{89}
\indexentry{Weaving}{21}
\indexentry{WEB output}{25}
\indexentry{WEB}{21}
\indexentry{WEB}{25}
\indexentry{Web}{9}
\indexentry{white pointer shark}{19}
\indexentry{wholistic debugging}{53}
\indexentry{wholistic debugging}{53}
\indexentry{wholistic medicine}{53}
\indexentry{width option}{69}
\indexentry{width product file}{69}
\indexentry{Williams Ross}{1}
\indexentry{workstations}{48}
\indexentry{workstation}{90}
\indexentry{write command}{100}
\indexentry{writeu command}{100}
\indexentry{X option}{69}