1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-02 13:26:03 +02:00

29596: fix syntax to work with ksh_arrays

This commit is contained in:
Mikael Magnusson 2011-07-22 13:22:20 +00:00
parent 6b42b83f41
commit 164cf1abd5
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2011-07-22 Mikael Magnusson <mikachu@gmail.com>
* 29596: Completion/compinit: Fix syntax to work with KSH_ARRAYS
set.
2011-07-22 Nikolai Weibull <now@bitwi.se>
* unposted: Completion/Unix/Command/_git: Use _files, not _path_files.
@ -15149,5 +15154,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5405 $
* $Revision: 1.5406 $
*****************************************************

View File

@ -161,7 +161,7 @@ _comp_options=(
# and don't get confused by user's ZERR trap handlers.
typeset -g _comp_setup='local -A _comp_caller_options;
_comp_caller_options=(${(kv)options});
_comp_caller_options=(${(kv)options[@]});
setopt localoptions localtraps ${_comp_options[@]};
local IFS=$'\'\ \\t\\r\\n\\0\''
exec </dev/null;