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/gawktexi.in | |
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/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index 1e3d0bea..091b786d 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -15253,7 +15253,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 @@ -15261,9 +15262,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 |