Drop unneeded '--' when using set builtin in various places

darcs-hash:20061212203727-ac50b-23fbb54bba0c5773e8a3dd2e5737ea8a670c801d.gz
This commit is contained in:
axel
2006-12-13 06:37:27 +10:00
parent ca8c337c94
commit 6c8a559023
10 changed files with 25 additions and 25 deletions

View File

@@ -1,7 +1,7 @@
function __fish_is_first_token -d 'Test if no non-switch argument has been specified yet'
set -- cmd (commandline -poc)
set -e -- cmd[1]
set cmd (commandline -poc)
set -e cmd[1]
for i in $cmd
switch $i
case '-*'