aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-07-02 16:07:36 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-07-02 16:07:36 +1200
commitcb6014e61a2ffd2c80184e5e9576178ea3c58014 (patch)
tree3dfd7ce77e33a01b0feff077b8e33d6acd4554d6 /bin
parentRemove bad shebang from philsay.sh (diff)
downloaddotfiles-cb6014e61a2ffd2c80184e5e9576178ea3c58014.tar.gz
dotfiles-cb6014e61a2ffd2c80184e5e9576178ea3c58014.zip
Remove null FS assignment from trs(1df)
gawk's --lint option complains: > awk: .dotfiles/bin/trs.awk:7: warning: null string for `FS' is a gawk extension
Diffstat (limited to 'bin')
-rw-r--r--bin/trs.awk3
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/trs.awk b/bin/trs.awk
index 8d0a1ef0..58fdf8a9 100644
--- a/bin/trs.awk
+++ b/bin/trs.awk
@@ -3,9 +3,6 @@ BEGIN {
# Name self
self = "trs"
- # No wordsplitting required
- FS = ""
-
# Two and only two arguments required
if (ARGC != 3)
fail("Need a string and a replacement")