From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22296 invoked from network); 10 Nov 1999 19:42:04 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 10 Nov 1999 19:42:04 -0000 Received: (qmail 6694 invoked by alias); 10 Nov 1999 19:41:51 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8615 Received: (qmail 6687 invoked from network); 10 Nov 1999 19:41:50 -0000 To: Zsh Task Force Subject: Re: Portabilities issues of the completion References: MIME-Version: 1.0 (generated by AKEMI 1.13.2 - =?ISO-2022-JP?B?Ig==?= =?ISO-2022-JP?B?GyRCQTA0Y0s8GyhCIg==?=) Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 11 Nov 1999 04:41:38 +0900 In-Reply-To: Akim Demaille's message of "10 Nov 1999 18:29:38 +0100" Message-ID: User-Agent: Chao-gnus/6.12.5 AKEMI/1.13.2 (=?ISO-2022-JP?B?GyRCQTAbKEI=?= =?ISO-2022-JP?B?GyRCNGNLPBsoQg==?=) FLAM-DOODLE/1.12.6 (=?ISO-2022-JP?B?GyRCM3cbKEI=?= 10R4.0/5.0) Emacs/20.4 (sparc-sun-solaris2.6) MULE/4.0 (HANANOEN) In article , Akim Demaille writes: > My previous mail contains a mistake: use ?, not \?. Though it should > not make differences, AFAICT. Thanks. I didn't know that (a|) is not portable. But 8612 has mistake. It uses \? for second match. This patch should be applyed over 8612. Index: Completion/User/_make =================================================================== RCS file: /projects/zsh/zsh/Completion/User/_make,v retrieving revision 1.1.1.13 diff -u -r1.1.1.13 _make --- Completion/User/_make 1999/11/10 19:27:53 1.1.1.13 +++ Completion/User/_make 1999/11/10 19:35:41 @@ -22,7 +22,7 @@ [[ -n "$file" ]] && compadd "$expl[@]" - \ $(awk '/^[a-zA-Z0-9][^\/ \t]+:/ {print $1} - /^\.include */ || /^\.include *".*mk\/bsd\.pkg\.(subdir\.)\?mk"/ { + /^\.include */ || /^\.include *".*mk\/bsd\.pkg\.(subdir\.)?mk"/ { print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum" }' \ FS=: $file) && ret=0 (( ret )) && { compset -P 1 '*\='; _files } -- Tanaka Akira