From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1830 invoked from network); 15 Aug 2008 23:57:08 -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: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 15 Aug 2008 23:57:08 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 75906 invoked from network); 15 Aug 2008 23:56:55 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 15 Aug 2008 23:56:55 -0000 Received: (qmail 10511 invoked by alias); 15 Aug 2008 23:56:47 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 25456 Received: (qmail 10480 invoked from network); 15 Aug 2008 23:56:43 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 15 Aug 2008 23:56:43 -0000 Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.187]) by bifrost.dotsrc.org (Postfix) with ESMTP id 9944A805A425 for ; Sat, 16 Aug 2008 01:56:37 +0200 (CEST) Received: by nf-out-0910.google.com with SMTP id g13so1609449nfb.11 for ; Fri, 15 Aug 2008 16:56:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=nygqSI8S97EasRXtYag94GVmq16sTvlFN8lKV2IJWL8=; b=Cku1Jbwep1ilhfYawKKmgWEhyIViXQrJjtmYe8+wLbiTuoLDYMi4hqkY4iG2RUHbxV 72CHK1hwZgFxEw6muJPDnhC42ycdXDYSjUQ8fO7YauiJThSlMR+xxd6B6L7dfmzYJV6r hwfeKNiaUYLyeUCV84xzaduP9PArp62CHwNg4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=Xj/yPo7hnf7NJlp9VTmzDqPbYTntpne2pTL1afXeODx7/c8zDcxQZ8usTy1Jtcezcb /DQUhTZ+FJY+BilBqw3drZucsiTIXO+2uf+5893lhu9QFwVZIXORLFWlsdmPwqD+GdsQ dGUAtvj/d0kzWA5YBpiDiaml34IjN37wUiwoE= Received: by 10.210.89.4 with SMTP id m4mr3940614ebb.21.1218844596811; Fri, 15 Aug 2008 16:56:36 -0700 (PDT) Received: by 10.210.19.20 with HTTP; Fri, 15 Aug 2008 16:56:36 -0700 (PDT) Message-ID: <237967ef0808151656j7787f169g4b3456910e05bfc2@mail.gmail.com> Date: Sat, 16 Aug 2008 01:56:36 +0200 From: "Mikael Magnusson" To: zsh-workers Subject: Fix a typo in _git. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: ClamAV 0.92.1/8049/Fri Aug 15 22:57:07 2008 on bifrost X-Virus-Status: Clean I have some other _git patches too, but they're sort of jumbled up and have some XXXes, but if anyone is curious they can look here: http://git.mika.l3ib.org/?p=zsh-cvs.git;a=history;f=Completion/Unix/Command/_git;h=mika --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -2271,7 +2271,7 @@ _git-rev-parse () { '--git-dir[show "$GIT_DIR" if defined else show path to ".git" directory]' \ '--short=-[show only handful hexdigits prefix]:: :_guard "[[\:digit\:]]#" number' \ {--after=-,--since=-}'[show "--max-age=" parameter corresponding given date string]:datestring' \ - {--berore=-,--until=-}'[show "--min-age=" parameter corresponding given date string]:datestring' \ + {--before=-,--until=-}'[show "--min-age=" parameter corresponding given date string]:datestring' \ '*:objects:__git_objects' && ret=0 } -- Mikael Magnusson