From 3c37057c34d975ada2e9e6590845732677e77104 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 13 Oct 2005 16:30:13 +0000 Subject: 21871: replace INULL() by inull() --- Src/utils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Src/utils.c') diff --git a/Src/utils.c b/Src/utils.c index 838846910..3394b0526 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -2562,8 +2562,10 @@ inittyptab(void) typtab['\0'] |= IMETA; typtab[STOUC(Meta) ] |= IMETA; typtab[STOUC(Marker)] |= IMETA; - for (t0 = (int)STOUC(Pound); t0 <= (int)STOUC(Nularg); t0++) + for (t0 = (int)STOUC(Pound); t0 <= (int)STOUC(Comma); t0++) typtab[t0] |= ITOK | IMETA; + for (t0 = (int)STOUC(Snull); t0 <= (int)STOUC(Nularg); t0++) + typtab[t0] |= ITOK | IMETA | INULL; for (s = ifs ? ifs : DEFAULT_IFS; *s; s++) { if (inblank(*s)) { if (s[1] == *s) -- cgit v1.2.3