gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] gawk branch, feature/docit, updated. gawk-4.1.0-4321-g3d9318b


From: Antonio Giovanni Colombo
Subject: [SCM] gawk branch, feature/docit, updated. gawk-4.1.0-4321-g3d9318b
Date: Sun, 16 May 2021 16:02:16 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, feature/docit has been updated
       via  3d9318ba4f44e4095ae8f614af95569996839fc7 (commit)
      from  80ec7f043b9fe9df7bc7b117754aad43c0df38e5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=3d9318ba4f44e4095ae8f614af95569996839fc7

commit 3d9318ba4f44e4095ae8f614af95569996839fc7
Author: Antonio Giovanni Colombo <azc100@gmail.com>
Date:   Sun May 16 22:01:25 2021 +0200

    modified a few glitches in the example programs extracted from
    gawktexi.in

diff --git a/doc/it/ChangeLog b/doc/it/ChangeLog
index df98dfb..b1b5904 100644
--- a/doc/it/ChangeLog
+++ b/doc/it/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-16         Antonio Giovanni Colombo   <azc100@gmail.com>
+
+       * gawktexi.in: Updated.
+
 2021-04-06         Antonio Giovanni Colombo   <azc100@gmail.com>
 
        * gawktexi.in: Updated.
diff --git a/doc/it/gawktexi.in b/doc/it/gawktexi.in
index 0edb44e..1469d03 100755
--- a/doc/it/gawktexi.in
+++ b/doc/it/gawktexi.in
@@ -22602,7 +22602,7 @@ usando la chiamata indiretta di funzioni:
 
 @example
 @c file eg/prog/indirectcall.awk
-# chiamataindiretta.awk --- esempio di chiamata indiretta di funzioni
+# indirectcall.awk --- esempio di chiamata indiretta di funzioni
 @c endfile
 @ignore
 @c file eg/prog/indirectcall.awk
@@ -25186,11 +25186,7 @@ main(int argc, char **argv)
 @c endfile
 @ignore
 @c file eg/lib/pwcat.c
-#ifdef ZOS_USS
-        printf("%s:%ld:%ld:%s:%s\n",
-            p->pw_name, (long) p->pw_uid,
-            (long) p->pw_gid, p->pw_dir, p->pw_shell);
-#else
+#ifdef HAVE_STRUCT_PASSWD_PW_PASSWD
 @c endfile
 @end ignore
 @c file eg/lib/pwcat.c
@@ -25200,6 +25196,10 @@ main(int argc, char **argv)
 @c endfile
 @ignore
 @c file eg/lib/pwcat.c
+#else
+        printf("%s:*:%ld:%ld:%s:%s\n",
+            p->pw_name, (long) p->pw_uid,
+            (long) p->pw_gid, p->pw_dir, p->pw_shell);
 #endif
 @c endfile
 @end ignore
@@ -27394,6 +27394,7 @@ in modo che sia stampata in maniera elegante nella 
pagina:
 @c endfile
 @end ignore
 @c file eg/prog/split.awk
+
 function sintassi(              comune)
 @{
     common = "[-a lunghezza-suffisso] [file [nome-output-file]]"
@@ -29348,6 +29349,7 @@ a significare che tutto @`e andato bene:
 # Arnold Robbins, arnold@@skeeve.com, Public Domain
 # May 1993
 # Revised September 2000
+# Antonio Colombo, October 2020, test for Italian accented letters
 @c endfile
 @end ignore
 @c file eg/prog/extract.awk
@@ -29822,7 +29824,6 @@ Il programma @`e il seguente:
 # Arnold Robbins, arnold@@skeeve.com, Public Domain
 # July 1993
 # December 2010, minor edits
-# Antonio Colombo, October 2020, test for Italian accented letters
 @c endfile
 @end ignore
 @c file eg/prog/igawk.sh

-----------------------------------------------------------------------

Summary of changes:
 doc/it/ChangeLog   |  4 ++++
 doc/it/gawktexi.in | 15 ++++++++-------
 2 files changed, 12 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]