From 547934dee2170f77c81a327c8e1b9e870938fa8b Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Thu, 12 Oct 2017 22:08:40 +0300 Subject: Update Italian translation. --- doc/it/ChangeLog | 4 ++++ doc/it/gawktexi.in | 13 +++++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) (limited to 'doc/it') 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 + + * gawktexi.in: Italian translation updated. + 2017-10-08 Antonio Giovanni Colombo * 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 -- cgit v1.2.3