diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-11-29 21:40:23 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-11-29 21:40:23 +0200 |
commit | 68ba43d9c7604d8544834dadc6f549af45d8992c (patch) | |
tree | cf55ce57ca2445e07fe9beb4a575221fa42df1d6 /doc/gawk.texi | |
parent | 7c759ec96a0e5f6fac405e67e2b7299c0ac0a867 (diff) | |
download | egawk-68ba43d9c7604d8544834dadc6f549af45d8992c.tar.gz egawk-68ba43d9c7604d8544834dadc6f549af45d8992c.tar.bz2 egawk-68ba43d9c7604d8544834dadc6f549af45d8992c.zip |
And add doc.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 6d0c7319..3443aeec 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -15935,7 +15935,8 @@ if an element in @code{SYMTAB} is an array. Also, you may not use the @code{delete} statement with the @code{SYMTAB} array. -You may use an index for @code{SYMTAB} that is not a predefined identifier: +Prior to @value{PVERSION} 5.0 of @command{gawk}, you could +use an index for @code{SYMTAB} that was not a predefined identifier: @example SYMTAB["xxx"] = 5 @@ -15943,9 +15944,8 @@ print SYMTAB["xxx"] @end example @noindent -This works as expected: in this case @code{SYMTAB} acts just like -a regular array. The only difference is that you can't then delete -@code{SYMTAB["xxx"]}. +This no longer works, instead producing a fatal error, as it led +to rampant confusion. @cindex Schorr, Andrew The @code{SYMTAB} array is more interesting than it looks. Andrew Schorr |