diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-11-29 21:43:17 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-11-29 21:43:17 +0200 |
commit | ee2f450c7cf2550ca68fb205c5df22eca13e5b74 (patch) | |
tree | fbf8e24689c98fee012725f40a1f9565e4a6317e /doc/gawk.texi | |
parent | 1e12bcb4ceac5850999f4d714a305a00ce7a9ddc (diff) | |
parent | 68ba43d9c7604d8544834dadc6f549af45d8992c (diff) | |
download | egawk-ee2f450c7cf2550ca68fb205c5df22eca13e5b74.tar.gz egawk-ee2f450c7cf2550ca68fb205c5df22eca13e5b74.tar.bz2 egawk-ee2f450c7cf2550ca68fb205c5df22eca13e5b74.zip |
Merge branch 'master' into feature/fix-comments
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 6c3c28af..70ab0de3 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 |