From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from euclid.skiles.gatech.edu (list@euclid.skiles.gatech.edu [130.207.146.50]) by melb.werple.net.au (8.7.5/8.7.3) with ESMTP id AAA14919 for ; Wed, 17 Apr 1996 00:06:10 +1000 (EST) Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id JAA18048; Tue, 16 Apr 1996 09:48:34 -0400 (EDT) Resent-Date: Tue, 16 Apr 1996 09:47:56 -0400 (EDT) Message-Id: <199604161346.JAA29281@redwood.skiles.gatech.edu> To: zsh-users@math.gatech.edu Subject: Re: Bug in Src/zle_tricky.c In-reply-to: Your message of "16 Apr 1996 12:50:50 -0000." <19960416125050.3876.qmail@squirrel.owl.de> Date: Tue, 16 Apr 1996 09:46:08 -0400 From: "Richard J. Coleman" Resent-Message-ID: <"_1qij2.0.UP4.BKwSn"@euclid> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/189 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu > Compiling zsh-2.6-beta14 on my Linux box stopped with this error message: > > zle_tricky.c: In function `maketildelist': > zle_tricky.c:1684: too few arguments to function > make[1]: *** [zle_tricky.o] Error 1 > make[1]: Leaving directory `/usr/src/bin/zsh-2.6-beta14/Src' > make: *** [all] Error 1 > > > The following patch fixed the bug, but I'm not sure if it is the right one. > > --- zle_tricky.c~ Mon Apr 15 07:33:46 1996 > +++ zle_tricky.c Tue Apr 16 14:30:40 1996 > @@ -1681,7 +1681,7 @@ > } > #else /* no NIS or NIS_PLUS */ > /* add all the usernames to the named directory table */ > - nameddirtab->filltable(); > + nameddirtab->filltable(nameddirtab); > #endif > > scanhashtable(nameddirtab, 0, (addwhat==-1) ? 0 : ND_USERNAME, 0, Yes, that is the correct thing to do. It was a typo. Sorry about that. rc