Skip to content

Commit

Permalink
Add missing quotation marks in autoload (#711)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfkonrad authored and derekstavis committed Jul 23, 2019
1 parent c8337b6 commit ee1921b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/autoload.fish
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ function __autoload_erase
or set function_indexes $function_indexes (contains -i $path $fish_function_path)
end;
test -n "$function_indexes"
and set -e fish_function_path[$function_indexes]
and set -e fish_function_path["$function_indexes"]
test -n "$complete_indexes"
and set -e fish_complete_path[$complete_indexes]
and set -e fish_complete_path["$complete_indexes"]
return 0
end;

0 comments on commit ee1921b

Please sign in to comment.