aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-11-10 05:54:09 +0200
committerArnold D. Robbins <arnold@skeeve.com>2016-11-10 05:54:09 +0200
commitdad49da0e8e738ad9380379571e5771704c50dc1 (patch)
tree4fc63524649e494314a577858714d7dd011a88b7 /doc/gawk.texi
parentec30cf2f45317b8a0d197ce6ad70db13919050ec (diff)
parent86068375ed660f898ed5969641c9aa630f9adfd8 (diff)
downloadegawk-dad49da0e8e738ad9380379571e5771704c50dc1.tar.gz
egawk-dad49da0e8e738ad9380379571e5771704c50dc1.tar.bz2
egawk-dad49da0e8e738ad9380379571e5771704c50dc1.zip
Merge branch 'master' into feature/cmake
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r--doc/gawk.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi
index 2be335bd..bdc64777 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -28923,10 +28923,12 @@ This example would be better done with @code{dcngettext()}:
@example
if (groggy)
message = dcngettext("%d customer disturbing me\n",
- "%d customers disturbing me\n", "adminprog")
+ "%d customers disturbing me\n",
+ ncustomers, "adminprog")
else
message = dcngettext("enjoying %d customer\n",
- "enjoying %d customers\n", "adminprog")
+ "enjoying %d customers\n",
+ ncustomers, "adminprog")
printf(message, ncustomers)
@end example