aboutsummaryrefslogtreecommitdiffstats
path: root/test/gsubind.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:23:57 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:23:57 +0300
commite1c2c0cff0469063313d8bbbd108cd10db9ee677 (patch)
tree1b0757c65586e0e8e9404f3b6680d6967cf56e01 /test/gsubind.awk
parentd77474639979a4f707107d28fa1e8e84510880e4 (diff)
parent9907a598dca8f129422c42f8c4fa3b4e2c988221 (diff)
downloadegawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.tar.gz
egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.tar.bz2
egawk-e1c2c0cff0469063313d8bbbd108cd10db9ee677.zip
Merge branch 'master' into feature/cmake
Diffstat (limited to 'test/gsubind.awk')
-rw-r--r--test/gsubind.awk9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/gsubind.awk b/test/gsubind.awk
index fce0d818..fec6cbc6 100644
--- a/test/gsubind.awk
+++ b/test/gsubind.awk
@@ -1,9 +1,10 @@
BEGIN {
f = "foo"
- p = @/o/
+# p = @/o/
+p = "o"
gsub(p, "q", f)
print f
- fun = "gsub"
- @fun(p, "q", f)
- print f
+# fun = "gsub"
+# @fun(p, "q", f)
+# print f
}