aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/isatty.fish
diff options
context:
space:
mode:
authorGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 10:18:26 +0800
committerGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 10:18:26 +0800
commit70322077d21ae38bbe503d88e9e4d73ec883a493 (patch)
treed64024c9dde752818a35f865f910e413d8935579 /share/functions/isatty.fish
parentf529b2e05725cba0bf9da3ee0feb0b7e3ef2fa5a (diff)
remove trialing spaces #2
Diffstat (limited to 'share/functions/isatty.fish')
-rw-r--r--share/functions/isatty.fish4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/functions/isatty.fish b/share/functions/isatty.fish
index 1603972f..d4f2c43e 100644
--- a/share/functions/isatty.fish
+++ b/share/functions/isatty.fish
@@ -1,7 +1,7 @@
function isatty -d "Tests if a file descriptor is a tty"
set -l fd 0
- if count $argv >/dev/null
+ if count $argv >/dev/null
switch $argv[1]
case -h --h --he --hel --help
@@ -19,7 +19,7 @@ function isatty -d "Tests if a file descriptor is a tty"
case '*'
set fd $argv[1]
-
+
end
end