diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-12 22:08:40 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-12 22:08:40 +0300 |
commit | 547934dee2170f77c81a327c8e1b9e870938fa8b (patch) | |
tree | 136b2281a7509583f33cd5704f70b934dd2ff767 | |
parent | 1a240b4ec47d919c328f682c0594a1cab4588aba (diff) | |
download | egawk-547934dee2170f77c81a327c8e1b9e870938fa8b.tar.gz egawk-547934dee2170f77c81a327c8e1b9e870938fa8b.tar.bz2 egawk-547934dee2170f77c81a327c8e1b9e870938fa8b.zip |
Update Italian translation.
-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 |