diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-23 08:54:30 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-23 08:54:30 +0000 |
commit | ee681a32ad5a2e69301494be45556a4020fe1384 (patch) | |
tree | fbb0c6fa5f02dd7a7525e2ab8a83c9c64b8c8b17 /Completion/Commands/_complete_help | |
parent | cb50583b184fd8aa456fcadd0c25e0c43f704a72 (diff) | |
download | zsh-ee681a32ad5a2e69301494be45556a4020fe1384.tar.gz zsh-ee681a32ad5a2e69301494be45556a4020fe1384.tar.xz zsh-ee681a32ad5a2e69301494be45556a4020fe1384.zip |
use `set -A' instead of `eval' in more places (11525)
Diffstat (limited to 'Completion/Commands/_complete_help')
-rw-r--r-- | Completion/Commands/_complete_help | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Commands/_complete_help b/Completion/Commands/_complete_help index 94ca4abe0..36c41607b 100644 --- a/Completion/Commands/_complete_help +++ b/Completion/Commands/_complete_help @@ -32,7 +32,7 @@ _complete_help() { # No need to call the completers more than once with different match specs. if [[ "$3" = matcher-list ]]; then - eval "${4}=( '' )" + set -A "$4" '' else builtin zstyle "$@" fi |