diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:32:17 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-03 21:32:17 +0300 |
commit | 5b0b9518e94d4aee27e9b0b0617c2bdd0081592c (patch) | |
tree | 7fd96cba6b334e219bfad3a489fb41ff68cd82ee /test/gsubind.awk | |
parent | 14587bf02200b8f184f19f52bbff83973d9d9197 (diff) | |
parent | 9907a598dca8f129422c42f8c4fa3b4e2c988221 (diff) | |
download | egawk-5b0b9518e94d4aee27e9b0b0617c2bdd0081592c.tar.gz egawk-5b0b9518e94d4aee27e9b0b0617c2bdd0081592c.tar.bz2 egawk-5b0b9518e94d4aee27e9b0b0617c2bdd0081592c.zip |
Merge branch 'master' into feature/nocopy
Diffstat (limited to 'test/gsubind.awk')
-rw-r--r-- | test/gsubind.awk | 9 |
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 } |