1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-30 07:10:58 +02:00

11515: Fix infinite loop.

This commit is contained in:
Bart Schaefer 2000-05-22 17:17:52 +00:00
parent 903ee41560
commit 7d19431901
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2000-05-22 Bart Schaefer <schaefer@zsh.org>
* 11515: Completion/Base/_arguments: Fix infinite loop.
* 11508: Doc/Zsh/index.yo: Add texipage() to printindex().
* 11485, 11488: Relocate "Compatibility" and "Restricted Shell" docs.

View file

@ -155,7 +155,7 @@ if (( long )); then
fi
subopts=()
while [[ "$1" = -(O*|C|m*) ]]; do
while [[ "$1" = -(O*|C) ]]; do
case "$1" in
-C) usecc=yes; shift ;;
-O) subopts=( "${(@P)2}" ); shift 2 ;;