gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] gawk branch, master, updated. gawk-4.1.0-4689-gb55d466c


From: Arnold Robbins
Subject: [SCM] gawk branch, master, updated. gawk-4.1.0-4689-gb55d466c
Date: Mon, 18 Apr 2022 09:22:06 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  b55d466c54ef8364259759fdcf2c66a5ab4fb5a1 (commit)
       via  72b1a070b5298e66fe0ab8b13489a64e14d5ea7e (commit)
       via  f77ab7d2f009da2b9e60f17633a8b71488f85ceb (commit)
      from  b6fd48c9891858d9f84ee49b6735be5db950a8a0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=b55d466c54ef8364259759fdcf2c66a5ab4fb5a1

commit b55d466c54ef8364259759fdcf2c66a5ab4fb5a1
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Mon Apr 18 16:21:45 2022 +0300

    Small fixes to gawkbug and its man page.

diff --git a/ChangeLog b/ChangeLog
index 2b330a3d..a1c9443a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2022-04-18         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * gawkbug.in: Small changes.
+
 2022-04-01         Arnold D. Robbins     <arnold@skeeve.com>
 
        Small fix from the persistent-gawk guys.
diff --git a/doc/ChangeLog b/doc/ChangeLog
index e31adf7c..d1bc266f 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,6 +1,7 @@
 2022-04-18         Arnold D. Robbins     <arnold@skeeve.com>
 
        * gawktexi.in (Adding Code): Update coding style instructions.
+       * gawkbug.1: Small changes.
 
 2022-03-10         Arnold D. Robbins     <arnold@skeeve.com>
 
diff --git a/doc/gawkbug.1 b/doc/gawkbug.1
index eb6889e7..c9fa4283 100644
--- a/doc/gawkbug.1
+++ b/doc/gawkbug.1
@@ -4,9 +4,9 @@
 .\"     Arnold Robbins
 .\"     bug-gawk@gnu.org
 .\"
-.\"     Last Change: Sat Feb 26 22:38:19 IST 2022
+.\"     Last Change: Mon Apr 18 16:21:25 IDT 2022
 .\"
-.TH GAWKBUG 1 "2022 Feb 26" "GNU Awk 5.2"
+.TH GAWKBUG 1 "2022 Apr 18" "GNU Awk 5.2"
 .SH NAME
 gawkbug \- report a bug in gawk
 .SH SYNOPSIS
@@ -14,7 +14,9 @@ gawkbug \- report a bug in gawk
 .SH DESCRIPTION
 .B gawkbug
 is a shell script to help the user compose and mail bug reports
-concerning gawk in a standard format.
+concerning
+.B gawk
+in a standard format.
 .B gawkbug
 invokes the editor specified by the environment variable
 .SM
@@ -28,7 +30,8 @@ file \fIdead.gawkbug\fP in the invoking user's home directory.
 .PP
 The bug report format outline consists of several sections.  The first
 section provides information about the machine, operating system, the
-gawk version, and the compilation environment.  The second section
+.B gawk
+version, and the compilation environment.  The second section
 should be filled in with a description of the bug.  The third section
 should be a description of how to reproduce the bug.  The optional
 fourth section is for a proposed fix.  Fixes are encouraged.
@@ -44,7 +47,7 @@ is not set,
 .B gawkbug
 attempts to locate a number of alternative editors, including
 .BR vim ,
-and if must,
+and if it must,
 .BR emacs .
 If
 .B gawkbug
diff --git a/gawkbug.in b/gawkbug.in
index 7e13ec5e..b04e7de3 100644
--- a/gawkbug.in
+++ b/gawkbug.in
@@ -38,14 +38,14 @@ export PATH
 : ${TMPDIR:=/tmp}
 
 #Securely create a temporary directory for the temporary files
-TEMPDIR=$TMPDIR/bbug.$$
+TEMPDIR=$TMPDIR/gbug.$$
 (umask 077 && mkdir "$TEMPDIR") || {
        echo "$0: could not create temporary directory" >&2
        exit 1
 }
 
-TEMPFILE1=$TEMPDIR/bbug1
-TEMPFILE2=$TEMPDIR/bbug2
+TEMPFILE1=$TEMPDIR/gbug1
+TEMPFILE2=$TEMPDIR/gbug2
         
 USAGE="Usage: $0 [--help] [--version] [bug-report-email-address]"
 VERSTR="GNU gawkbug, version ${VERSION}"
@@ -83,7 +83,11 @@ for when Gawk doesn't behave like you'd like, or expect.
 Gawkbug will start up your editor (as defined by the shell's
 EDITOR environment variable) with a preformatted bug report
 template for you to fill in. The report will be mailed to the
-bug-gawk mailing list by default. See the manual for details.
+bug-gawk mailing list by default.
+
+Please see https://www.gnu.org/software/gawk/manual/html_node/Bugs.html
+for bug reporting instructions.  Reading that information before
+repoting a bug will make everyones' lives easier.
 
 If you invoke gawkbug by accident, just quit your editor without
 saving any changes to the template, and no bug report will be sent.

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=72b1a070b5298e66fe0ab8b13489a64e14d5ea7e

commit 72b1a070b5298e66fe0ab8b13489a64e14d5ea7e
Merge: b6fd48c9 f77ab7d2
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Mon Apr 18 16:20:03 2022 +0300

    Merge branch 'gawk-5.1-stable'

diff --cc doc/ChangeLog
index 995d6a6d,c366183c..e31adf7c
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@@ -1,13 -1,7 +1,17 @@@
+ 2022-04-18         Arnold D. Robbins     <arnold@skeeve.com>
+ 
+       * gawktexi.in (Adding Code): Update coding style instructions.
+ 
 +2022-03-10         Arnold D. Robbins     <arnold@skeeve.com>
 +
 +      * gawk.1: Formatting fixes.
 +
 +2022-03-03         Arnold D. Robbins     <arnold@skeeve.com>
 +
 +      * gawk.1: Chopped down in size by about 40%.
 +      * wordlist3: Updated for new man page.
 +      * wordlist: Updated since it needed it.
 +
  2022-03-01         Arnold D. Robbins     <arnold@skeeve.com>
  
        * gawktexi.in: Typo fix. Thanks to Antonio Columbo for pointing
diff --cc doc/gawk.info
index b0167ae0,7fe24cdd..46eaccc6
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@@ -37119,8 -36983,7 +37132,8 @@@ Inde
                                                                (line   6)
  * gawk, implementation issues, debugging: Compatibility Mode. (line   6)
  * gawk, features, adding:                Adding Code.         (line   6)
- * gawk, coding style in:                 Adding Code.         (line  37)
+ * gawk, coding style in:                 Adding Code.         (line  42)
 +* gawkbug utility:                       Bug address.         (line  31)
  * gawkextlib project:                    gawkextlib.          (line   6)
  * gawklibpath_append shell function:     Shell Startup Files. (line  29)
  * gawklibpath_default shell function:    Shell Startup Files. (line  22)
