1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 21:44:11 +01:00

make _values not use -Q (16991)

This commit is contained in:
Sven Wischnowsky 2002-04-16 07:55:49 +00:00
parent e9a2060fe9
commit a8e0c3b988
2 changed files with 4 additions and 1 deletions

@ -1,5 +1,8 @@
2002-04-16 Sven Wischnowsky <wischnow@zsh.org>
* 16991: Completion/Base/Utility/_values: make _values not use
-Q
* 16990: Src/Zle/zle_tricky.c: treat backslashed bangs in
double quotes specially in get_comp_string(), they are more
like $s there

@ -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