diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-05 11:21:38 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-05 11:21:38 +0300 |
commit | 0f5cb955662136ad4a93e35db5721dd986dfd55b (patch) | |
tree | 7ec575fe74a0fc599bafb01fad6811fc496f7256 /doc/gawk.texi | |
parent | c30a04c8d3a2eef06338934f577fe3416f40d529 (diff) | |
download | egawk-0f5cb955662136ad4a93e35db5721dd986dfd55b.tar.gz egawk-0f5cb955662136ad4a93e35db5721dd986dfd55b.tar.bz2 egawk-0f5cb955662136ad4a93e35db5721dd986dfd55b.zip |
Add builtin functions to FUNCTAB and PROCINFO["identifiers"] and doc.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 6e917e44..1ecfbb84 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -14724,7 +14724,7 @@ current record. @xref{Changing Fields}. @cindex differences in @command{awk} and @command{gawk}, @code{FUNCTAB} variable @item @code{FUNCTAB #} An array whose indices and corresponding values are the names of all -the user-defined or extension functions in the program. +the built-in, user-defined and extension functions in the program. @quotation NOTE Attempting to use the @code{delete} statement with the @code{FUNCTAB} @@ -14772,9 +14772,12 @@ text of the AWK program. For each identifier, the value of the element is one o @item "array" The identifier is an array. +@item "builtin" +The identifier is a built-in function. + @item "extension" The identifier is an extension function loaded via -@code{@@load}. +@code{@@load} or @option{-l}. @item "scalar" The identifier is a scalar. |