diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-10 05:54:40 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-10 05:54:40 +0200 |
commit | 84a7c376d6322a6e2429af79358091d10d94c004 (patch) | |
tree | 7115ec65794a9b155158093928d8eb2043e07e9a /doc/gawk.texi | |
parent | 0285fbbc473c0388888e8f473aacc307de07704a (diff) | |
parent | 86068375ed660f898ed5969641c9aa630f9adfd8 (diff) | |
download | egawk-84a7c376d6322a6e2429af79358091d10d94c004.tar.gz egawk-84a7c376d6322a6e2429af79358091d10d94c004.tar.bz2 egawk-84a7c376d6322a6e2429af79358091d10d94c004.zip |
Merge branch 'master' into feature/typed-regex
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 6 |
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 |