From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1808 invoked from network); 12 Apr 2000 15:50:35 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 12 Apr 2000 15:50:35 -0000 Received: (qmail 9386 invoked by alias); 12 Apr 2000 15:50:23 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10706 Received: (qmail 9372 invoked from network); 12 Apr 2000 15:50:22 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer david.siemens.de) From: "Andrej Borsenkow" To: "ZSH workers mailing list" Subject: PATCH: Oops! more stuff: _man for Pyramid man system (attached - probably Q-P) Date: Wed, 12 Apr 2000 19:50:19 +0400 Message-ID: <000a01bfa496$cda25200$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_000B_01BFA4B8.54B3F200" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-reply-to: <000001bfa48b$d2e6e560$21c9ca95@mow.siemens.ru> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 This is a multi-part message in MIME format. ------=_NextPart_000_000B_01BFA4B8.54B3F200 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Sorry, forgot to compare strings in awk (section was not compared properly). This is relative to current CVS Attached for the same reasons. -andrej ------=_NextPart_000_000B_01BFA4B8.54B3F200 Content-Type: application/octet-stream; name="man.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="man.patch" --- Completion/User/_man Wed Apr 12 19:46:14 2000=0A= +++ /home/bor/.zsh.d/completion/_man Wed Apr 12 19:14:12 2000=0A= @@ -31,7 +31,7 @@=0A= if [[ $words[2] =3D (<->*|1M|l|n) ]]; then=0A= rep=3D(=0A= = $manpath/(sman|man|cat)${words[2]}/${~approx}$PREFIX${~star}$SUFFIX.<->*(= N:t) )=0A= - (($#mrd)) && rep[$#rep+1]=3D($(awk "\$2 =3D=3D $words[2] {print \$1}" = $mrd))=0A= + (($#mrd)) && rep[$#rep+1]=3D($(awk "\$2 =3D=3D \"$words[2]\" {print = \$1}" $mrd))=0A= else=0A= rep=3D( = $manpath/(sman|man|cat)*/${~approx}$PREFIX${~star}$SUFFIX.<->*(N:t) )=0A= (($#mrd)) && rep[$#rep+1]=3D($(awk '{print $1}' $mrd))=0A= ------=_NextPart_000_000B_01BFA4B8.54B3F200--