aboutsummaryrefslogtreecommitdiffstats
path: root/test/argarray.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:27:41 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:27:41 +0300
commit61bb57af53ebe916d2db6e3585d4fc7ac1d99b92 (patch)
tree2bfc4e5b127618d286f57a87d416702131b1b01d /test/argarray.awk
parent0a9ae0c89481db540e1b817a63cc6c793a62c90d (diff)
downloadegawk-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.awk2
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"
}