From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19107 invoked from network); 22 Jul 2000 04:38:31 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 22 Jul 2000 04:38:31 -0000 Received: (qmail 20677 invoked by alias); 22 Jul 2000 04:38:23 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 12347 Received: (qmail 20670 invoked from network); 22 Jul 2000 04:38:22 -0000 Date: Sat, 22 Jul 2000 00:38:19 -0400 From: Clint Adams To: zsh-workers@sunsite.auc.dk Subject: PATCH: _mutt option repetition Message-ID: <20000722003819.A17534@scowler.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0.1i I was bitten when trying to complete arguments to multiple -a's. The same applies for -b and -c, but not, as I had suspected, -i. Index: Completion/User/_mutt =================================================================== RCS file: /cvsroot/zsh/zsh/Completion/User/_mutt,v retrieving revision 1.2 diff -u -r1.2 _mutt --- Completion/User/_mutt 2000/05/05 13:38:46 1.2 +++ Completion/User/_mutt 2000/07/22 04:37:47 @@ -5,9 +5,9 @@ _arguments -C \ '::recipient:->userhost' \ - '-a:MIME attachment:_files' \ - '-b:BCC recipient:->userhost' \ - '-c:CC recipient:->userhost' \ + '*-a:MIME attachment:_files' \ + '*-b:BCC recipient:->userhost' \ + '*-c:CC recipient:->userhost' \ '-e:post-init configuration:' \ '-f+:mailbox: _mailboxes' \ '-F+:init file:_files' \