From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26465 invoked from network); 21 Aug 2007 08:33:40 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.1 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 21 Aug 2007 08:33:40 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 63370 invoked from network); 21 Aug 2007 08:33:34 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 21 Aug 2007 08:33:34 -0000 Received: (qmail 23338 invoked by alias); 21 Aug 2007 08:33:31 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23785 Received: (qmail 23329 invoked from network); 21 Aug 2007 08:33:30 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 21 Aug 2007 08:33:30 -0000 Received: (qmail 63026 invoked from network); 21 Aug 2007 08:33:30 -0000 Received: from imag.imag.fr (129.88.30.1) by a.mx.sunsite.dk with SMTP; 21 Aug 2007 08:33:26 -0000 Received: from mail-veri.imag.fr (mail-veri.imag.fr [129.88.43.52]) by imag.imag.fr (8.13.8/8.13.8) with ESMTP id l7L8X1c0015840 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Tue, 21 Aug 2007 10:33:01 +0200 (CEST) Received: from bauges.imag.fr ([129.88.43.5]) by mail-veri.imag.fr with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1INPAa-0005Gb-Nb; Tue, 21 Aug 2007 10:33:00 +0200 Received: from moy by bauges.imag.fr with local (Exim 4.63) (envelope-from ) id 1INPAa-0006jj-L9; Tue, 21 Aug 2007 10:33:00 +0200 To: zsh-workers Subject: Bugfix in _git completion for git-send-email From: Matthieu Moy Date: Tue, 21 Aug 2007 10:33:00 +0200 Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.97 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: Matthieu Moy X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (imag.imag.fr [129.88.30.1]); Tue, 21 Aug 2007 10:33:01 +0200 (CEST) X-IMAG-MailScanner-Information: Please contact IMAG DMI for more information X-IMAG-MailScanner: Found to be clean X-IMAG-MailScanner-SpamCheck: X-IMAG-MailScanner-From: moy@imag.fr Hi, Please apply the following patch : --- Completion/Unix/Command/_git 2007-08-03 12:57:23 +0000 +++ Completion/Unix/Command/_git 2007-08-21 08:27:36 +0000 @@ -1403,7 +1403,7 @@ '--in-reply-to[specify the contents of the first In-Reply-To header]' \ '--smtp-server[specify the outgoing smtp server]:smtp server:_hosts' \ '--subject[specify the initial subject of the email thread]' \ - '--to[specify the primary recipient of the emails]' + '--to[specify the primary recipient of the emails]' \ ':file:_files' && ret=0 } -- Matthieu