From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19068 invoked from network); 19 Apr 2004 19:43:13 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 19 Apr 2004 19:43:13 -0000 Received: (qmail 15123 invoked by alias); 19 Apr 2004 19:43:05 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 19796 Received: (qmail 15114 invoked from network); 19 Apr 2004 19:43:05 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 19 Apr 2004 19:43:05 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [130.225.247.86] by sunsite.dk (MessageWall 1.0.8) with SMTP; 19 Apr 2004 19:43:4 -0000 Received: (qmail 22982 invoked from network); 19 Apr 2004 19:43:04 -0000 Received: from wbar3.sjo1-4-11-009-147.sjo1.dsl-verizon.net (HELO candle.brasslantern.com) (4.11.9.147) by a.mx.sunsite.dk with SMTP; 19 Apr 2004 19:43:02 -0000 Received: (from schaefer@localhost) by candle.brasslantern.com (8.11.6/8.11.6) id i3JJgxM10419 for zsh-workers@sunsite.dk; Mon, 19 Apr 2004 12:42:59 -0700 From: Bart Schaefer Message-Id: <040419124259.ZM10418@candle.brasslantern.com> Date: Mon, 19 Apr 2004 12:42:59 -0700 X-Mailer: Z-Mail Lite (5.0.0 30July97) To: zsh-workers@sunsite.dk Subject: Segmentation fault with matcher style setting MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: **** X-Spam-Status: No, hits=4.7 required=6.0 tests=RCVD_IN_DYNABLOCK, RCVD_IN_NJABL,RCVD_IN_NJABL_DIALUP,RCVD_IN_SORBS autolearn=no version=2.63 X-Spam-Hits: 4.7 This may be related to the problems Thorsten Kampe has been reporting. --- Forwarded mail from Matthias Kopfermann Date: Mon, 19 Apr 2004 20:11:29 +0200 From: Matthias Kopfermann To: Bart Schaefer btw. i found the segfault causing bug. zstyle ':completion:*' matcher-list '' 'm:{a-z-}={A-Z_} r:|[-_./]=* r:|=*' \ 'm:{a-z-}={A-Z_} l:|=* r:|=*' does evil things. that came from sven wischnowsky. zstyle ':completion:*' matcher-list '' 'm:{a-z-}={A-Z_}' 'r:|[-_./]=* r:|=*' \ 'm:{a-z-}={A-Z_} l:|=* r:|=*' (http://www.w9y.de/zsh/zshrc) he did this zshrc because sven guckes and i begged for it :) he just said that he does not want it to be a link because sometimes he wants to do it better. i did not see what exactly has caused the segfault as my other computer has the exact same line but does _not_ segfault. i tell you if i find out! Matthias ---End of forwarded mail from Matthias Kopfermann