mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-22 07:20:59 +02:00
varstash: fix get_autostash_array_name for Zsh 4.3.17 (Travis)
This commit is contained in:
parent
36846ae9b5
commit
248bd5cc0d
@ -193,7 +193,11 @@ function get_autostash_array_name() {
|
||||
local autostash_name=$(_mangle_var AUTOSTASH)
|
||||
# Create a scalar variable linked to an array (for exporting).
|
||||
local autostash_array_name=${(L)autostash_name}
|
||||
if ! (( ${(P)+autostash_array_name} )); then
|
||||
# Conditionally set it, to prevent error with Zsh 4.3:
|
||||
# can't tie already tied scalar: ...
|
||||
typeset -xT $autostash_name $autostash_array_name
|
||||
fi
|
||||
ret=$autostash_array_name
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user