From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6387 invoked from network); 22 May 2004 13:56:05 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.86) by ns1.primenet.com.au with SMTP; 22 May 2004 13:56:05 -0000 Received: (qmail 5676 invoked from network); 22 May 2004 13:55:06 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 22 May 2004 13:55:06 -0000 Received: (qmail 26125 invoked by alias); 22 May 2004 13:54:57 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7465 Received: (qmail 26104 invoked from network); 22 May 2004 13:54:57 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (qmailr@130.225.247.86) by sunsite.dk with SMTP; 22 May 2004 13:54:53 -0000 Received: (qmail 4878 invoked from network); 22 May 2004 13:54:53 -0000 Received: from main.gmane.org (80.91.224.249) by a.mx.sunsite.dk with SMTP; 22 May 2004 13:54:51 -0000 Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BRWxc-0003nn-00 for ; Sat, 22 May 2004 15:54:50 +0200 Received: from isi-dialin-129-110.isionline-dialin.de ([195.158.129.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 22 May 2004 15:54:48 +0200 Received: from thorsten by isi-dialin-129-110.isionline-dialin.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 22 May 2004 15:54:48 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: zsh-users@sunsite.dk From: Thorsten Kampe Subject: zsh 4.2.0 dumping core on completion attempt Date: Sat, 22 May 2004 15:54:46 +0200 Message-ID: <3m5afmj8tzpu$.dlg@thorstenkampe.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: isi-dialin-129-110.isionline-dialin.de User-Agent: 40tude_Dialog/2.0.12.1de Sender: news X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=0.0 required=6.0 tests=BAYES_50 autolearn=no version=2.63 X-Spam-Hits: 0.0 zsh 4.2.0 dumps core under Cygwin and Linux with these lines in my .zshrc: autoload -U compinit; compinit -C # completion system # case-insensitive and partial-word then substring zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z} m:[-._]=[-._] r:|[-./_]=** r:|=*' '+l:|=*' More precisely it's the "m:[-._]=[-._] r:|[-./_]=**" part. (These are variations from "6.7 Matching control and controlling where things are inserted" of the User's Guide) Surpringly ".f" and "_f" make zsh dump core while "-f" and "/f" do not. The "f" letter can be in fact any *lower case* letter while "_F" or ".H" don't make zsh dump core. Thorsten