aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.info
diff options
context:
space:
mode:
Diffstat (limited to 'doc/gawk.info')
-rw-r--r--doc/gawk.info644
1 files changed, 322 insertions, 322 deletions
diff --git a/doc/gawk.info b/doc/gawk.info
index 6aaff404..97cb96ca 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -15345,8 +15345,8 @@ identifier immediately followed by an opening parenthesis, any
arguments, and then a closing parenthesis, with the addition of a
leading '@' character:
- the_func = "sum"
- result = @the_func() # calls the sum() function
+ the_function = "sum"
+ result = @the_function() # calls the sum() function
Here is a full program that processes the previously shown data,
using indirect function calls:
@@ -15589,7 +15589,7 @@ functions indirectly, as follows.
example, in the following case:
for (i = 1; i <= n; i++)
- @the_func()
+ @the_function()
'gawk' looks up the actual function to call only once.
@@ -39042,325 +39042,325 @@ Ref: Function Caveats-Footnote-1637557
Node: Return Statement637677
Node: Dynamic Typing640656
Node: Indirect Calls641586
-Ref: Indirect Calls-Footnote-1651841
-Node: Functions Summary651969
-Node: Library Functions654674
-Ref: Library Functions-Footnote-1658281
-Ref: Library Functions-Footnote-2658424
-Node: Library Names658595
-Ref: Library Names-Footnote-1662262
-Ref: Library Names-Footnote-2662485
-Node: General Functions662571
-Node: Strtonum Function663753
-Node: Assert Function666775
-Node: Round Function670101
-Node: Cliff Random Function671641
-Node: Ordinal Functions672657
-Ref: Ordinal Functions-Footnote-1675720
-Ref: Ordinal Functions-Footnote-2675972
-Node: Join Function676182
-Ref: Join Function-Footnote-1677952
-Node: Getlocaltime Function678152
-Node: Readfile Function681894
-Node: Shell Quoting683871
-Node: Isnumeric Function685299
-Node: Data File Management686687
-Node: Filetrans Function687319
-Node: Rewind Function691415
-Node: File Checking693324
-Ref: File Checking-Footnote-1694658
-Node: Empty Files694859
-Node: Ignoring Assigns696838
-Node: Getopt Function698388
-Ref: Getopt Function-Footnote-1713685
-Node: Passwd Functions713885
-Ref: Passwd Functions-Footnote-1722724
-Node: Group Functions722812
-Ref: Group Functions-Footnote-1730710
-Node: Walking Arrays730917
-Node: Library Functions Summary733925
-Node: Library Exercises735331
-Node: Sample Programs735796
-Node: Running Examples736566
-Node: Clones737294
-Node: Cut Program738518
-Node: Egrep Program748658
-Node: Id Program757659
-Node: Split Program767594
-Ref: Split Program-Footnote-1777487
-Node: Tee Program777660
-Node: Uniq Program780450
-Node: Wc Program788038
-Node: Bytes vs. Characters788425
-Node: Using extensions789973
-Node: wc program790727
-Node: Miscellaneous Programs795592
-Node: Dupword Program796805
-Node: Alarm Program798835
-Node: Translate Program803690
-Ref: Translate Program-Footnote-1808255
-Node: Labels Program808525
-Ref: Labels Program-Footnote-1811876
-Node: Word Sorting811960
-Node: History Sorting816032
-Node: Extract Program818257
-Node: Simple Sed826270
-Node: Igawk Program829344
-Ref: Igawk Program-Footnote-1843675
-Ref: Igawk Program-Footnote-2843877
-Ref: Igawk Program-Footnote-3843999
-Node: Anagram Program844114
-Node: Signature Program847176
-Node: Programs Summary848423
-Node: Programs Exercises849637
-Ref: Programs Exercises-Footnote-1853767
-Node: Advanced Features853853
-Node: Nondecimal Data855984
-Node: Boolean Typed Values857582
-Node: Array Sorting859463
-Node: Controlling Array Traversal860168
-Ref: Controlling Array Traversal-Footnote-1868536
-Node: Array Sorting Functions868654
-Ref: Array Sorting Functions-Footnote-1874028
-Node: Two-way I/O874224
-Ref: Two-way I/O-Footnote-1881950
-Ref: Two-way I/O-Footnote-2882137
-Node: TCP/IP Networking882219
-Node: Profiling885295
-Node: Extension Philosophy894604
-Node: Advanced Features Summary896083
-Node: Internationalization898098
-Node: I18N and L10N899772
-Node: Explaining gettext900459
-Ref: Explaining gettext-Footnote-1906351
-Ref: Explaining gettext-Footnote-2906536
-Node: Programmer i18n906701
-Ref: Programmer i18n-Footnote-1911650
-Node: Translator i18n911699
-Node: String Extraction912493
-Ref: String Extraction-Footnote-1913625
-Node: Printf Ordering913711
-Ref: Printf Ordering-Footnote-1916497
-Node: I18N Portability916561
-Ref: I18N Portability-Footnote-1919017
-Node: I18N Example919080
-Ref: I18N Example-Footnote-1922355
-Ref: I18N Example-Footnote-2922428
-Node: Gawk I18N922537
-Node: I18N Summary923159
-Node: Debugger924500
-Node: Debugging925500
-Node: Debugging Concepts925941
-Node: Debugging Terms927750
-Node: Awk Debugging930325
-Ref: Awk Debugging-Footnote-1931270
-Node: Sample Debugging Session931402
-Node: Debugger Invocation931936
-Node: Finding The Bug933322
-Node: List of Debugger Commands939796
-Node: Breakpoint Control941129
-Node: Debugger Execution Control944823
-Node: Viewing And Changing Data948185
-Node: Execution Stack951726
-Node: Debugger Info953363
-Node: Miscellaneous Debugger Commands957434
-Node: Readline Support962496
-Node: Limitations963392
-Node: Debugging Summary965946
-Node: Namespaces967225
-Node: Global Namespace968336
-Node: Qualified Names969734
-Node: Default Namespace970733
-Node: Changing The Namespace971474
-Node: Naming Rules973088
-Node: Internal Name Management974936
-Node: Namespace Example975978
-Node: Namespace And Features978540
-Node: Namespace Summary979975
-Node: Arbitrary Precision Arithmetic981452
-Node: Computer Arithmetic982939
-Ref: table-numeric-ranges986705
-Ref: table-floating-point-ranges987199
-Ref: Computer Arithmetic-Footnote-1987858
-Node: Math Definitions987915
-Ref: table-ieee-formats990891
-Node: MPFR features991459
-Node: FP Math Caution993177
-Ref: FP Math Caution-Footnote-1994249
-Node: Inexactness of computations994618
-Node: Inexact representation995649
-Node: Comparing FP Values997009
-Node: Errors accumulate998250
-Node: Strange values999706
-Ref: Strange values-Footnote-11002294
-Node: Getting Accuracy1002399
-Node: Try To Round1005109
-Node: Setting precision1006008
-Ref: table-predefined-precision-strings1006705
-Node: Setting the rounding mode1008536
-Ref: table-gawk-rounding-modes1008910
-Ref: Setting the rounding mode-Footnote-11012842
-Node: Arbitrary Precision Integers1013021
-Ref: Arbitrary Precision Integers-Footnote-11016196
-Node: Checking for MPFR1016345
-Node: POSIX Floating Point Problems1017819
-Ref: POSIX Floating Point Problems-Footnote-11022104
-Node: Floating point summary1022142
-Node: Dynamic Extensions1024332
-Node: Extension Intro1025885
-Node: Plugin License1027151
-Node: Extension Mechanism Outline1027948
-Ref: figure-load-extension1028387
-Ref: figure-register-new-function1029953
-Ref: figure-call-new-function1031046
-Node: Extension API Description1033109
-Node: Extension API Functions Introduction1034822
-Ref: table-api-std-headers1036658
-Node: General Data Types1040908
-Ref: General Data Types-Footnote-11049614
-Node: Memory Allocation Functions1049913
-Ref: Memory Allocation Functions-Footnote-11054414
-Node: Constructor Functions1054513
-Node: API Ownership of MPFR and GMP Values1058166
-Node: Registration Functions1059479
-Node: Extension Functions1060179
-Node: Exit Callback Functions1065501
-Node: Extension Version String1066751
-Node: Input Parsers1067414
-Node: Output Wrappers1080135
-Node: Two-way processors1084647
-Node: Printing Messages1086912
-Ref: Printing Messages-Footnote-11088083
-Node: Updating ERRNO1088236
-Node: Requesting Values1088975
-Ref: table-value-types-returned1089712
-Node: Accessing Parameters1090821
-Node: Symbol Table Access1092058
-Node: Symbol table by name1092570
-Ref: Symbol table by name-Footnote-11095595
-Node: Symbol table by cookie1095723
-Ref: Symbol table by cookie-Footnote-11099908
-Node: Cached values1099972
-Ref: Cached values-Footnote-11103508
-Node: Array Manipulation1103661
-Ref: Array Manipulation-Footnote-11104752
-Node: Array Data Types1104789
-Ref: Array Data Types-Footnote-11107447
-Node: Array Functions1107539
-Node: Flattening Arrays1112037
-Node: Creating Arrays1119013
-Node: Redirection API1123780
-Node: Extension API Variables1126613
-Node: Extension Versioning1127324
-Ref: gawk-api-version1127753
-Node: Extension GMP/MPFR Versioning1129485
-Node: Extension API Informational Variables1131113
-Node: Extension API Boilerplate1132186
-Node: Changes from API V11136160
-Node: Finding Extensions1137732
-Node: Extension Example1138291
-Node: Internal File Description1139089
-Node: Internal File Ops1143169
-Ref: Internal File Ops-Footnote-11154519
-Node: Using Internal File Ops1154659
-Ref: Using Internal File Ops-Footnote-11157042
-Node: Extension Samples1157316
-Node: Extension Sample File Functions1158845
-Node: Extension Sample Fnmatch1166494
-Node: Extension Sample Fork1167981
-Node: Extension Sample Inplace1169199
-Node: Extension Sample Ord1172825
-Node: Extension Sample Readdir1173661
-Ref: table-readdir-file-types1174550
-Node: Extension Sample Revout1175618
-Node: Extension Sample Rev2way1176207
-Node: Extension Sample Read write array1176947
-Node: Extension Sample Readfile1180113
-Node: Extension Sample Time1181208
-Node: Extension Sample API Tests1182960
-Node: gawkextlib1183452
-Node: Extension summary1186370
-Node: Extension Exercises1190072
-Node: Language History1191314
-Node: V7/SVR3.11192970
-Node: SVR41195122
-Node: POSIX1196556
-Node: BTL1197937
-Node: POSIX/GNU1198666
-Node: Feature History1204444
-Node: Common Extensions1221619
-Node: Ranges and Locales1222902
-Ref: Ranges and Locales-Footnote-11227518
-Ref: Ranges and Locales-Footnote-21227545
-Ref: Ranges and Locales-Footnote-31227780
-Node: Contributors1228003
-Node: History summary1234000
-Node: Installation1235380
-Node: Gawk Distribution1236324
-Node: Getting1236808
-Node: Extracting1237771
-Node: Distribution contents1239409
-Node: Unix Installation1246470
-Node: Quick Installation1247274
-Node: Compiling with MPFR1249694
-Node: Shell Startup Files1250384
-Node: Additional Configuration Options1251473
-Node: Configuration Philosophy1253788
-Node: Compiling from Git1256184
-Node: Building the Documentation1256739
-Node: Non-Unix Installation1258123
-Node: PC Installation1258583
-Node: PC Binary Installation1259421
-Node: PC Compiling1260294
-Node: PC Using1261411
-Node: Cygwin1264964
-Node: MSYS1266188
-Node: VMS Installation1266790
-Node: VMS Compilation1267509
-Ref: VMS Compilation-Footnote-11268738
-Node: VMS Dynamic Extensions1268796
-Node: VMS Installation Details1270481
-Node: VMS Running1272743
-Node: VMS GNV1277022
-Node: Bugs1277736
-Node: Bug definition1278648
-Node: Bug address1281584
-Node: Usenet1284972
-Node: Performance bugs1286161
-Node: Asking for help1289082
-Node: Maintainers1291049
-Node: Other Versions1292243
-Node: Installation summary1300407
-Node: Notes1301771
-Node: Compatibility Mode1302565
-Node: Additions1303347
-Node: Accessing The Source1304272
-Node: Adding Code1305709
-Node: New Ports1311901
-Node: Derived Files1316276
-Ref: Derived Files-Footnote-11321936
-Ref: Derived Files-Footnote-21321971
-Ref: Derived Files-Footnote-31322569
-Node: Future Extensions1322683
-Node: Implementation Limitations1323341
-Node: Extension Design1324551
-Node: Old Extension Problems1325695
-Ref: Old Extension Problems-Footnote-11327213
-Node: Extension New Mechanism Goals1327270
-Ref: Extension New Mechanism Goals-Footnote-11330634
-Node: Extension Other Design Decisions1330823
-Node: Extension Future Growth1332936
-Node: Notes summary1333542
-Node: Basic Concepts1334700
-Node: Basic High Level1335381
-Ref: figure-general-flow1335663
-Ref: figure-process-flow1336349
-Ref: Basic High Level-Footnote-11339651
-Node: Basic Data Typing1339836
-Node: Glossary1343164
-Node: Copying1375051
-Node: GNU Free Documentation License1412594
-Node: Index1437714
+Ref: Indirect Calls-Footnote-1651853
+Node: Functions Summary651981
+Node: Library Functions654686
+Ref: Library Functions-Footnote-1658293
+Ref: Library Functions-Footnote-2658436
+Node: Library Names658607
+Ref: Library Names-Footnote-1662274
+Ref: Library Names-Footnote-2662497
+Node: General Functions662583
+Node: Strtonum Function663765
+Node: Assert Function666787
+Node: Round Function670113
+Node: Cliff Random Function671653
+Node: Ordinal Functions672669
+Ref: Ordinal Functions-Footnote-1675732
+Ref: Ordinal Functions-Footnote-2675984
+Node: Join Function676194
+Ref: Join Function-Footnote-1677964
+Node: Getlocaltime Function678164
+Node: Readfile Function681906
+Node: Shell Quoting683883
+Node: Isnumeric Function685311
+Node: Data File Management686699
+Node: Filetrans Function687331
+Node: Rewind Function691427
+Node: File Checking693336
+Ref: File Checking-Footnote-1694670
+Node: Empty Files694871
+Node: Ignoring Assigns696850
+Node: Getopt Function698400
+Ref: Getopt Function-Footnote-1713697
+Node: Passwd Functions713897
+Ref: Passwd Functions-Footnote-1722736
+Node: Group Functions722824
+Ref: Group Functions-Footnote-1730722
+Node: Walking Arrays730929
+Node: Library Functions Summary733937
+Node: Library Exercises735343
+Node: Sample Programs735808
+Node: Running Examples736578
+Node: Clones737306
+Node: Cut Program738530
+Node: Egrep Program748670
+Node: Id Program757671
+Node: Split Program767606
+Ref: Split Program-Footnote-1777499
+Node: Tee Program777672
+Node: Uniq Program780462
+Node: Wc Program788050
+Node: Bytes vs. Characters788437
+Node: Using extensions789985
+Node: wc program790739
+Node: Miscellaneous Programs795604
+Node: Dupword Program796817
+Node: Alarm Program798847
+Node: Translate Program803702
+Ref: Translate Program-Footnote-1808267
+Node: Labels Program808537
+Ref: Labels Program-Footnote-1811888
+Node: Word Sorting811972
+Node: History Sorting816044
+Node: Extract Program818269
+Node: Simple Sed826282
+Node: Igawk Program829356
+Ref: Igawk Program-Footnote-1843687
+Ref: Igawk Program-Footnote-2843889
+Ref: Igawk Program-Footnote-3844011
+Node: Anagram Program844126
+Node: Signature Program847188
+Node: Programs Summary848435
+Node: Programs Exercises849649
+Ref: Programs Exercises-Footnote-1853779
+Node: Advanced Features853865
+Node: Nondecimal Data855996
+Node: Boolean Typed Values857594
+Node: Array Sorting859475
+Node: Controlling Array Traversal860180
+Ref: Controlling Array Traversal-Footnote-1868548
+Node: Array Sorting Functions868666
+Ref: Array Sorting Functions-Footnote-1874040
+Node: Two-way I/O874236
+Ref: Two-way I/O-Footnote-1881962
+Ref: Two-way I/O-Footnote-2882149
+Node: TCP/IP Networking882231
+Node: Profiling885307
+Node: Extension Philosophy894616
+Node: Advanced Features Summary896095
+Node: Internationalization898110
+Node: I18N and L10N899784
+Node: Explaining gettext900471
+Ref: Explaining gettext-Footnote-1906363
+Ref: Explaining gettext-Footnote-2906548
+Node: Programmer i18n906713
+Ref: Programmer i18n-Footnote-1911662
+Node: Translator i18n911711
+Node: String Extraction912505
+Ref: String Extraction-Footnote-1913637
+Node: Printf Ordering913723
+Ref: Printf Ordering-Footnote-1916509
+Node: I18N Portability916573
+Ref: I18N Portability-Footnote-1919029
+Node: I18N Example919092
+Ref: I18N Example-Footnote-1922367
+Ref: I18N Example-Footnote-2922440
+Node: Gawk I18N922549
+Node: I18N Summary923171
+Node: Debugger924512
+Node: Debugging925512
+Node: Debugging Concepts925953
+Node: Debugging Terms927762
+Node: Awk Debugging930337
+Ref: Awk Debugging-Footnote-1931282
+Node: Sample Debugging Session931414
+Node: Debugger Invocation931948
+Node: Finding The Bug933334
+Node: List of Debugger Commands939808
+Node: Breakpoint Control941141
+Node: Debugger Execution Control944835
+Node: Viewing And Changing Data948197
+Node: Execution Stack951738
+Node: Debugger Info953375
+Node: Miscellaneous Debugger Commands957446
+Node: Readline Support962508
+Node: Limitations963404
+Node: Debugging Summary965958
+Node: Namespaces967237
+Node: Global Namespace968348
+Node: Qualified Names969746
+Node: Default Namespace970745
+Node: Changing The Namespace971486
+Node: Naming Rules973100
+Node: Internal Name Management974948
+Node: Namespace Example975990
+Node: Namespace And Features978552
+Node: Namespace Summary979987
+Node: Arbitrary Precision Arithmetic981464
+Node: Computer Arithmetic982951
+Ref: table-numeric-ranges986717
+Ref: table-floating-point-ranges987211
+Ref: Computer Arithmetic-Footnote-1987870
+Node: Math Definitions987927
+Ref: table-ieee-formats990903
+Node: MPFR features991471
+Node: FP Math Caution993189
+Ref: FP Math Caution-Footnote-1994261
+Node: Inexactness of computations994630
+Node: Inexact representation995661
+Node: Comparing FP Values997021
+Node: Errors accumulate998262
+Node: Strange values999718
+Ref: Strange values-Footnote-11002306
+Node: Getting Accuracy1002411
+Node: Try To Round1005121
+Node: Setting precision1006020
+Ref: table-predefined-precision-strings1006717
+Node: Setting the rounding mode1008548
+Ref: table-gawk-rounding-modes1008922
+Ref: Setting the rounding mode-Footnote-11012854
+Node: Arbitrary Precision Integers1013033
+Ref: Arbitrary Precision Integers-Footnote-11016208
+Node: Checking for MPFR1016357
+Node: POSIX Floating Point Problems1017831
+Ref: POSIX Floating Point Problems-Footnote-11022116
+Node: Floating point summary1022154
+Node: Dynamic Extensions1024344
+Node: Extension Intro1025897
+Node: Plugin License1027163
+Node: Extension Mechanism Outline1027960
+Ref: figure-load-extension1028399
+Ref: figure-register-new-function1029965
+Ref: figure-call-new-function1031058
+Node: Extension API Description1033121
+Node: Extension API Functions Introduction1034834
+Ref: table-api-std-headers1036670
+Node: General Data Types1040920
+Ref: General Data Types-Footnote-11049626
+Node: Memory Allocation Functions1049925
+Ref: Memory Allocation Functions-Footnote-11054426
+Node: Constructor Functions1054525
+Node: API Ownership of MPFR and GMP Values1058178
+Node: Registration Functions1059491
+Node: Extension Functions1060191
+Node: Exit Callback Functions1065513
+Node: Extension Version String1066763
+Node: Input Parsers1067426
+Node: Output Wrappers1080147
+Node: Two-way processors1084659
+Node: Printing Messages1086924
+Ref: Printing Messages-Footnote-11088095
+Node: Updating ERRNO1088248
+Node: Requesting Values1088987
+Ref: table-value-types-returned1089724
+Node: Accessing Parameters1090833
+Node: Symbol Table Access1092070
+Node: Symbol table by name1092582
+Ref: Symbol table by name-Footnote-11095607
+Node: Symbol table by cookie1095735
+Ref: Symbol table by cookie-Footnote-11099920
+Node: Cached values1099984
+Ref: Cached values-Footnote-11103520
+Node: Array Manipulation1103673
+Ref: Array Manipulation-Footnote-11104764
+Node: Array Data Types1104801
+Ref: Array Data Types-Footnote-11107459
+Node: Array Functions1107551
+Node: Flattening Arrays1112049
+Node: Creating Arrays1119025
+Node: Redirection API1123792
+Node: Extension API Variables1126625
+Node: Extension Versioning1127336
+Ref: gawk-api-version1127765
+Node: Extension GMP/MPFR Versioning1129497
+Node: Extension API Informational Variables1131125
+Node: Extension API Boilerplate1132198
+Node: Changes from API V11136172
+Node: Finding Extensions1137744
+Node: Extension Example1138303
+Node: Internal File Description1139101
+Node: Internal File Ops1143181
+Ref: Internal File Ops-Footnote-11154531
+Node: Using Internal File Ops1154671
+Ref: Using Internal File Ops-Footnote-11157054
+Node: Extension Samples1157328
+Node: Extension Sample File Functions1158857
+Node: Extension Sample Fnmatch1166506
+Node: Extension Sample Fork1167993
+Node: Extension Sample Inplace1169211
+Node: Extension Sample Ord1172837
+Node: Extension Sample Readdir1173673
+Ref: table-readdir-file-types1174562
+Node: Extension Sample Revout1175630
+Node: Extension Sample Rev2way1176219
+Node: Extension Sample Read write array1176959
+Node: Extension Sample Readfile1180125
+Node: Extension Sample Time1181220
+Node: Extension Sample API Tests1182972
+Node: gawkextlib1183464
+Node: Extension summary1186382
+Node: Extension Exercises1190084
+Node: Language History1191326
+Node: V7/SVR3.11192982
+Node: SVR41195134
+Node: POSIX1196568
+Node: BTL1197949
+Node: POSIX/GNU1198678
+Node: Feature History1204456
+Node: Common Extensions1221631
+Node: Ranges and Locales1222914
+Ref: Ranges and Locales-Footnote-11227530
+Ref: Ranges and Locales-Footnote-21227557
+Ref: Ranges and Locales-Footnote-31227792
+Node: Contributors1228015
+Node: History summary1234012
+Node: Installation1235392
+Node: Gawk Distribution1236336
+Node: Getting1236820
+Node: Extracting1237783
+Node: Distribution contents1239421
+Node: Unix Installation1246482
+Node: Quick Installation1247286
+Node: Compiling with MPFR1249706
+Node: Shell Startup Files1250396
+Node: Additional Configuration Options1251485
+Node: Configuration Philosophy1253800
+Node: Compiling from Git1256196
+Node: Building the Documentation1256751
+Node: Non-Unix Installation1258135
+Node: PC Installation1258595
+Node: PC Binary Installation1259433
+Node: PC Compiling1260306
+Node: PC Using1261423
+Node: Cygwin1264976
+Node: MSYS1266200
+Node: VMS Installation1266802
+Node: VMS Compilation1267521
+Ref: VMS Compilation-Footnote-11268750
+Node: VMS Dynamic Extensions1268808
+Node: VMS Installation Details1270493
+Node: VMS Running1272755
+Node: VMS GNV1277034
+Node: Bugs1277748
+Node: Bug definition1278660
+Node: Bug address1281596
+Node: Usenet1284984
+Node: Performance bugs1286173
+Node: Asking for help1289094
+Node: Maintainers1291061
+Node: Other Versions1292255
+Node: Installation summary1300419
+Node: Notes1301783
+Node: Compatibility Mode1302577
+Node: Additions1303359
+Node: Accessing The Source1304284
+Node: Adding Code1305721
+Node: New Ports1311913
+Node: Derived Files1316288
+Ref: Derived Files-Footnote-11321948
+Ref: Derived Files-Footnote-21321983
+Ref: Derived Files-Footnote-31322581
+Node: Future Extensions1322695
+Node: Implementation Limitations1323353
+Node: Extension Design1324563
+Node: Old Extension Problems1325707
+Ref: Old Extension Problems-Footnote-11327225
+Node: Extension New Mechanism Goals1327282
+Ref: Extension New Mechanism Goals-Footnote-11330646
+Node: Extension Other Design Decisions1330835
+Node: Extension Future Growth1332948
+Node: Notes summary1333554
+Node: Basic Concepts1334712
+Node: Basic High Level1335393
+Ref: figure-general-flow1335675
+Ref: figure-process-flow1336361
+Ref: Basic High Level-Footnote-11339663
+Node: Basic Data Typing1339848
+Node: Glossary1343176
+Node: Copying1375063
+Node: GNU Free Documentation License1412606
+Node: Index1437726

End Tag Table