diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-27 14:09:25 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-27 14:09:25 +0300 |
commit | 7bab0e1ff31ebaf7716fe2716a630c92b8ca8a44 (patch) | |
tree | bac93ed98e429ea3ecd42885a8d087db3e69fb21 /doc/gawk.texi | |
parent | a435b8da2941d0b3c997420c71b1f4b7b79b52ff (diff) | |
parent | e78dfd4b04060ad3278a1b3505720893ec432617 (diff) | |
download | egawk-7bab0e1ff31ebaf7716fe2716a630c92b8ca8a44.tar.gz egawk-7bab0e1ff31ebaf7716fe2716a630c92b8ca8a44.tar.bz2 egawk-7bab0e1ff31ebaf7716fe2716a630c92b8ca8a44.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index e86e8bba..501aacde 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -4900,6 +4900,13 @@ Similarly, you may use @code{print} or @code{printf} statements in the @var{init} and @var{increment} parts of a @code{for} loop. This is another long-undocumented ``feature'' of Unix @command{awk}. +@command{gawk} lets you use the names of built-in functions that are +@command{gawk} extensions as the names of parameters in user-defined functions. +This is intended to ``future-proof'' old code that happens to use +function names added by @command{gawk} after the code was written. +Standard @command{awk} built-in functions, such as @code{sin()} or +@code{substr()} are @emph{not} shadowed in this way. + @end ignore @node Invoking Summary |