mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-19 11:53:16 +08:00
fix bug introduced by commit 86af63cd3
This commit is contained in:
parent
d2d707a6fa
commit
92f39f7b89
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user