diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-12-06 14:25:39 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-12-06 14:26:06 +1300 |
commit | 0c4bf7de3604eeb00e2cf590867d43ceb2f0f85d (patch) | |
tree | 124ccc28400bfa078f0a701e6610cbba9564a710 /ksh/kshrc.d/keep.ksh | |
parent | Substitute bad `continue` for `return` (diff) | |
download | dotfiles-0c4bf7de3604eeb00e2cf590867d43ceb2f0f85d.tar.gz dotfiles-0c4bf7de3604eeb00e2cf590867d43ceb2f0f85d.zip |
Remove unneeded semicolon from sh "for VAR ; do"
It turns out the semicolon belongs to the "in" syntax, and is optional
without it.
Diffstat (limited to 'ksh/kshrc.d/keep.ksh')
-rw-r--r-- | ksh/kshrc.d/keep.ksh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksh/kshrc.d/keep.ksh b/ksh/kshrc.d/keep.ksh index f6593c3d..629b2fe6 100644 --- a/ksh/kshrc.d/keep.ksh +++ b/ksh/kshrc.d/keep.ksh @@ -94,7 +94,7 @@ EOF # Iterate through the NAMEs given typeset name - for name ; do + for name do # Check NAMEs for validity case $name in |