From 7d19431901041fa8a5ed7154ce4d285c40beade9 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Mon, 22 May 2000 17:17:52 +0000 Subject: 11515: Fix infinite loop. --- Completion/Base/_arguments | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Completion/Base') diff --git a/Completion/Base/_arguments b/Completion/Base/_arguments index 1fcf34a10..4b7aaa1a0 100644 --- a/Completion/Base/_arguments +++ b/Completion/Base/_arguments @@ -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 ;; -- cgit v1.2.3