aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-11-15 22:46:33 +0200
committerArnold D. Robbins <arnold@skeeve.com>2015-11-15 22:46:33 +0200
commitbdb9ab226e87165195f516ff8304f32dd29a58ff (patch)
tree4640b236dae31aa7914c14d3dc52e2a90e91c12d /doc/gawk.texi
parentebb755784fbef81a750f6ea95b038d3ad65f488d (diff)
parent0422361dcbf5461be22aea9e2dbc1a6735593e1b (diff)
downloadegawk-bdb9ab226e87165195f516ff8304f32dd29a58ff.tar.gz
egawk-bdb9ab226e87165195f516ff8304f32dd29a58ff.tar.bz2
egawk-bdb9ab226e87165195f516ff8304f32dd29a58ff.zip
Merge branch 'master' into feature/cmake
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r--doc/gawk.texi14
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi
index ef2beca2..0852a781 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -15247,14 +15247,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.
@@ -37602,6 +37602,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
@@ -39391,6 +39394,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.