From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2564 invoked from network); 31 Jul 2000 08:11:30 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 31 Jul 2000 08:11:30 -0000 Received: (qmail 14686 invoked by alias); 31 Jul 2000 08:11:19 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 12439 Received: (qmail 14679 invoked from network); 31 Jul 2000 08:11:14 -0000 Date: Mon, 31 Jul 2000 10:11:07 +0200 (MET DST) Message-Id: <200007310811.KAA02383@beta.informatik.hu-berlin.de> From: Sven Wischnowsky To: zsh-workers@sunsite.auc.dk In-reply-to: Wayne Davison's message of Wed, 19 Jul 2000 14:30:58 -0700 (PDT) Subject: Re: PATCH: removed remhist() Wayne Davison wrote: > ... > > + } while (isalpha(*b)); This gives me a `char used as subscript warning'. Or is there a reason to use isalpha() instead of ialpha()? Bye Sven Index: Src/hist.c =================================================================== RCS file: /cvsroot/zsh/zsh/Src/hist.c,v retrieving revision 1.17 diff -u -r1.17 hist.c --- Src/hist.c 2000/07/20 17:00:19 1.17 +++ Src/hist.c 2000/07/31 08:10:54 @@ -980,7 +980,7 @@ zsfree(t); return 1; } - } while (isalpha(*b)); + } while (ialpha(*b)); } zsfree(t); } -- Sven Wischnowsky wischnow@informatik.hu-berlin.de