From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24634 invoked by alias); 12 Dec 2009 23:24:05 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 27504 Received: (qmail 25092 invoked from network); 12 Dec 2009 23:24:03 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received-SPF: none (ns1.primenet.com.au: domain at debian.org does not designate permitted sender hosts) Date: Sat, 12 Dec 2009 23:23:57 +0000 From: Clint Adams To: Michael Prokop , 560881@bugs.debian.org Cc: zsh-workers@zsh.org Subject: Re: Bug#560881: zsh: dput's --delayed completion is broken Message-ID: <20091212232357.GA20564@scru.org> References: <2009-12-13T00-05-08@devnull.michael-prokop.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2009-12-13T00-05-08@devnull.michael-prokop.at> User-Agent: Mutt/1.5.18 (2008-05-17) On Sun, Dec 13, 2009 at 12:13:46AM +0100, Michael Prokop wrote: > % dput --de > completing option > --debug -- debug mode > --delayednumber of days in delayed queue -- (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15) > > Two further tabs later there's: > > % dput --delayednumber of days in delayed queue > > visible in the prompt. > > The attached patch addresses this issue and WFM. > > regards, > -mika- > --- /usr/share/zsh/functions/Completion/Debian/_dput.orig 2009-12-13 00:06:19.000000000 +0100 > +++ /usr/share/zsh/functions/Completion/Debian/_dput 2009-12-13 00:09:01.000000000 +0100 > @@ -5,7 +5,7 @@ > '(-c --config)'{-c,--config}'[specify config file]:config file:_files' \ > '(-d --debug)'{-d,--debug}'[debug mode]' \ > '(-D --dinstall)'{-D,--dinstall}'[run dinstall after upload]' \ > - '(-e --delayed)'{-E,--delayed}'number of days in delayed queue:(0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)' \ > + '(-e --delayed)'{-E,--delayed}'[number of days in delayed queue]:number of days:(0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15)' \ > '(-f --force)'{-f,--force}'[force upload of already uploaded package]' \ > '(-H --host-list)'{-H,--host-list}'[display host list]' \ > '(-l --lintian)'{-l,--lintian}'[run lintian before upload]' \ Thanks.