Make gettext function use echo instead of printf to save a fork

This commit is contained in:
ridiculousfish 2012-04-25 13:37:41 -07:00
parent 307ea6dce2
commit ecab34c787

View file

@ -10,7 +10,7 @@ if test -x (echo $path)
end end
else else
function _ --description "Alias for the gettext command" function _ --description "Alias for the gettext command"
printf "%s" $argv echo -n $argv
end end
end end