diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-12 10:49:13 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-12 10:49:13 +0300 |
commit | a43600eb76d87555c019079433f19039787befd5 (patch) | |
tree | bfb68167d9a717d56facfce99bbcc1d662c2965d /doc/gawk.texi | |
parent | 901a6bf25b693537c59c4d1990c700e5c68db5e7 (diff) | |
download | egawk-a43600eb76d87555c019079433f19039787befd5.tar.gz egawk-a43600eb76d87555c019079433f19039787befd5.tar.bz2 egawk-a43600eb76d87555c019079433f19039787befd5.zip |
Improve asort and asorti treatment of SYMTAB and FUNCTAB. Document same.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index e844afc0..d211a910 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 March, 2020 +@set UPDATE-MONTH June, 2020 @set VERSION 5.1 @set PATCHLEVEL 0 @@ -18423,10 +18423,10 @@ a[3] = "middle" @end example @quotation NOTE -Due to implementation limitations, you may not use either @code{SYMTAB} -or @code{FUNCTAB} as arguments to these functions, even if providing a -second array to use for the actual sorting. Attempting to do so produces -a fatal error. This restriction may be lifted in the future. +You may not use either @code{SYMTAB} or @code{FUNCTAB} as the second +argument to these functions. Attempting to do so produces a fatal error. +You may use them as the first argument, but only if providing a second +array to use for the actual sorting. @end quotation @item @code{gensub(@var{regexp}, @var{replacement}, @var{how}} [@code{, @var{target}}]@code{) #} |