summaryrefslogtreecommitdiffstats
path: root/Completion/Darwin
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2008-11-02 14:12:29 +0000
committerClint Adams <clint@users.sourceforge.net>2008-11-02 14:12:29 +0000
commit6dbf2f2f4a97e2831094a73c662484ce990e7e41 (patch)
tree2b7eb40ddd7e3518a2a962eb8accf5a1ef7d9616 /Completion/Darwin
parent25987: don't ztrdup the buffer returned by inet_ntoa. (diff)
downloadzsh-6dbf2f2f4a97e2831094a73c662484ce990e7e41.tar
zsh-6dbf2f2f4a97e2831094a73c662484ce990e7e41.tar.gz
zsh-6dbf2f2f4a97e2831094a73c662484ce990e7e41.tar.bz2
zsh-6dbf2f2f4a97e2831094a73c662484ce990e7e41.tar.lz
zsh-6dbf2f2f4a97e2831094a73c662484ce990e7e41.tar.xz
zsh-6dbf2f2f4a97e2831094a73c662484ce990e7e41.tar.zst
zsh-6dbf2f2f4a97e2831094a73c662484ce990e7e41.zip
25988: declare temporary cache array as local, thanks to problem noticed by Kazuhiro NISHIYAMA.
Diffstat (limited to 'Completion/Darwin')
-rw-r--r--Completion/Darwin/Command/_fink1
-rw-r--r--Completion/Darwin/Type/_retrieve_mac_apps7
2 files changed, 5 insertions, 3 deletions
diff --git a/Completion/Darwin/Command/_fink b/Completion/Darwin/Command/_fink
index f0ff6834e..27ca3740c 100644
--- a/Completion/Darwin/Command/_fink
+++ b/Completion/Darwin/Command/_fink
@@ -55,6 +55,7 @@ _fink_get_packages(){
}
_finkpkgs_caching_policy(){
+ local -a oldp
oldp=( "$1"(Nmw+1) )
(( $#oldp )) ||
[[ /sw/var/cache/apt/pkgcache.bin -nt "$1" ]] ||
diff --git a/Completion/Darwin/Type/_retrieve_mac_apps b/Completion/Darwin/Type/_retrieve_mac_apps
index f435fde26..e9a30e006 100644
--- a/Completion/Darwin/Type/_retrieve_mac_apps
+++ b/Completion/Darwin/Type/_retrieve_mac_apps
@@ -4,9 +4,10 @@
# Used by _mac_applications and _mac_files_for_application.
_mac_apps_caching_policy () {
- # Rebuild if cache is more than a day old
- oldp=( "$1"(Nmw+1) )
- (( $#oldp ))
+ # Rebuild if cache is more than a day old
+ local -a oldp
+ oldp=( "$1"(Nmw+1) )
+ (( $#oldp ))
}