@@@ -38777,612 -38635,609 +38790,612 @@@
  
  Tag Table:
  Node: Top1200
 -Node: Foreword345313
 -Node: Foreword449755
 -Node: Preface51287
 -Ref: Preface-Footnote-154146
 -Ref: Preface-Footnote-254255
 -Ref: Preface-Footnote-354489
 -Node: History54631
 -Node: Names56983
 -Ref: Names-Footnote-158087
 -Node: This Manual58234
 -Ref: This Manual-Footnote-164873
 -Node: Conventions64973
 -Node: Manual History67342
 -Ref: Manual History-Footnote-170339
 -Ref: Manual History-Footnote-270380
 -Node: How To Contribute70454
 -Node: Acknowledgments71380
 -Node: Getting Started76317
 -Node: Running gawk78756
 -Node: One-shot79946
 -Node: Read Terminal81209
 -Node: Long83202
 -Node: Executable Scripts84715
 -Ref: Executable Scripts-Footnote-187348
 -Node: Comments87451
 -Node: Quoting89935
 -Node: DOS Quoting95461
 -Node: Sample Data Files97517
 -Node: Very Simple100112
 -Node: Two Rules106214
 -Node: More Complex108099
 -Node: Statements/Lines110431
 -Ref: Statements/Lines-Footnote-1114915
 -Node: Other Features115180
 -Node: When116116
 -Ref: When-Footnote-1117870
 -Node: Intro Summary117935
 -Node: Invoking Gawk118819
 -Node: Command Line120333
 -Node: Options121131
 -Ref: Options-Footnote-1139045
 -Ref: Options-Footnote-2139276
 -Node: Other Arguments139301
 -Node: Naming Standard Input143312
 -Node: Environment Variables144522
 -Node: AWKPATH Variable145080
 -Ref: AWKPATH Variable-Footnote-1148492
 -Ref: AWKPATH Variable-Footnote-2148526
 -Node: AWKLIBPATH Variable148897
 -Ref: AWKLIBPATH Variable-Footnote-1150594
 -Node: Other Environment Variables150969
 -Node: Exit Status154790
 -Node: Include Files155467
 -Node: Loading Shared Libraries159157
 -Node: Obsolete160585
 -Node: Undocumented161277
 -Node: Invoking Summary161574
 -Node: Regexp164415
 -Node: Regexp Usage165869
 -Node: Escape Sequences167906
 -Node: Regexp Operators174147
 -Node: Regexp Operator Details174632
 -Ref: Regexp Operator Details-Footnote-1181996
 -Node: Interval Expressions182143
 -Ref: Interval Expressions-Footnote-1184343
 -Node: Bracket Expressions184441
 -Ref: table-char-classes186917
 -Node: Leftmost Longest190244
 -Node: Computed Regexps191547
 -Node: GNU Regexp Operators194974
 -Node: Case-sensitivity198711
 -Ref: Case-sensitivity-Footnote-1201577
 -Ref: Case-sensitivity-Footnote-2201812
 -Node: Regexp Summary201920
 -Node: Reading Files203386
 -Node: Records205655
 -Node: awk split records206730
 -Node: gawk split records211430
 -Ref: gawk split records-Footnote-1216504
 -Node: Fields216541
 -Node: Nonconstant Fields219282
 -Ref: Nonconstant Fields-Footnote-1221518
 -Node: Changing Fields221722
 -Node: Field Separators227753
 -Node: Default Field Splitting230451
 -Node: Regexp Field Splitting231569
 -Node: Single Character Fields235246
 -Node: Command Line Field Separator236306
 -Node: Full Line Fields239524
 -Ref: Full Line Fields-Footnote-1241046
 -Ref: Full Line Fields-Footnote-2241092
 -Node: Field Splitting Summary241193
 -Node: Constant Size243267
 -Node: Fixed width data243999
 -Node: Skipping intervening247466
 -Node: Allowing trailing data248264
 -Node: Fields with fixed data249301
 -Node: Splitting By Content250819
 -Ref: Splitting By Content-Footnote-1254655
 -Node: More CSV254818
 -Node: FS versus FPAT256433
 -Node: Testing field creation257593
 -Node: Multiple Line259218
 -Node: Getline265495
 -Node: Plain Getline267964
 -Node: Getline/Variable270537
 -Node: Getline/File271688
 -Node: Getline/Variable/File273076
 -Ref: Getline/Variable/File-Footnote-1274681
 -Node: Getline/Pipe274769
 -Node: Getline/Variable/Pipe277473
 -Node: Getline/Coprocess278608
 -Node: Getline/Variable/Coprocess279875
 -Node: Getline Notes280617
 -Node: Getline Summary283414
 -Ref: table-getline-variants283838
 -Node: Read Timeout284587
 -Ref: Read Timeout-Footnote-1288493
 -Node: Retrying Input288551
 -Node: Command-line directories289750
 -Node: Input Summary290656
 -Node: Input Exercises293828
 -Node: Printing294262
 -Node: Print296096
 -Node: Print Examples297553
 -Node: Output Separators300333
 -Node: OFMT302350
 -Node: Printf303706
 -Node: Basic Printf304491
 -Node: Control Letters306065
 -Node: Format Modifiers311229
 -Node: Printf Examples317244
 -Node: Redirection319730
 -Node: Special FD326571
 -Ref: Special FD-Footnote-1329739
 -Node: Special Files329813
 -Node: Other Inherited Files330430
 -Node: Special Network331431
 -Node: Special Caveats332291
 -Node: Close Files And Pipes333240
 -Ref: table-close-pipe-return-values340147
 -Ref: Close Files And Pipes-Footnote-1340961
 -Ref: Close Files And Pipes-Footnote-2341109
 -Node: Nonfatal341261
 -Node: Output Summary343599
 -Node: Output Exercises344821
 -Node: Expressions345500
 -Node: Values346688
 -Node: Constants347366
 -Node: Scalar Constants348057
 -Ref: Scalar Constants-Footnote-1350567
 -Node: Nondecimal-numbers350817
 -Node: Regexp Constants353818
 -Node: Using Constant Regexps354344
 -Node: Standard Regexp Constants354966
 -Node: Strong Regexp Constants358154
 -Node: Variables361869
 -Node: Using Variables362526
 -Node: Assignment Options364436
 -Node: Conversion366907
 -Node: Strings And Numbers367431
 -Ref: Strings And Numbers-Footnote-1370494
 -Node: Locale influences conversions370603
 -Ref: table-locale-affects373361
 -Node: All Operators373980
 -Node: Arithmetic Ops374609
 -Node: Concatenation377325
 -Ref: Concatenation-Footnote-1380172
 -Node: Assignment Ops380279
 -Ref: table-assign-ops385270
 -Node: Increment Ops386584
 -Node: Truth Values and Conditions390044
 -Node: Truth Values391118
 -Node: Typing and Comparison392166
 -Node: Variable Typing392986
 -Ref: Variable Typing-Footnote-1399449
 -Ref: Variable Typing-Footnote-2399521
 -Node: Comparison Operators399598
 -Ref: table-relational-ops400017
 -Node: POSIX String Comparison403513
 -Ref: POSIX String Comparison-Footnote-1405208
 -Ref: POSIX String Comparison-Footnote-2405347
 -Node: Boolean Ops405431
 -Ref: Boolean Ops-Footnote-1409913
 -Node: Conditional Exp410005
 -Node: Function Calls411741
 -Node: Precedence415618
 -Node: Locales419277
 -Node: Expressions Summary420909
 -Node: Patterns and Actions423482
 -Node: Pattern Overview424602
 -Node: Regexp Patterns426279
 -Node: Expression Patterns426821
 -Node: Ranges430602
 -Node: BEGIN/END433710
 -Node: Using BEGIN/END434471
 -Ref: Using BEGIN/END-Footnote-1437225
 -Node: I/O And BEGIN/END437331
 -Node: BEGINFILE/ENDFILE439644
 -Node: Empty442875
 -Node: Using Shell Variables443192
 -Node: Action Overview445466
 -Node: Statements447791
 -Node: If Statement449639
 -Node: While Statement451134
 -Node: Do Statement453162
 -Node: For Statement454310
 -Node: Switch Statement457565
 -Node: Break Statement460006
 -Node: Continue Statement462098
 -Node: Next Statement463925
 -Node: Nextfile Statement466308
 -Node: Exit Statement468997
 -Node: Built-in Variables471400
 -Node: User-modified472533
 -Node: Auto-set480300
 -Ref: Auto-set-Footnote-1497107
 -Ref: Auto-set-Footnote-2497313
 -Node: ARGC and ARGV497369
 -Node: Pattern Action Summary501582
 -Node: Arrays504012
 -Node: Array Basics505341
 -Node: Array Intro506185
 -Ref: figure-array-elements508160
 -Ref: Array Intro-Footnote-1510865
 -Node: Reference to Elements510993
 -Node: Assigning Elements513457
 -Node: Array Example513948
 -Node: Scanning an Array515707
 -Node: Controlling Scanning518729
 -Ref: Controlling Scanning-Footnote-1525185
 -Node: Numeric Array Subscripts525501
 -Node: Uninitialized Subscripts527685
 -Node: Delete529304
 -Ref: Delete-Footnote-1532056
 -Node: Multidimensional532113
 -Node: Multiscanning535208
 -Node: Arrays of Arrays536799
 -Node: Arrays Summary541567
 -Node: Functions543660
 -Node: Built-in544698
 -Node: Calling Built-in545779
 -Node: Numeric Functions547775
 -Ref: Numeric Functions-Footnote-1551803
 -Ref: Numeric Functions-Footnote-2552451
 -Ref: Numeric Functions-Footnote-3552499
 -Node: String Functions552771
 -Ref: String Functions-Footnote-1577613
 -Ref: String Functions-Footnote-2577741
 -Ref: String Functions-Footnote-3577989
 -Node: Gory Details578076
 -Ref: table-sub-escapes579867
 -Ref: table-sub-proposed581387
 -Ref: table-posix-sub582751
 -Ref: table-gensub-escapes584293
 -Ref: Gory Details-Footnote-1585117
 -Node: I/O Functions585271
 -Ref: table-system-return-values591725
 -Ref: I/O Functions-Footnote-1593806
 -Ref: I/O Functions-Footnote-2593954
 -Node: Time Functions594074
 -Ref: Time Functions-Footnote-1604745
 -Ref: Time Functions-Footnote-2604813
 -Ref: Time Functions-Footnote-3604971
 -Ref: Time Functions-Footnote-4605082
 -Ref: Time Functions-Footnote-5605194
 -Ref: Time Functions-Footnote-6605421
 -Node: Bitwise Functions605687
 -Ref: table-bitwise-ops606281
 -Ref: Bitwise Functions-Footnote-1612345
 -Ref: Bitwise Functions-Footnote-2612518
 -Node: Type Functions612709
 -Node: I18N Functions616038
 -Node: User-defined617689
 -Node: Definition Syntax618501
 -Ref: Definition Syntax-Footnote-1624195
 -Node: Function Example624266
 -Ref: Function Example-Footnote-1627188
 -Node: Function Calling627210
 -Node: Calling A Function627798
 -Node: Variable Scope628756
 -Node: Pass By Value/Reference631750
 -Node: Function Caveats634394
 -Ref: Function Caveats-Footnote-1636441
 -Node: Return Statement636561
 -Node: Dynamic Typing639540
 -Node: Indirect Calls640470
 -Node: Functions Summary651394
 -Node: Library Functions654099
 -Ref: Library Functions-Footnote-1657706
 -Ref: Library Functions-Footnote-2657849
 -Node: Library Names658020
 -Ref: Library Names-Footnote-1661687
 -Ref: Library Names-Footnote-2661910
 -Node: General Functions661996
 -Node: Strtonum Function663178
 -Node: Assert Function666200
 -Node: Round Function669526
 -Node: Cliff Random Function671066
 -Node: Ordinal Functions672082
 -Ref: Ordinal Functions-Footnote-1675145
 -Ref: Ordinal Functions-Footnote-2675397
 -Node: Join Function675607
 -Ref: Join Function-Footnote-1677377
 -Node: Getlocaltime Function677577
 -Node: Readfile Function681319
 -Node: Shell Quoting683296
 -Node: Isnumeric Function684724
 -Node: Data File Management686112
 -Node: Filetrans Function686744
 -Node: Rewind Function690840
 -Node: File Checking692749
 -Ref: File Checking-Footnote-1694083
 -Node: Empty Files694284
 -Node: Ignoring Assigns696263
 -Node: Getopt Function697813
 -Ref: Getopt Function-Footnote-1713110
 -Node: Passwd Functions713310
 -Ref: Passwd Functions-Footnote-1722149
 -Node: Group Functions722237
 -Ref: Group Functions-Footnote-1730135
 -Node: Walking Arrays730342
 -Node: Library Functions Summary733350
 -Node: Library Exercises734756
 -Node: Sample Programs735221
 -Node: Running Examples735991
 -Node: Clones736719
 -Node: Cut Program737943
 -Node: Egrep Program748083
 -Node: Id Program757084
 -Node: Split Program767019
 -Ref: Split Program-Footnote-1776912
 -Node: Tee Program777085
 -Node: Uniq Program779875
 -Node: Wc Program787463
 -Node: Bytes vs. Characters787850
 -Node: Using extensions789398
 -Node: wc program790152
 -Node: Miscellaneous Programs795017
 -Node: Dupword Program796230
 -Node: Alarm Program798260
 -Node: Translate Program803115
 -Ref: Translate Program-Footnote-1807680
 -Node: Labels Program807950
 -Ref: Labels Program-Footnote-1811301
 -Node: Word Sorting811385
 -Node: History Sorting815457
 -Node: Extract Program817682
 -Node: Simple Sed825695
 -Node: Igawk Program828769
 -Ref: Igawk Program-Footnote-1843100
 -Ref: Igawk Program-Footnote-2843302
 -Ref: Igawk Program-Footnote-3843424
 -Node: Anagram Program843539
 -Node: Signature Program846601
 -Node: Programs Summary847848
 -Node: Programs Exercises849062
 -Ref: Programs Exercises-Footnote-1853192
 -Node: Advanced Features853278
 -Node: Nondecimal Data855345
 -Node: Array Sorting856936
 -Node: Controlling Array Traversal857636
 -Ref: Controlling Array Traversal-Footnote-1866004
 -Node: Array Sorting Functions866122
 -Ref: Array Sorting Functions-Footnote-1872033
 -Node: Two-way I/O872229
 -Ref: Two-way I/O-Footnote-1879955
 -Ref: Two-way I/O-Footnote-2880142
 -Node: TCP/IP Networking880224
 -Node: Profiling883300
 -Node: Extension Philosophy892609
 -Node: Advanced Features Summary894088
 -Node: Internationalization896103
 -Node: I18N and L10N897777
 -Node: Explaining gettext898464
 -Ref: Explaining gettext-Footnote-1904356
 -Ref: Explaining gettext-Footnote-2904541
 -Node: Programmer i18n904706
 -Ref: Programmer i18n-Footnote-1909655
 -Node: Translator i18n909704
 -Node: String Extraction910498
 -Ref: String Extraction-Footnote-1911630
 -Node: Printf Ordering911716
 -Ref: Printf Ordering-Footnote-1914502
 -Node: I18N Portability914566
 -Ref: I18N Portability-Footnote-1917022
 -Node: I18N Example917085
 -Ref: I18N Example-Footnote-1920360
 -Ref: I18N Example-Footnote-2920433
 -Node: Gawk I18N920542
 -Node: I18N Summary921164
 -Node: Debugger922505
 -Node: Debugging923505
 -Node: Debugging Concepts923946
 -Node: Debugging Terms925755
 -Node: Awk Debugging928330
 -Ref: Awk Debugging-Footnote-1929275
 -Node: Sample Debugging Session929407
 -Node: Debugger Invocation929941
 -Node: Finding The Bug931327
 -Node: List of Debugger Commands937801
 -Node: Breakpoint Control939134
 -Node: Debugger Execution Control942828
 -Node: Viewing And Changing Data946190
 -Node: Execution Stack949731
 -Node: Debugger Info951368
 -Node: Miscellaneous Debugger Commands955439
 -Node: Readline Support960501
 -Node: Limitations961397
 -Node: Debugging Summary963951
 -Node: Namespaces965230
 -Node: Global Namespace966341
 -Node: Qualified Names967739
 -Node: Default Namespace968738
 -Node: Changing The Namespace969479
 -Node: Naming Rules971093
 -Node: Internal Name Management972941
 -Node: Namespace Example973983
 -Node: Namespace And Features976545
 -Node: Namespace Summary977980
 -Node: Arbitrary Precision Arithmetic979457
 -Node: Computer Arithmetic980944
 -Ref: table-numeric-ranges984710
 -Ref: table-floating-point-ranges985204
 -Ref: Computer Arithmetic-Footnote-1985863
 -Node: Math Definitions985920
 -Ref: table-ieee-formats989236
 -Ref: Math Definitions-Footnote-1989840
 -Node: MPFR features989945
 -Node: FP Math Caution991663
 -Ref: FP Math Caution-Footnote-1992735
 -Node: Inexactness of computations993104
 -Node: Inexact representation994064
 -Node: Comparing FP Values995424
 -Node: Errors accumulate996665
 -Node: Getting Accuracy998098
 -Node: Try To Round1000808
 -Node: Setting precision1001707
 -Ref: table-predefined-precision-strings1002404
 -Node: Setting the rounding mode1004235
 -Ref: table-gawk-rounding-modes1004609
 -Ref: Setting the rounding mode-Footnote-11008541
 -Node: Arbitrary Precision Integers1008720
 -Ref: Arbitrary Precision Integers-Footnote-11011895
 -Node: Checking for MPFR1012044
 -Node: POSIX Floating Point Problems1013518
 -Ref: POSIX Floating Point Problems-Footnote-11018171
 -Node: Floating point summary1018209
 -Node: Dynamic Extensions1020399
 -Node: Extension Intro1021952
 -Node: Plugin License1023218
 -Node: Extension Mechanism Outline1024015
 -Ref: figure-load-extension1024454
 -Ref: figure-register-new-function1026020
 -Ref: figure-call-new-function1027113
 -Node: Extension API Description1029176
 -Node: Extension API Functions Introduction1030889
 -Ref: table-api-std-headers1032725
 -Node: General Data Types1036975
 -Ref: General Data Types-Footnote-11045605
 -Node: Memory Allocation Functions1045904
 -Ref: Memory Allocation Functions-Footnote-11050405
 -Node: Constructor Functions1050504
 -Node: API Ownership of MPFR and GMP Values1053970
 -Node: Registration Functions1055283
 -Node: Extension Functions1055983
 -Node: Exit Callback Functions1061305
 -Node: Extension Version String1062555
 -Node: Input Parsers1063218
 -Node: Output Wrappers1075939
 -Node: Two-way processors1080451
 -Node: Printing Messages1082716
 -Ref: Printing Messages-Footnote-11083887
 -Node: Updating ERRNO1084040
 -Node: Requesting Values1084779
 -Ref: table-value-types-returned1085516
 -Node: Accessing Parameters1086453
 -Node: Symbol Table Access1087690
 -Node: Symbol table by name1088202
 -Ref: Symbol table by name-Footnote-11091227
 -Node: Symbol table by cookie1091355
 -Ref: Symbol table by cookie-Footnote-11095540
 -Node: Cached values1095604
 -Ref: Cached values-Footnote-11099140
 -Node: Array Manipulation1099293
 -Ref: Array Manipulation-Footnote-11100384
 -Node: Array Data Types1100421
 -Ref: Array Data Types-Footnote-11103079
 -Node: Array Functions1103171
 -Node: Flattening Arrays1107669
 -Node: Creating Arrays1114645
 -Node: Redirection API1119412
 -Node: Extension API Variables1122245
 -Node: Extension Versioning1122956
 -Ref: gawk-api-version1123385
 -Node: Extension GMP/MPFR Versioning1125117
 -Node: Extension API Informational Variables1126745
 -Node: Extension API Boilerplate1127818
 -Node: Changes from API V11131792
 -Node: Finding Extensions1133364
 -Node: Extension Example1133923
 -Node: Internal File Description1134721
 -Node: Internal File Ops1138801
 -Ref: Internal File Ops-Footnote-11150151
 -Node: Using Internal File Ops1150291
 -Ref: Using Internal File Ops-Footnote-11152674
 -Node: Extension Samples1152948
 -Node: Extension Sample File Functions1154477
 -Node: Extension Sample Fnmatch1162126
 -Node: Extension Sample Fork1163613
 -Node: Extension Sample Inplace1164831
 -Node: Extension Sample Ord1168457
 -Node: Extension Sample Readdir1169293
 -Ref: table-readdir-file-types1170182
 -Node: Extension Sample Revout1171250
 -Node: Extension Sample Rev2way1171839
 -Node: Extension Sample Read write array1172579
 -Node: Extension Sample Readfile1174521
 -Node: Extension Sample Time1175616
 -Node: Extension Sample API Tests1177368
 -Node: gawkextlib1177860
 -Node: Extension summary1180778
 -Node: Extension Exercises1184480
 -Node: Language History1185722
 -Node: V7/SVR3.11187378
 -Node: SVR41189530
 -Node: POSIX1190964
 -Node: BTL1192345
 -Node: POSIX/GNU1193074
 -Node: Feature History1198852
 -Node: Common Extensions1216027
 -Node: Ranges and Locales1217310
 -Ref: Ranges and Locales-Footnote-11221926
 -Ref: Ranges and Locales-Footnote-21221953
 -Ref: Ranges and Locales-Footnote-31222188
 -Node: Contributors1222411
 -Node: History summary1228408
 -Node: Installation1229788
 -Node: Gawk Distribution1230732
 -Node: Getting1231216
 -Node: Extracting1232179
 -Node: Distribution contents1233817
 -Node: Unix Installation1240878
 -Node: Quick Installation1241682
 -Node: Compiling with MPFR1244102
 -Node: Shell Startup Files1244792
 -Node: Additional Configuration Options1245881
 -Node: Configuration Philosophy1248196
 -Node: Compiling from Git1250592
 -Node: Building the Documentation1251147
 -Node: Non-Unix Installation1252531
 -Node: PC Installation1252991
 -Node: PC Binary Installation1253829
 -Node: PC Compiling1254702
 -Node: PC Using1255819
 -Node: Cygwin1259372
 -Node: MSYS1260596
 -Node: VMS Installation1261198
 -Node: VMS Compilation1261917
 -Ref: VMS Compilation-Footnote-11263146
 -Node: VMS Dynamic Extensions1263204
 -Node: VMS Installation Details1264889
 -Node: VMS Running1267151
 -Node: VMS GNV1271430
 -Node: Bugs1272144
 -Node: Bug definition1273056
 -Node: Bug address1275992
 -Node: Usenet1279380
 -Node: Performance bugs1280569
 -Node: Asking for help1283490
 -Node: Maintainers1285457
 -Node: Other Versions1286651
 -Node: Installation summary1294815
 -Node: Notes1296179
 -Node: Compatibility Mode1296973
 -Node: Additions1297755
 -Node: Accessing The Source1298680
 -Node: Adding Code1300117
 -Node: New Ports1306932
 -Node: Derived Files1311307
 -Ref: Derived Files-Footnote-11316967
 -Ref: Derived Files-Footnote-21317002
 -Ref: Derived Files-Footnote-31317600
 -Node: Future Extensions1317714
 -Node: Implementation Limitations1318372
 -Node: Extension Design1319582
 -Node: Old Extension Problems1320726
 -Ref: Old Extension Problems-Footnote-11322244
 -Node: Extension New Mechanism Goals1322301
 -Ref: Extension New Mechanism Goals-Footnote-11325665
 -Node: Extension Other Design Decisions1325854
 -Node: Extension Future Growth1327967
 -Node: Notes summary1328573
 -Node: Basic Concepts1329731
 -Node: Basic High Level1330412
 -Ref: figure-general-flow1330694
 -Ref: figure-process-flow1331380
 -Ref: Basic High Level-Footnote-11334682
 -Node: Basic Data Typing1334867
 -Node: Glossary1338195
 -Node: Copying1370080
 -Node: GNU Free Documentation License1407623
 -Node: Index1432743
 +Node: Foreword345584
 +Node: Foreword450026
 +Node: Preface51558
 +Ref: Preface-Footnote-154417
 +Ref: Preface-Footnote-254526
 +Ref: Preface-Footnote-354760
 +Node: History54902
 +Node: Names57254
 +Ref: Names-Footnote-158358
 +Node: This Manual58505
 +Ref: This Manual-Footnote-165144
 +Node: Conventions65244
 +Node: Manual History67613
 +Ref: Manual History-Footnote-170610
 +Ref: Manual History-Footnote-270651
 +Node: How To Contribute70725
 +Node: Acknowledgments71651
 +Node: Getting Started76588
 +Node: Running gawk79027
 +Node: One-shot80217
 +Node: Read Terminal81480
 +Node: Long83473
 +Node: Executable Scripts84986
 +Ref: Executable Scripts-Footnote-187619
 +Node: Comments87722
 +Node: Quoting90206
 +Node: DOS Quoting95732
 +Node: Sample Data Files97788
 +Node: Very Simple100383
 +Node: Two Rules106485
 +Node: More Complex108370
 +Node: Statements/Lines110702
 +Ref: Statements/Lines-Footnote-1115186
 +Node: Other Features115451
 +Node: When116387
 +Ref: When-Footnote-1118141
 +Node: Intro Summary118206
 +Node: Invoking Gawk119090
 +Node: Command Line120604
 +Node: Options121402
 +Ref: Options-Footnote-1139256
 +Ref: Options-Footnote-2139487
 +Node: Other Arguments139512
 +Node: Naming Standard Input143523
 +Node: Environment Variables144733
 +Node: AWKPATH Variable145291
 +Ref: AWKPATH Variable-Footnote-1148703
 +Ref: AWKPATH Variable-Footnote-2148737
 +Node: AWKLIBPATH Variable149108
 +Ref: AWKLIBPATH Variable-Footnote-1150805
 +Node: Other Environment Variables151180
 +Node: Exit Status155132
 +Node: Include Files155809
 +Node: Loading Shared Libraries159499
 +Node: Obsolete160927
 +Node: Undocumented161619
 +Node: Invoking Summary161916
 +Node: Regexp164757
 +Node: Regexp Usage166211
 +Node: Escape Sequences168248
 +Node: Regexp Operators174489
 +Node: Regexp Operator Details174974
 +Ref: Regexp Operator Details-Footnote-1182338
 +Node: Interval Expressions182485
 +Ref: Interval Expressions-Footnote-1184660
 +Node: Bracket Expressions184758
 +Ref: table-char-classes187234
 +Node: Leftmost Longest190561
 +Node: Computed Regexps191864
 +Node: GNU Regexp Operators195291
 +Node: Case-sensitivity198969
 +Ref: Case-sensitivity-Footnote-1201835
 +Ref: Case-sensitivity-Footnote-2202070
 +Node: Regexp Summary202178
 +Node: Reading Files203644
 +Node: Records205913
 +Node: awk split records206988
 +Node: gawk split records211688
 +Ref: gawk split records-Footnote-1216762
 +Node: Fields216799
 +Node: Nonconstant Fields219540
 +Ref: Nonconstant Fields-Footnote-1221776
 +Node: Changing Fields221980
 +Node: Field Separators228011
 +Node: Default Field Splitting230709
 +Node: Regexp Field Splitting231827
 +Node: Single Character Fields235504
 +Node: Command Line Field Separator236564
 +Node: Full Line Fields239782
 +Ref: Full Line Fields-Footnote-1241304
 +Ref: Full Line Fields-Footnote-2241350
 +Node: Field Splitting Summary241451
 +Node: Constant Size243525
 +Node: Fixed width data244257
 +Node: Skipping intervening247724
 +Node: Allowing trailing data248522
 +Node: Fields with fixed data249559
 +Node: Splitting By Content251077
 +Ref: Splitting By Content-Footnote-1254913
 +Node: More CSV255076
 +Node: FS versus FPAT256691
 +Node: Testing field creation257851
 +Node: Multiple Line259476
 +Node: Getline265753
 +Node: Plain Getline268222
 +Node: Getline/Variable270795
 +Node: Getline/File271946
 +Node: Getline/Variable/File273334
 +Ref: Getline/Variable/File-Footnote-1274939
 +Node: Getline/Pipe275027
 +Node: Getline/Variable/Pipe277731
 +Node: Getline/Coprocess278866
 +Node: Getline/Variable/Coprocess280133
 +Node: Getline Notes280875
 +Node: Getline Summary283672
 +Ref: table-getline-variants284096
 +Node: Read Timeout284845
 +Ref: Read Timeout-Footnote-1288751
 +Node: Retrying Input288809
 +Node: Command-line directories290008
 +Node: Input Summary290914
 +Node: Input Exercises294086
 +Node: Printing294520
 +Node: Print296354
 +Node: Print Examples297811
 +Node: Output Separators300591
 +Node: OFMT302608
 +Node: Printf303964
 +Node: Basic Printf304749
 +Node: Control Letters306323
 +Node: Format Modifiers311485
 +Node: Printf Examples317500
 +Node: Redirection319986
 +Node: Special FD326827
 +Ref: Special FD-Footnote-1329995
 +Node: Special Files330069
 +Node: Other Inherited Files330686
 +Node: Special Network331687
 +Node: Special Caveats332547
 +Node: Close Files And Pipes333496
 +Ref: table-close-pipe-return-values340403
 +Ref: Close Files And Pipes-Footnote-1341217
 +Ref: Close Files And Pipes-Footnote-2341365
 +Node: Nonfatal341517
 +Node: Output Summary343855
 +Node: Output Exercises345077
 +Node: Expressions345756
 +Node: Values346944
 +Node: Constants347622
 +Node: Scalar Constants348313
 +Ref: Scalar Constants-Footnote-1350823
 +Node: Nondecimal-numbers351073
 +Node: Regexp Constants354074
 +Node: Using Constant Regexps354600
 +Node: Standard Regexp Constants355222
 +Node: Strong Regexp Constants358410
 +Node: Variables362125
 +Node: Using Variables362782
 +Node: Assignment Options364692
 +Node: Conversion367163
 +Node: Strings And Numbers367687
 +Ref: Strings And Numbers-Footnote-1370750
 +Node: Locale influences conversions370859
 +Ref: table-locale-affects373617
 +Node: All Operators374236
 +Node: Arithmetic Ops374865
 +Node: Concatenation377581
 +Ref: Concatenation-Footnote-1380428
 +Node: Assignment Ops380535
 +Ref: table-assign-ops385526
 +Node: Increment Ops386840
 +Node: Truth Values and Conditions390300
 +Node: Truth Values391374
 +Node: Typing and Comparison392422
 +Node: Variable Typing393242
 +Ref: Variable Typing-Footnote-1399705
 +Ref: Variable Typing-Footnote-2399777
 +Node: Comparison Operators399854
 +Ref: table-relational-ops400273
 +Node: POSIX String Comparison403769
 +Ref: POSIX String Comparison-Footnote-1405464
 +Ref: POSIX String Comparison-Footnote-2405603
 +Node: Boolean Ops405687
 +Ref: Boolean Ops-Footnote-1410169
 +Node: Conditional Exp410261
 +Node: Function Calls411997
 +Node: Precedence415874
 +Node: Locales419533
 +Node: Expressions Summary421165
 +Node: Patterns and Actions423738
 +Node: Pattern Overview424858
 +Node: Regexp Patterns426535
 +Node: Expression Patterns427077
 +Node: Ranges430858
 +Node: BEGIN/END433966
 +Node: Using BEGIN/END434727
 +Ref: Using BEGIN/END-Footnote-1437481
 +Node: I/O And BEGIN/END437587
 +Node: BEGINFILE/ENDFILE439900
 +Node: Empty443131
 +Node: Using Shell Variables443448
 +Node: Action Overview445722
 +Node: Statements448047
 +Node: If Statement449895
 +Node: While Statement451390
 +Node: Do Statement453418
 +Node: For Statement454566
 +Node: Switch Statement457821
 +Node: Break Statement460262
 +Node: Continue Statement462354
 +Node: Next Statement464181
 +Node: Nextfile Statement466564
 +Node: Exit Statement469253
 +Node: Built-in Variables471656
 +Node: User-modified472789
 +Node: Auto-set480556
 +Ref: Auto-set-Footnote-1497363
 +Ref: Auto-set-Footnote-2497569
 +Node: ARGC and ARGV497625
 +Node: Pattern Action Summary501838
 +Node: Arrays504268
 +Node: Array Basics505597
 +Node: Array Intro506441
 +Ref: figure-array-elements508416
 +Ref: Array Intro-Footnote-1511121
 +Node: Reference to Elements511249
 +Node: Assigning Elements513713
 +Node: Array Example514204
 +Node: Scanning an Array515963
 +Node: Controlling Scanning518985
 +Ref: Controlling Scanning-Footnote-1525441
 +Node: Numeric Array Subscripts525757
 +Node: Uninitialized Subscripts527941
 +Node: Delete529560
 +Ref: Delete-Footnote-1532312
 +Node: Multidimensional532369
 +Node: Multiscanning535464
 +Node: Arrays of Arrays537055
 +Node: Arrays Summary541823
 +Node: Functions543916
 +Node: Built-in544954
 +Node: Calling Built-in546107
 +Node: Boolean Functions548103
 +Node: Numeric Functions548657
 +Ref: Numeric Functions-Footnote-1552684
 +Ref: Numeric Functions-Footnote-2553332
 +Ref: Numeric Functions-Footnote-3553380
 +Node: String Functions553652
 +Ref: String Functions-Footnote-1578494
 +Ref: String Functions-Footnote-2578622
 +Ref: String Functions-Footnote-3578870
 +Node: Gory Details578957
 +Ref: table-sub-escapes580748
 +Ref: table-sub-proposed582268
 +Ref: table-posix-sub583632
 +Ref: table-gensub-escapes585174
 +Ref: Gory Details-Footnote-1585998
 +Node: I/O Functions586152
 +Ref: table-system-return-values592606
 +Ref: I/O Functions-Footnote-1594687
 +Ref: I/O Functions-Footnote-2594835
 +Node: Time Functions594955
 +Ref: Time Functions-Footnote-1605626
 +Ref: Time Functions-Footnote-2605694
 +Ref: Time Functions-Footnote-3605852
 +Ref: Time Functions-Footnote-4605963
 +Ref: Time Functions-Footnote-5606075
 +Ref: Time Functions-Footnote-6606302
 +Node: Bitwise Functions606568
 +Ref: table-bitwise-ops607162
 +Ref: Bitwise Functions-Footnote-1613226
 +Ref: Bitwise Functions-Footnote-2613399
 +Node: Type Functions613590
 +Node: I18N Functions617010
 +Node: User-defined618661
 +Node: Definition Syntax619473
 +Ref: Definition Syntax-Footnote-1625167
 +Node: Function Example625238
 +Ref: Function Example-Footnote-1628160
 +Node: Function Calling628182
 +Node: Calling A Function628770
 +Node: Variable Scope629728
 +Node: Pass By Value/Reference632722
 +Node: Function Caveats635366
 +Ref: Function Caveats-Footnote-1637413
 +Node: Return Statement637533
 +Node: Dynamic Typing640512
 +Node: Indirect Calls641442
 +Node: Functions Summary652369
 +Node: Library Functions655074
 +Ref: Library Functions-Footnote-1658681
 +Ref: Library Functions-Footnote-2658824
 +Node: Library Names658995
 +Ref: Library Names-Footnote-1662662
 +Ref: Library Names-Footnote-2662885
 +Node: General Functions662971
 +Node: Strtonum Function664153
 +Node: Assert Function667175
 +Node: Round Function670501
 +Node: Cliff Random Function672041
 +Node: Ordinal Functions673057
 +Ref: Ordinal Functions-Footnote-1676120
 +Ref: Ordinal Functions-Footnote-2676372
 +Node: Join Function676582
 +Ref: Join Function-Footnote-1678352
 +Node: Getlocaltime Function678552
 +Node: Readfile Function682294
 +Node: Shell Quoting684271
 +Node: Isnumeric Function685699
 +Node: Data File Management687087
 +Node: Filetrans Function687719
 +Node: Rewind Function691815
 +Node: File Checking693724
 +Ref: File Checking-Footnote-1695058
 +Node: Empty Files695259
 +Node: Ignoring Assigns697238
 +Node: Getopt Function698788
 +Ref: Getopt Function-Footnote-1714085
 +Node: Passwd Functions714285
 +Ref: Passwd Functions-Footnote-1723124
 +Node: Group Functions723212
 +Ref: Group Functions-Footnote-1731110
 +Node: Walking Arrays731317
 +Node: Library Functions Summary734325
 +Node: Library Exercises735731
 +Node: Sample Programs736196
 +Node: Running Examples736966
 +Node: Clones737694
 +Node: Cut Program738918
 +Node: Egrep Program749058
 +Node: Id Program758059
 +Node: Split Program767994
 +Ref: Split Program-Footnote-1777887
 +Node: Tee Program778060
 +Node: Uniq Program780850
 +Node: Wc Program788438
 +Node: Bytes vs. Characters788825
 +Node: Using extensions790373
 +Node: wc program791127
 +Node: Miscellaneous Programs795992
 +Node: Dupword Program797205
 +Node: Alarm Program799235
 +Node: Translate Program804090
 +Ref: Translate Program-Footnote-1808655
 +Node: Labels Program808925
 +Ref: Labels Program-Footnote-1812276
 +Node: Word Sorting812360
 +Node: History Sorting816432
 +Node: Extract Program818657
 +Node: Simple Sed826670
 +Node: Igawk Program829744
 +Ref: Igawk Program-Footnote-1844075
 +Ref: Igawk Program-Footnote-2844277
 +Ref: Igawk Program-Footnote-3844399
 +Node: Anagram Program844514
 +Node: Signature Program847576
 +Node: Programs Summary848823
 +Node: Programs Exercises850037
 +Ref: Programs Exercises-Footnote-1854167
 +Node: Advanced Features854253
 +Node: Nondecimal Data856384
 +Node: Boolean Typed Values857982
 +Node: Array Sorting859863
 +Node: Controlling Array Traversal860568
 +Ref: Controlling Array Traversal-Footnote-1868936
 +Node: Array Sorting Functions869054
 +Ref: Array Sorting Functions-Footnote-1874965
 +Node: Two-way I/O875161
 +Ref: Two-way I/O-Footnote-1882887
 +Ref: Two-way I/O-Footnote-2883074
 +Node: TCP/IP Networking883156
 +Node: Profiling886232
 +Node: Extension Philosophy895541
 +Node: Advanced Features Summary897020
 +Node: Internationalization899035
 +Node: I18N and L10N900709
 +Node: Explaining gettext901396
 +Ref: Explaining gettext-Footnote-1907288
 +Ref: Explaining gettext-Footnote-2907473
 +Node: Programmer i18n907638
 +Ref: Programmer i18n-Footnote-1912587
 +Node: Translator i18n912636
 +Node: String Extraction913430
 +Ref: String Extraction-Footnote-1914562
 +Node: Printf Ordering914648
 +Ref: Printf Ordering-Footnote-1917434
 +Node: I18N Portability917498
 +Ref: I18N Portability-Footnote-1919954
 +Node: I18N Example920017
 +Ref: I18N Example-Footnote-1923292
 +Ref: I18N Example-Footnote-2923365
 +Node: Gawk I18N923474
 +Node: I18N Summary924096
 +Node: Debugger925437
 +Node: Debugging926437
 +Node: Debugging Concepts926878
 +Node: Debugging Terms928687
 +Node: Awk Debugging931262
 +Ref: Awk Debugging-Footnote-1932207
 +Node: Sample Debugging Session932339
 +Node: Debugger Invocation932873
 +Node: Finding The Bug934259
 +Node: List of Debugger Commands940733
 +Node: Breakpoint Control942066
 +Node: Debugger Execution Control945760
 +Node: Viewing And Changing Data949122
 +Node: Execution Stack952663
 +Node: Debugger Info954300
 +Node: Miscellaneous Debugger Commands958371
 +Node: Readline Support963433
 +Node: Limitations964329
 +Node: Debugging Summary966883
 +Node: Namespaces968162
 +Node: Global Namespace969273
 +Node: Qualified Names970671
 +Node: Default Namespace971670
 +Node: Changing The Namespace972411
 +Node: Naming Rules974025
 +Node: Internal Name Management975873
 +Node: Namespace Example976915
 +Node: Namespace And Features979477
 +Node: Namespace Summary980912
 +Node: Arbitrary Precision Arithmetic982389
 +Node: Computer Arithmetic983876
 +Ref: table-numeric-ranges987642
 +Ref: table-floating-point-ranges988136
 +Ref: Computer Arithmetic-Footnote-1988795
 +Node: Math Definitions988852
 +Ref: table-ieee-formats991828
 +Node: MPFR features992396
 +Node: FP Math Caution994114
 +Ref: FP Math Caution-Footnote-1995186
 +Node: Inexactness of computations995555
 +Node: Inexact representation996586
 +Node: Comparing FP Values997946
 +Node: Errors accumulate999187
 +Node: Strange values1000643
 +Ref: Strange values-Footnote-11003231
 +Node: Getting Accuracy1003336
 +Node: Try To Round1006046
 +Node: Setting precision1006945
 +Ref: table-predefined-precision-strings1007642
 +Node: Setting the rounding mode1009473
 +Ref: table-gawk-rounding-modes1009847
 +Ref: Setting the rounding mode-Footnote-11013779
 +Node: Arbitrary Precision Integers1013958
 +Ref: Arbitrary Precision Integers-Footnote-11017133
 +Node: Checking for MPFR1017282
 +Node: POSIX Floating Point Problems1018756
 +Ref: POSIX Floating Point Problems-Footnote-11023409
 +Node: Floating point summary1023447
 +Node: Dynamic Extensions1025637
 +Node: Extension Intro1027190
 +Node: Plugin License1028456
 +Node: Extension Mechanism Outline1029253
 +Ref: figure-load-extension1029692
 +Ref: figure-register-new-function1031258
 +Ref: figure-call-new-function1032351
 +Node: Extension API Description1034414
 +Node: Extension API Functions Introduction1036127
 +Ref: table-api-std-headers1037963
 +Node: General Data Types1042213
 +Ref: General Data Types-Footnote-11050919
 +Node: Memory Allocation Functions1051218
 +Ref: Memory Allocation Functions-Footnote-11055719
 +Node: Constructor Functions1055818
 +Node: API Ownership of MPFR and GMP Values1059471
 +Node: Registration Functions1061004
 +Node: Extension Functions1061704
 +Node: Exit Callback Functions1067026
 +Node: Extension Version String1068276
 +Node: Input Parsers1068939
 +Node: Output Wrappers1081660
 +Node: Two-way processors1086172
 +Node: Printing Messages1088437
 +Ref: Printing Messages-Footnote-11089608
 +Node: Updating ERRNO1089761
 +Node: Requesting Values1090500
 +Ref: table-value-types-returned1091237
 +Node: Accessing Parameters1092346
 +Node: Symbol Table Access1093583
 +Node: Symbol table by name1094095
 +Ref: Symbol table by name-Footnote-11097120
 +Node: Symbol table by cookie1097248
 +Ref: Symbol table by cookie-Footnote-11101433
 +Node: Cached values1101497
 +Ref: Cached values-Footnote-11105033
 +Node: Array Manipulation1105186
 +Ref: Array Manipulation-Footnote-11106277
 +Node: Array Data Types1106314
 +Ref: Array Data Types-Footnote-11108972
 +Node: Array Functions1109064
 +Node: Flattening Arrays1113562
 +Node: Creating Arrays1120538
 +Node: Redirection API1125305
 +Node: Extension API Variables1128138
 +Node: Extension Versioning1128849
 +Ref: gawk-api-version1129278
 +Node: Extension GMP/MPFR Versioning1131010
 +Node: Extension API Informational Variables1132638
 +Node: Extension API Boilerplate1133711
 +Node: Changes from API V11137685
 +Node: Finding Extensions1139257
 +Node: Extension Example1139816
 +Node: Internal File Description1140614
 +Node: Internal File Ops1144694
 +Ref: Internal File Ops-Footnote-11156044
 +Node: Using Internal File Ops1156184
 +Ref: Using Internal File Ops-Footnote-11158567
 +Node: Extension Samples1158841
 +Node: Extension Sample File Functions1160370
 +Node: Extension Sample Fnmatch1168019
 +Node: Extension Sample Fork1169506
 +Node: Extension Sample Inplace1170724
 +Node: Extension Sample Ord1174350
 +Node: Extension Sample Readdir1175186
 +Ref: table-readdir-file-types1176075
 +Node: Extension Sample Revout1177143
 +Node: Extension Sample Rev2way1177732
 +Node: Extension Sample Read write array1178472
 +Node: Extension Sample Readfile1181637
 +Node: Extension Sample Time1182732
 +Node: Extension Sample API Tests1184484
 +Node: gawkextlib1184976
 +Node: Extension summary1187894
 +Node: Extension Exercises1191596
 +Node: Language History1192838
 +Node: V7/SVR3.11194494
 +Node: SVR41196646
 +Node: POSIX1198080
 +Node: BTL1199461
 +Node: POSIX/GNU1200190
 +Node: Feature History1205968
 +Node: Common Extensions1223143
 +Node: Ranges and Locales1224426
 +Ref: Ranges and Locales-Footnote-11229042
 +Ref: Ranges and Locales-Footnote-21229069
 +Ref: Ranges and Locales-Footnote-31229304
 +Node: Contributors1229527
 +Node: History summary1235524
 +Node: Installation1236904
 +Node: Gawk Distribution1237848
 +Node: Getting1238332
 +Node: Extracting1239295
 +Node: Distribution contents1240933
 +Node: Unix Installation1247994
 +Node: Quick Installation1248798
 +Node: Compiling with MPFR1251218
 +Node: Shell Startup Files1251908
 +Node: Additional Configuration Options1252997
 +Node: Configuration Philosophy1255312
 +Node: Compiling from Git1257708
 +Node: Building the Documentation1258263
 +Node: Non-Unix Installation1259647
 +Node: PC Installation1260107
 +Node: PC Binary Installation1260945
 +Node: PC Compiling1261818
 +Node: PC Using1262935
 +Node: Cygwin1266488
 +Node: MSYS1267712
 +Node: VMS Installation1268314
 +Node: VMS Compilation1269033
 +Ref: VMS Compilation-Footnote-11270262
 +Node: VMS Dynamic Extensions1270320
 +Node: VMS Installation Details1272005
 +Node: VMS Running1274267
 +Node: VMS GNV1278546
 +Node: Bugs1279260
 +Node: Bug definition1280172
 +Node: Bug address1283108
 +Node: Usenet1286296
 +Node: Performance bugs1287485
 +Node: Asking for help1290406
 +Node: Maintainers1292373
 +Node: Other Versions1293567
 +Node: Installation summary1301731
 +Node: Notes1303095
 +Node: Compatibility Mode1303889
 +Node: Additions1304671
 +Node: Accessing The Source1305596
 +Node: Adding Code1307033
