diff options
| author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2002-04-16 07:55:49 +0000 |
|---|---|---|
| committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2002-04-16 07:55:49 +0000 |
| commit | a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc (patch) | |
| tree | 6c6fa68892706c9a801e462f9d86fd4653dc0f48 /Completion/Base | |
| parent | treat backslashed bangs in double quotes specially in get_comp_string(), they... (diff) | |
| download | zsh-a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc.tar zsh-a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc.tar.gz zsh-a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc.tar.bz2 zsh-a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc.tar.lz zsh-a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc.tar.xz zsh-a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc.tar.zst zsh-a8e0c3b988ee63d45e6af1a19d32c1e6439a11bc.zip | |
make _values not use -Q (16991)
Diffstat (limited to 'Completion/Base')
| -rw-r--r-- | Completion/Base/Utility/_values | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Base/Utility/_values b/Completion/Base/Utility/_values index 00249e05b..5cfa4bd30 100644 --- a/Completion/Base/Utility/_values +++ b/Completion/Base/Utility/_values @@ -51,7 +51,7 @@ if compvalues -i "$@"; then else compvalues -d descr if [[ ${#noargs}+${#args}+${#opts} -ne 1 ]] && compvalues -s sep; then - sep=( "-qQS" "$sep" ) + sep=( "-qS" "$sep" ) else sep=() fi |
