diff options
Diffstat (limited to 'etc/functions/reload')
-rw-r--r-- | etc/functions/reload | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/functions/reload b/etc/functions/reload index afa634f..20439c2 100644 --- a/etc/functions/reload +++ b/etc/functions/reload @@ -7,8 +7,8 @@ if [[ ${#*} == 0 ]] { rehash } else { local function - for function in $@; { - unfunction $function - autoload $function + for function in ${@}; { + unfunction ${function} + autoload ${function} } } |