Remove unnecessary eval in __fish_complete_cd

https://github.com/fish-shell/fish-shell/pull/589
This commit is contained in:
ridiculousfish 2013-02-20 18:43:54 -08:00
parent 7b873179ad
commit 12095c721c

View file

@ -32,7 +32,7 @@ function __fish_complete_cd -d "Completions for the cd command"
# in case the CDPATH directory is relative
builtin cd $wd
eval builtin cd $i
builtin cd $i
# What we would really like to do is skip descriptions if all
# valid paths are in the same directory, but we don't know how to