X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/5835a4a8eb85b9068a8ecefb0826292b6774c071..9e1c09df3d033bd9a47d25d067f5a42f127b7dba:/conf.c diff --git a/conf.c b/conf.c index dfc3765..d0c3f13 100644 --- a/conf.c +++ b/conf.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: conf.c,v 1.6 2000/02/12 18:13:20 mdw Exp $ + * $Id: conf.c,v 1.7 2000/08/01 17:58:10 mdw Exp $ * * Configuration parsing * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: conf.c,v $ + * Revision 1.7 2000/08/01 17:58:10 mdw + * Fix subtleties with functions. + * * Revision 1.6 2000/02/12 18:13:20 mdw * Terminate tables of sources and targets. * @@ -134,7 +137,7 @@ int token(scanner *sc) goto done; } - else if (isspace((unsigned char)ch)) + else if (isspace(ch)) ; else switch (ch) { @@ -187,7 +190,7 @@ int token(scanner *sc) goto insert; goto word; default: - if (!q && isspace((unsigned char)(ch))) + if (!q && isspace(ch)) goto word; insert: DPUTC(&sc->d, ch);