Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm
Precedence: bulk
X-No-Archive: yes
List-Id: Zsh Workers List <zsh-workers.zsh.org>
List-Post: <mailto:zsh-workers@zsh.org>
List-Help: <mailto:zsh-workers-help@zsh.org>
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au
X-Spam-Level: 
X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham
	autolearn_force=no version=3.4.1
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20130820;
        h=x-gm-message-state:reply-to:to:from:subject:organization:message-id
         :date:user-agent:mime-version:content-transfer-encoding;
        bh=B0srxKucjtj9sDnWg86cihWVg8Qdnv3gT5zlNkX50D0=;
        b=fJofdX2FskyixZKg4so6Yt7Qd/lsa2rpwUL3/G0YqSCV/YYBUgPw/KcS0OqLTy63/k
         sNDaEFmS1Ybf/ru4yh4Zg74jwnVB2Z25ZVZidbwOnzlVoVnTpkk32FFVgljpyewoyABI
         Nd8kU4CFr3paGM+9HPwvVkUOxCP0wQfWG9XB/lu1AuFxhP+mNIuL6ZulUa+F/GuA2RWz
         1M7gUoBz9MSWQtRKip18Ghp4nkMHnTY6Sy81DTbuBdH79DdABLXXwNh0ot5v5lA0WofO
         2+uk5qI0X6KUBx5bZpGRznGx+/NrLvx3SijMqfcal4eAlfSnOjOyeLqL9ptIu+mpsKae
         zO0A==
X-Gm-Message-State: ALyK8tJZO55RftuRAjfpQIRqhqW+/3jrQznBGIckwOx43nQsQ2/LPZURv54ve6pSQgcsuYLP
X-Received: by 10.194.179.233 with SMTP id dj9mr2436118wjc.115.1464945647706;
        Fri, 03 Jun 2016 02:20:47 -0700 (PDT)
Reply-To: Marko Myllynen <myllynen@redhat.com>
To: zsh workers <zsh-workers@zsh.org>
From: Marko Myllynen <myllynen@redhat.com>
Subject: [PATCH] Fix iconvconfig completion --output handling
Organization: Red Hat
Message-ID: <57514BEB.8080402@redhat.com>
Date: Fri, 3 Jun 2016 12:20:43 +0300
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101
 Thunderbird/38.8.0
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-Seq: zsh-workers 38587

Pointed out by Daniel in the localedef thread yesterday.

---
 Completion/Linux/Command/_iconvconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Completion/Linux/Command/_iconvconfig b/Completion/Linux/Command/_iconvconfig
index 5afb10a..a10e134 100644
--- a/Completion/Linux/Command/_iconvconfig
+++ b/Completion/Linux/Command/_iconvconfig
@@ -4,7 +4,7 @@ local exargs="-? --help --usage -V --version"
 
 _arguments -S -s \
     "($exargs)--nostdlib[do not search system directory]" \
-    "(-o --output= $exargs)"{-o+,--output=}'[specify output file]:output file:_files' \
+    "(-o --output $exargs)"{-o+,--output=}'[specify output file]:output file:_files' \
     "($exargs)--prefix=[specify system dir prefix]:prefix:_files" \
     '(- *)'{-\?,--help}'[display help information]' \
     '(- *)--usage[display a short usage message]' \

Thanks,

-- 
Marko Myllynen

