mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-06 09:01:13 +02:00
11515: Fix infinite loop.
This commit is contained in:
parent
903ee41560
commit
7d19431901
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
2000-05-22 Bart Schaefer <schaefer@zsh.org>
|
2000-05-22 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* 11515: Completion/Base/_arguments: Fix infinite loop.
|
||||||
|
|
||||||
* 11508: Doc/Zsh/index.yo: Add texipage() to printindex().
|
* 11508: Doc/Zsh/index.yo: Add texipage() to printindex().
|
||||||
|
|
||||||
* 11485, 11488: Relocate "Compatibility" and "Restricted Shell" docs.
|
* 11485, 11488: Relocate "Compatibility" and "Restricted Shell" docs.
|
||||||
|
|
|
@ -155,7 +155,7 @@ if (( long )); then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
subopts=()
|
subopts=()
|
||||||
while [[ "$1" = -(O*|C|m*) ]]; do
|
while [[ "$1" = -(O*|C) ]]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
-C) usecc=yes; shift ;;
|
-C) usecc=yes; shift ;;
|
||||||
-O) subopts=( "${(@P)2}" ); shift 2 ;;
|
-O) subopts=( "${(@P)2}" ); shift 2 ;;
|
||||||
|
|
Loading…
Reference in a new issue