diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:27:41 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:27:41 +0300 |
commit | 61bb57af53ebe916d2db6e3585d4fc7ac1d99b92 (patch) | |
tree | 2bfc4e5b127618d286f57a87d416702131b1b01d /test/argarray.awk | |
parent | 0a9ae0c89481db540e1b817a63cc6c793a62c90d (diff) | |
download | egawk-61bb57af53ebe916d2db6e3585d4fc7ac1d99b92.tar.gz egawk-61bb57af53ebe916d2db6e3585d4fc7ac1d99b92.tar.bz2 egawk-61bb57af53ebe916d2db6e3585d4fc7ac1d99b92.zip |
Move to gawk-2.15.3.
Diffstat (limited to 'test/argarray.awk')
-rw-r--r-- | test/argarray.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/argarray.awk b/test/argarray.awk index 3911b6e9..8015d852 100644 --- a/test/argarray.awk +++ b/test/argarray.awk @@ -6,6 +6,6 @@ BEGIN { for (x = 0; x < ARGC; x++) print "\t", ARGV[x] print "Environment variable TEST=" ENVIRON["TEST"] - print "and the current input file is called", FILENAME + print "and the current input file is called \"" FILENAME "\"" print "but this would change if we would have something to process" } |