From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8926 invoked from network); 31 May 2000 06:12:38 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 31 May 2000 06:12:38 -0000 Received: (qmail 8195 invoked by alias); 31 May 2000 06:12:28 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11679 Received: (qmail 8181 invoked from network); 31 May 2000 06:12:28 -0000 Date: Wed, 31 May 2000 08:12:26 +0200 (MET DST) Message-Id: <200005310612.IAA21476@beta.informatik.hu-berlin.de> From: Sven Wischnowsky To: zsh-workers@sunsite.auc.dk Subject: PATCH: ignore-line This was partially broken by the -[ak] option patch. Missing initialisation for to variables. Bye Sven Index: Src/Zle/compcore.c =================================================================== RCS file: /cvsroot/zsh/zsh/Src/Zle/compcore.c,v retrieving revision 1.25 diff -u -r1.25 compcore.c --- Src/Zle/compcore.c 2000/05/29 12:42:59 1.25 +++ Src/Zle/compcore.c 2000/05/31 06:11:29 @@ -1895,6 +1895,10 @@ argv = &ms; } } + if (dat->ppre) + ppl = strlen(dat->ppre); + if (dat->psuf) + psl = strlen(dat->psuf); for (; (s = *argv); argv++) { bpl = obpl; bsl = obsl; -- Sven Wischnowsky wischnow@informatik.hu-berlin.de