fix bug introduced by commit 86af63cd3

This commit is contained in:
Kurtis Rader 2017-07-25 14:02:50 -07:00
parent d2d707a6fa
commit 92f39f7b89

View file

@ -22,16 +22,16 @@ function funcsave --description "Save the current definition of all specified fu
end
end
set -l res 0
set -l retval 0
for funcname in $argv
if functions -q -- $funcname
functions -- $i >$configdir/fish/functions/$funcname
functions -- $funcname >$configdir/fish/functions/$funcname.fish
else
printf (_ "%s: Unknown function '%s'\n") funcsave $funcname
set res 1
set retval 1
end
end
return $res
return $retval
end