From: Sebastian Hammer Date: Wed, 29 May 1996 15:48:48 +0000 (+0000) Subject: Added \n to the isspace rule. X-Git-Tag: YAZ.1.8~744 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=d8effb26c004e99bfd83855511c4ec5a7c7f3c79;hp=d0ef7e3d61ea8c14a8649fd199e9060039f3b7b0 Added \n to the isspace rule. --- diff --git a/util/readconf.c b/util/readconf.c index b3a9204..119b471 100644 --- a/util/readconf.c +++ b/util/readconf.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: readconf.c,v $ - * Revision 1.2 1996-05-29 10:05:01 quinn + * Revision 1.3 1996-05-29 15:48:48 quinn + * Added \n to the isspace rule. + * + * Revision 1.2 1996/05/29 10:05:01 quinn * Changed space criteria to support 8-bit characters * * Revision 1.1 1995/11/01 13:55:06 quinn @@ -24,7 +27,7 @@ #include -#define l_isspace(c) ((c) == '\t' || (c) == ' ') +#define l_isspace(c) ((c) == '\t' || (c) == ' ' || (c) == '\n') int readconf_line(FILE *f, char *line, int len, char *argv[], int num) {