diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-12 22:10:00 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-12 22:10:00 +0300 |
commit | 56d3294aaae852fae059ec61ab56482bef2679f2 (patch) | |
tree | 9471dfe94aa09717da127c8e4b90793af7c3131a /doc/it | |
parent | f6f4abd11c600e16a2fe868bdd0bbda5e616f0c8 (diff) | |
parent | 6b459d91405cd9e2306e9b32d24ed1fcacc52f7c (diff) | |
download | egawk-56d3294aaae852fae059ec61ab56482bef2679f2.tar.gz egawk-56d3294aaae852fae059ec61ab56482bef2679f2.tar.bz2 egawk-56d3294aaae852fae059ec61ab56482bef2679f2.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'doc/it')
-rw-r--r-- | doc/it/ChangeLog | 4 | ||||
-rwxr-xr-x | doc/it/gawktexi.in | 13 |
2 files changed, 13 insertions, 4 deletions
diff --git a/doc/it/ChangeLog b/doc/it/ChangeLog index 3c5fc79d..b5dc98a5 100644 --- a/doc/it/ChangeLog +++ b/doc/it/ChangeLog @@ -1,3 +1,7 @@ +2017-10-12 Antonio Giovanni Colombo <azc100@gmail.com> + + * gawktexi.in: Italian translation updated. + 2017-10-08 Antonio Giovanni Colombo <azc100@gmail.com> * gawktexi.in: Italian translation updated. diff --git a/doc/it/gawktexi.in b/doc/it/gawktexi.in index e8038d1b..a762d0ef 100755 --- a/doc/it/gawktexi.in +++ b/doc/it/gawktexi.in @@ -13224,6 +13224,11 @@ A partire dalla @value{PVERSION} 4.2, @command{gawk} continua a usare l'ordine di collazione locale per @code{<}, @code{<=}, @code{>} e @code{>=} solo se eseguito nella modalit@`a POSIX. +@ignore +References: http://austingroupbugs.net/view.php?id=963 +and http://austingroupbugs.net/view.php?id=1070. +@end ignore + @node Operatori booleani @subsection Espressioni booleane @cindex @dfn{and}, operatore logico-booleano @@ -22962,14 +22967,14 @@ come un'unica stringa. Un modo chiaro e semplice per far ci@`o potrebbe essere questo: @example -function readfile(file, temp, contenuto) +function readfile1(file, temp, contenuto) @{ if ((getline temp < file) < 0) return - contenuto = temp - while (getline temp < file) > 0) - contenuto = contenuto RT tmp + contenuto = temp RT + while ((getline temp < file) > 0) + contenuto = contenuto temp RT close(file) return contenuto |