gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, master, updated. gawk-4.1.0-3908-ge26cf22


From: Arnold Robbins
Subject: [SCM] gawk branch, master, updated. gawk-4.1.0-3908-ge26cf22
Date: Sat, 7 Mar 2020 15:07:13 -0500 (EST)

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, master has been updated
       via  e26cf22ad5c7d772ecc0c195bfbc612f1bb1f5b6 (commit)
       via  2d817de9a9bf68a35a619dfbef702c6b4c2ec91e (commit)
      from  86f6880f47544553ed5371ac3df9fe61b3297694 (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=e26cf22ad5c7d772ecc0c195bfbc612f1bb1f5b6

commit e26cf22ad5c7d772ecc0c195bfbc612f1bb1f5b6
Author: Arnold D. Robbins <address@hidden>
Date:   Sat Mar 7 22:06:58 2020 +0200

    Update to symtab11 test.

diff --git a/test/ChangeLog b/test/ChangeLog
index fddbe1e..87b5cac 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2020-03-07         Arnold D. Robbins     <address@hidden>
+
+       * symtab11.awk, symtab11.ok: Add value of array elements
+       to the output.
+
 2020-03-06         Arnold D. Robbins     <address@hidden>
 
        * Makefile.am (profile5): Use AWKPATH so that out-of-tree
diff --git a/test/symtab11.awk b/test/symtab11.awk
index ec7f096..2f66658 100644
--- a/test/symtab11.awk
+++ b/test/symtab11.awk
@@ -4,13 +4,13 @@ BEGIN {
 
        printf("BEGIN -- Symtab is next\n") > "/dev/stdout"
        for (i in SYMTAB) {
-               printf "[%s]\n", i      # else 
{printf("[%s]\t(%s)\n",i,SYMTAB[i]);}
+               printf "[%s] = %s\n", i, isarray(SYMTAB[i]) ? "<array>" : 
SYMTAB[i]     # else {printf("[%s]\t(%s)\n",i,SYMTAB[i]);}
        }
        printf("BEGIN-- after Symtab loop\n") > "/dev/stdout"   # never got here
 
        printf("BEGIN -- Functab is next\n") > "/dev/stdout"
        for (i in FUNCTAB) {
-               printf "[%s]\n", i      # else 
{printf("[%s]\t(%s)\n",i,FUNCTAB[i]);}
+               printf "[%s] = %s\n", i, FUNCTAB[i]     # else 
{printf("[%s]\t(%s)\n",i,FUNCTAB[i]);}
        }
        printf("BEGIN-- after Functab loop\n") > "/dev/stdout"  # never got here
        exit
diff --git a/test/symtab11.ok b/test/symtab11.ok
index c5e3e0f..2917094 100644
--- a/test/symtab11.ok
+++ b/test/symtab11.ok
@@ -1,76 +1,78 @@
 BEGIN -- Symtab is next
-[i]
-[ROUNDMODE]
-[ORS]
-[OFS]
-[LINT]
-[FNR]
-[ERRNO]
-[NR]
-[IGNORECASE]
-[TEXTDOMAIN]
-[NF]
-[ARGIND]
-[ARGC]
-[FIELDWIDTHS]
-[CONVFMT]
-[SUBSEP]
-[PREC]
-[RS]
-[FPAT]
-[RT]
-[RLENGTH]
-[OFMT]
-[FS]
-[RSTART]
-[FILENAME]
-[BINMODE]
-[ARGV]
-[PROCINFO]
-[ENVIRON]
+[i] = i
+[ROUNDMODE] = N
+[ORS] = 
+
+[OFS] =  
+[LINT] = 0
+[FNR] = 0
+[ERRNO] = 
+[NR] = 0
+[IGNORECASE] = 1
+[TEXTDOMAIN] = messages
+[NF] = 0
+[ARGIND] = 0
+[ARGC] = 1
+[FIELDWIDTHS] = 
+[CONVFMT] = %.6g
+[SUBSEP] = 
+[PREC] = 53
+[RS] = 
+
+[FPAT] = [^[:space:]]+
+[RT] = 
+[RLENGTH] = 0
+[OFMT] = %.6g
+[FS] =  
+[RSTART] = 0
+[FILENAME] = 
+[BINMODE] = 0
+[ARGV] = <array>
+[PROCINFO] = <array>
+[ENVIRON] = <array>
 BEGIN-- after Symtab loop
 BEGIN -- Functab is next
-[rand]
-[dcgettext]
-[gsub]
-[match]
-[int]
-[log]
-[sprintf]
-[systime]
-[strftime]
-[length]
-[and]
-[srand]
-[asort]
-[atan2]
-[cos]
-[split]
-[compl]
-[bindtextdomain]
-[exp]
-[or]
-[fflush]
-[gensub]
-[dcngettext]
-[index]
-[system]
-[sqrt]
-[rshift]
-[tolower]
-[sin]
-[asorti]
-[typeof]
-[close]
-[mktime]
-[isarray]
-[patsplit]
-[sub]
-[substr]
-[xor]
-[lshift]
-[strtonum]
-[toupper]
-[bar]
-[foo]
+[rand] = rand
+[dcgettext] = dcgettext
+[gsub] = gsub
+[match] = match
+[int] = int
+[log] = log
+[sprintf] = sprintf
+[systime] = systime
+[strftime] = strftime
+[length] = length
+[and] = and
+[srand] = srand
+[asort] = asort
+[atan2] = atan2
+[cos] = cos
+[split] = split
+[compl] = compl
+[bindtextdomain] = bindtextdomain
+[exp] = exp
+[or] = or
+[fflush] = fflush
+[gensub] = gensub
+[dcngettext] = dcngettext
+[index] = index
+[system] = system
+[sqrt] = sqrt
+[rshift] = rshift
+[tolower] = tolower
+[sin] = sin
+[asorti] = asorti
+[typeof] = typeof
+[close] = close
+[mktime] = mktime
+[isarray] = isarray
+[patsplit] = patsplit
+[sub] = sub
+[substr] = substr
+[xor] = xor
+[lshift] = lshift
+[strtonum] = strtonum
+[toupper] = toupper
+[bar] = bar
+[foo] = foo
 BEGIN-- after Functab loop

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=2d817de9a9bf68a35a619dfbef702c6b4c2ec91e

commit 2d817de9a9bf68a35a619dfbef702c6b4c2ec91e
Author: Arnold D. Robbins <address@hidden>
Date:   Sat Mar 7 21:40:53 2020 +0200

    Update translation .gmo files.

diff --git a/po/de.gmo b/po/de.gmo
index ca88fcd..92bfdca 100644
Binary files a/po/de.gmo and b/po/de.gmo differ
diff --git a/po/fr.gmo b/po/fr.gmo
index 1d901f9..1a09baa 100644
Binary files a/po/fr.gmo and b/po/fr.gmo differ
diff --git a/po/pt.gmo b/po/pt.gmo
index 5c48ccb..daf62c8 100644
Binary files a/po/pt.gmo and b/po/pt.gmo differ
diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo
index e85eff3..02af80e 100644
Binary files a/po/pt_BR.gmo and b/po/pt_BR.gmo differ

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

Summary of changes:
 po/de.gmo         | Bin 83041 -> 92892 bytes
 po/fr.gmo         | Bin 91473 -> 93099 bytes
 po/pt.gmo         | Bin 86656 -> 88165 bytes
 po/pt_BR.gmo      | Bin 87942 -> 89541 bytes
 test/ChangeLog    |   5 ++
 test/symtab11.awk |   4 +-
 test/symtab11.ok  | 146 +++++++++++++++++++++++++++---------------------------
 7 files changed, 81 insertions(+), 74 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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