From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 997 invoked from network); 10 Jun 2008 17:48:38 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) 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.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 10 Jun 2008 17:48:38 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 61654 invoked from network); 10 Jun 2008 17:48:33 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 10 Jun 2008 17:48:33 -0000 Received: (qmail 2649 invoked by alias); 10 Jun 2008 17:48:28 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 25146 Received: (qmail 2623 invoked from network); 10 Jun 2008 17:48:28 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 10 Jun 2008 17:48:28 -0000 Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.224]) by bifrost.dotsrc.org (Postfix) with ESMTP id ACE6D8028AC3 for ; Tue, 10 Jun 2008 19:48:21 +0200 (CEST) Received: by rv-out-0506.google.com with SMTP id g37so2689660rvb.21 for ; Tue, 10 Jun 2008 10:48:20 -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:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=G4dFSBiJyIi/fz754CzKWvbKM59iGn0zlzbA3atIKzo=; b=X/DNuH8ujzP4D8tqVZgjnIKte9GnWnpFdI1CdtWwGqfmejtfQ/RYyiuW+FlKjUpCoI d2qWjlx9qq7rwVnN788YmewIsCGcKSLcmVinOxzsLbUkFuqXhEk36OmEpSGzLJbBMdCZ 1if+FdHx41giYOzecus7UNYCZP+MMevibQEUM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=tKt3NsOJYcakO3sWIi9Z3Ur5aBzYX1EIemOaopq3lLbde6vYxLRsJIi4FM3K5GP/is UvuVoxV8Xhmu0HMgjALjIRNA2xLmWUJD/yPBRXdoS3mQ1Otf6wmq7ZNkC5H25zEiWsCJ KJTkTTuLjyFMvNKreZx8FfKpGMRs9H4D7psNs= Received: by 10.140.128.11 with SMTP id a11mr3247752rvd.232.1213120100159; Tue, 10 Jun 2008 10:48:20 -0700 (PDT) Received: by 10.141.153.6 with HTTP; Tue, 10 Jun 2008 10:48:20 -0700 (PDT) Message-ID: <237967ef0806101048q1799b1bfm32dde7d57a8ae9bb@mail.gmail.com> Date: Tue, 10 Jun 2008 19:48:20 +0200 From: "Mikael Magnusson" To: "Peter Stephenson" Subject: Re: PATCH: rewrite of completion matching Cc: "Zsh hackers list" In-Reply-To: <200806081755.m58Htsbm003877@pws-pc.ntlworld.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200806081755.m58Htsbm003877@pws-pc.ntlworld.com> X-Virus-Scanned: ClamAV 0.92.1/7423/Tue Jun 10 17:53:05 2008 on bifrost X-Virus-Status: Clean 2008/6/8 Peter Stephenson : > Peter Stephenson wrote: >> This is the long-hoped-for rewrite of the completion matching code so as >> to handle arbitary characters instead of just a set of 256 single-byte >> characters. However, this is only half the story: I have not modified >> it to use wide characters yet, so it won't work with multibyte character >> sets. > > This hasn't appeared, so apparently the mailing list is stuck. Just > in case it's now unstuck with backed up retries: I've now committed > this. This makes "man git" not crash, % man gitzsh: symbol lookup error: /usr/local/lib/zsh/4.3.6-dev-0/zsh/computil.so: undefined symbol: pattern_match_equivalence diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index 93e0049..42bca78 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -1199,7 +1199,7 @@ pattern_match1(Cpattern p, int c, int *mtp) * Only makes sense if lp->tp == CPAT_EQUIV and the (unseen) word * pattern also has that type. */ -static int +mod_export int pattern_match_equivalence(Cpattern lp, int wind, int wmtp, int wchr) { int lchr, lmtp; -- Mikael Magnusson