diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-12 18:15:18 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-12 18:15:18 +0300 |
commit | d389d4cd9e2d75159f69a23bfa6d038f74502b12 (patch) | |
tree | 54a67069f473d69f4f5de76b01f69081121ec4ef /doc/gawk.texi | |
parent | 8110b4b66d9bf0f94b4595aadd4e9439df526fa5 (diff) | |
download | egawk-d389d4cd9e2d75159f69a23bfa6d038f74502b12.tar.gz egawk-d389d4cd9e2d75159f69a23bfa6d038f74502b12.tar.bz2 egawk-d389d4cd9e2d75159f69a23bfa6d038f74502b12.zip |
Fix issues with function ordering in pretty printed output. Add doc.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 874a4646..bb1cb41c 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -59,7 +59,7 @@ @c applies to and all the info about who's publishing this edition @c These apply across the board. -@set UPDATE-MONTH July, 2020 +@set UPDATE-MONTH August, 2020 @set VERSION 5.1 @set PATCHLEVEL 0 @@ -29728,6 +29728,12 @@ front of the @code{BEGIN} and @code{END} rules, the @code{BEGINFILE} and @code{ENDFILE} rules, the pattern--action rules, and the functions. +@item +Functions are listed alphabetically. All functions in the @code{awk} +namespace are listed first, in alphabetical order. Then come the +functions in namespaces. The namespaces are listed in alphabetical order, +and the functions within each namespace are listed alphabetically. + @end itemize The profiled version of your program may not look exactly like what you |