diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-17 17:42:51 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-17 17:42:51 +0300 |
commit | 5c7402f68fb31d70f78243c4d6d9c30a8e8aa9da (patch) | |
tree | 13b1674f1f5a5e40c5f1cd43f40bf102f35636d9 /doc/gawk.texi | |
parent | b5f87dcdaff84e5e72684bb1a8fe0160981a66ae (diff) | |
download | egawk-5c7402f68fb31d70f78243c4d6d9c30a8e8aa9da.tar.gz egawk-5c7402f68fb31d70f78243c4d6d9c30a8e8aa9da.tar.bz2 egawk-5c7402f68fb31d70f78243c4d6d9c30a8e8aa9da.zip |
Distinguish print $0 from print. Doc updates. Fix case and default.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 6c21333d..df8fcc81 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -29118,12 +29118,14 @@ come out as: @example /foo/ @{ - print $0 + print @} @end example @noindent which is correct, but possibly unexpected. +(If a program uses both @samp{print $0} and plain +@samp{print}, that distinction is retained.) @cindex profiling @command{awk} programs, dynamically @cindex @command{gawk} program, dynamic profiling |