1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-01 06:20:55 +01:00

47395: _store_cache: Don't leak the variable ${_cache_dir}.

This commit is contained in:
Jacob Menke 2020-09-22 07:09:36 +00:00 committed by Daniel Shahaf
parent 04bd9a44a7
commit 794edac638
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2020-09-22 Jacob Menke <linux.dev25@gmail.com>
* 47395: Completion/Base/Utility/_store_cache: Don't leak the
variable ${_cache_dir}.
2020-09-13 Bart Schaefer <schaefer@zsh.org>
* Mikael Magnusson: 47382: Completion/Zsh/Context/_brace_parameter:

View file

@ -2,7 +2,7 @@
#
# Storage component of completions caching layer
local _cache_ident _cache_ident_dir
local _cache_ident _cache_ident_dir _cache_dir
_cache_ident="$1"
if zstyle -t ":completion:${curcontext}:" use-cache; then