diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-10 09:57:50 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-06-10 09:57:50 +0300 |
commit | dff45aba93a56a50d5ad26c5ef1597abc1e2fe79 (patch) | |
tree | 2ea77334fb55a1505a002a3b172f40a43befbc7e /doc/gawk.texi | |
parent | 39ab90b6e780e922b49ebe3b83147291bf65fb8c (diff) | |
download | egawk-dff45aba93a56a50d5ad26c5ef1597abc1e2fe79.tar.gz egawk-dff45aba93a56a50d5ad26c5ef1597abc1e2fe79.tar.bz2 egawk-dff45aba93a56a50d5ad26c5ef1597abc1e2fe79.zip |
Improve doc on limits, increase limit on size of a token.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 61413473..e844afc0 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -42850,18 +42850,18 @@ different limits. @multitable @columnfractions .40 .60 @headitem Item @tab Limit @item Characters in a character class @tab 2^(number of bits per byte) -@item Length of input record @tab @code{MAX_INT} +@item Length of input record in bytes @tab @code{ULONG_MAX} @item Length of output record @tab Unlimited @item Length of source line @tab Unlimited -@item Number of fields in a record @tab @code{MAX_LONG} +@item Number of fields in a record @tab @code{ULONG_MAX} @item Number of file redirections @tab Unlimited @item Number of input records in one file @tab @code{MAX_LONG} @item Number of input records total @tab @code{MAX_LONG} @item Number of pipe redirections @tab min(number of processes per user, number of open files) @item Numeric values @tab Double-precision floating point (if not using MPFR) -@item Size of a field @tab @code{MAX_INT} -@item Size of a literal string @tab @code{MAX_INT} -@item Size of a printf string @tab @code{MAX_INT} +@item Size of a field in bytes @tab @code{ULONG_MAX} +@item Size of a literal string in bytes @tab @code{ULONG_MAX} +@item Size of a printf string in bytes @tab @code{ULONG_MAX} @end multitable @node Extension Design |