summaryrefslogtreecommitdiff
path: root/etc/functions/reload
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2010-04-02 11:32:38 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2010-04-02 11:32:38 +0200
commitf0f3c02a3ccde07d3dc79577c7eca41ea3e8e86f (patch)
treed0aaab1de872a30a94555d2da3b501e13e18c217 /etc/functions/reload
parent81ac4a06bff278f07620804b7d4120342b1f6522 (diff)
Replace $var by ${var}
Diffstat (limited to 'etc/functions/reload')
-rw-r--r--etc/functions/reload6
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}
}
}