diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-11-15 22:45:06 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-11-15 22:45:06 +0200 |
commit | 19bac92bd8d88cb92d447649643fee48367692ad (patch) | |
tree | 11223f0bd0300b27fa1da46a545422d09c32596f /doc/gawktexi.in | |
parent | f6f299f82d3c9c9a9cd8275869628667f87ecf2f (diff) | |
parent | ae8d0857f3f91e09459ebd89c2fcdb632ecef3e6 (diff) | |
download | egawk-19bac92bd8d88cb92d447649643fee48367692ad.tar.gz egawk-19bac92bd8d88cb92d447649643fee48367692ad.tar.bz2 egawk-19bac92bd8d88cb92d447649643fee48367692ad.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index 7e63e373..29452b8c 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -14575,14 +14575,14 @@ if your version of @command{gawk} supports arbitrary-precision arithmetic (@pxref{Arbitrary Precision Arithmetic}): @table @code -@cindex version of GNU MPFR library -@item PROCINFO["mpfr_version"] -The version of the GNU MPFR library. - @item PROCINFO["gmp_version"] @cindex version of GNU MP library The version of the GNU MP library. +@cindex version of GNU MPFR library +@item PROCINFO["mpfr_version"] +The version of the GNU MPFR library. + @item PROCINFO["prec_max"] @cindex maximum precision supported by MPFR library The maximum precision supported by MPFR. @@ -36693,6 +36693,9 @@ The up-to-date list of mirror sites is available from Try to use one of the mirrors; they will be less busy, and you can usually find one closer to your site. +You may also retrieve the @command{gawk} source code from the official +Git repository; for more information see @ref{Accessing The Source}. + @node Extracting @appendixsubsec Extracting the Distribution @command{gawk} is distributed as several @code{tar} files compressed with @@ -38482,6 +38485,9 @@ Use ANSI/ISO style (prototype) function headers when defining functions. Put the name of the function at the beginning of its own line. @item +Use @samp{#elif} instead of nesting @samp{#if} inside @samp{#else}. + +@item Put the return type of the function, even if it is @code{int}, on the line above the line with the name and arguments of the function. |