=================================================================== RCS file: /cvs/mandoc/soelim.c,v retrieving revision 1.4 retrieving revision 1.6 diff -u -p -r1.4 -r1.6 --- mandoc/soelim.c 2015/05/21 00:18:52 1.4 +++ mandoc/soelim.c 2021/09/19 18:14:24 1.6 @@ -1,4 +1,4 @@ -/* $Id: soelim.c,v 1.4 2015/05/21 00:18:52 schwarze Exp $ */ +/* $Id: soelim.c,v 1.6 2021/09/19 18:14:24 schwarze Exp $ */ /* * Copyright (c) 2014 Baptiste Daroussin * All rights reserved. @@ -29,7 +29,9 @@ #include #include +#if HAVE_ERR #include +#endif #include #include #include @@ -102,16 +104,16 @@ soelim_file(FILE *f, int flag) } walk = line + 3; - if (!isspace(*walk) && ((flag & C_OPTION) == 0)) { + if (!isspace((unsigned char)*walk) && (flag & C_OPTION) == 0) { printf("%s", line); continue; } - while (isspace(*walk)) + while (isspace((unsigned char)*walk)) walk++; cp = walk; - while (*cp != '\0' && !isspace(*cp)) + while (*cp != '\0' && !isspace((unsigned char)*cp)) cp++; *cp = 0; if (cp < line + linelen)