From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1765 invoked by alias); 9 Dec 2011 23:38:49 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 29968 Received: (qmail 176 invoked from network); 9 Dec 2011 23:38:46 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-3.3 required=5.0 tests=BAYES_00,DKIM_ADSP_ALL, DKIM_SIGNED,RCVD_IN_DNSWL_MED,T_DKIM_INVALID autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at spodhuis.org does not designate permitted sender hosts) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=spodhuis.org; s=d201107; h=In-Reply-To:Content-Transfer-Encoding:Content-Type:MIME-Version:References:Message-ID:Subject:To:From:Date; bh=o1YEKMg1K80/bvwX4cnizQoiMWsr2C6PVdXxRoAHIF4=; b=sexerdJZjDaeYYdqCpv/gFerbgjcBEgG35RVXcw85kJ9crHsWBE2JtuQG+4+x+bzrlZzND43j2A8l7Dau2IwQltIS+6eoQp3u6kgBFEIFlmu1ck6V5ygJ5L+a5+D/E3tv+Y/iHAZeCPi6OQPz9Ti0PiuSboUtGjuzzH5qeFdmAA=; Date: Fri, 9 Dec 2011 18:38:42 -0500 From: Phil Pennock To: zsh-workers@zsh.org Subject: Re: Next release Message-ID: <20111209233841.GA60711@redoubt.spodhuis.org> Mail-Followup-To: zsh-workers@zsh.org References: <20111209141117.52c1e37a@pwslap01u.europe.root.pri> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20111209141117.52c1e37a@pwslap01u.europe.root.pri> On 2011-12-09 at 14:11 +0000, Peter Stephenson wrote: > It would also be useful to document any bugs or major unexpected > restrictions that aren't already documented. I only implemented metafy/unmetafy for the zsh/pcre module, not the zsh/regex module which provides the system extended regexp support. % [[ → =~ ^(.) ]] && print $match → % unsetopt rematchpcre % [[ → =~ ^(.) ]] && print $match ? % On the same box, bash (not using PCRE): $ [[ → =~ ^(.) ]] && echo $BASH_REMATCH → $ So clearly the system regex library can handle UTF-8 just fine on this box, so I have a place to test and might get around to it sometime soon. -Phil