- Node: New Ports1313225
- Node: Derived Files1317600
- Ref: Derived Files-Footnote-11323260
- Ref: Derived Files-Footnote-21323295
- Ref: Derived Files-Footnote-31323893
- Node: Future Extensions1324007
- Node: Implementation Limitations1324665
- Node: Extension Design1325875
- Node: Old Extension Problems1327019
- Ref: Old Extension Problems-Footnote-11328537
- Node: Extension New Mechanism Goals1328594
- Ref: Extension New Mechanism Goals-Footnote-11331958
- Node: Extension Other Design Decisions1332147
- Node: Extension Future Growth1334260
- Node: Notes summary1334866
- Node: Basic Concepts1336024
- Node: Basic High Level1336705
- Ref: figure-general-flow1336987
- Ref: figure-process-flow1337673
- Ref: Basic High Level-Footnote-11340975
- Node: Basic Data Typing1341160
- Node: Glossary1344488
- Node: Copying1376375
- Node: GNU Free Documentation License1413918
- Node: Index1439038
++Node: New Ports1313848
++Node: Derived Files1318223
++Ref: Derived Files-Footnote-11323883
++Ref: Derived Files-Footnote-21323918
++Ref: Derived Files-Footnote-31324516
++Node: Future Extensions1324630
++Node: Implementation Limitations1325288
++Node: Extension Design1326498
++Node: Old Extension Problems1327642
++Ref: Old Extension Problems-Footnote-11329160
++Node: Extension New Mechanism Goals1329217
++Ref: Extension New Mechanism Goals-Footnote-11332581
++Node: Extension Other Design Decisions1332770
++Node: Extension Future Growth1334883
++Node: Notes summary1335489
++Node: Basic Concepts1336647
++Node: Basic High Level1337328
++Ref: figure-general-flow1337610
++Ref: figure-process-flow1338296
++Ref: Basic High Level-Footnote-11341598
++Node: Basic Data Typing1341783
++Node: Glossary1345111
++Node: Copying1376998
++Node: GNU Free Documentation License1414541
++Node: Index1439661
  
  End Tag Table
  

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog       |  4 +++
 doc/ChangeLog   |  5 ++++
 doc/gawk.info   | 87 +++++++++++++++++++++++++++++++++------------------------
 doc/gawk.texi   | 18 ++++++++++--
 doc/gawkbug.1   | 13 +++++----
 doc/gawktexi.in | 18 ++++++++++--
 gawkbug.in      | 12 +++++---
 7 files changed, 107 insertions(+), 50 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]