mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-30 03:01:15 -03:00
fix bug introduced by commit 86af63cd3
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user