diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-03-15 13:39:58 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-03-15 13:39:58 +0100 |
commit | d3b2f6fcf263f0a460ab5e0083f0eac9742a0626 (patch) | |
tree | 503472f21ad48d92ab6c14098db231697eb32f5d /xsh | |
parent | be3ef2bc15658e792e7294324078290008743699 (diff) |
Fix bashisms: superfluous leading function keyword. Thanks to 'themill'.
Diffstat (limited to 'xsh')
-rwxr-xr-x | xsh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,11 +2,11 @@ SCRIPT=$(basename $0) -function usage () { +usage() { echo "Usage: $SCRIPT [--x] [--verbose] [[--su |{user}@]{host}] [--] [remote command...]" } -function termwrapper () { +termwrapper() { PRG=$@ titletext="$title $titleopt" if [ "$V" = 1 ]; then |