summaryrefslogtreecommitdiff
path: root/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf')
-rw-r--r--Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf.c16
-rw-r--r--Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf2gf.w8
2 files changed, 12 insertions, 12 deletions
diff --git a/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf.c b/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf.c
index 1491a025727..dedb9650b21 100644
--- a/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf.c
+++ b/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf.c
@@ -378,7 +378,7 @@ match(reg const char *lp, reg const char *sp)
lp++;
sp++;
}
- return (*lp == '\0' || isspace(*lp)) && *sp == '\0';
+ return (*lp == '\0' || isspace((unsigned char)*lp)) && *sp == '\0';
}
#ifdef NO_STRDUP
@@ -407,12 +407,12 @@ reg char *tp;
prop = NEW(PROPERTY);
tp = tmp;
- while (*lp != '\0' && ! isspace(*lp))
+ while (*lp != '\0' && ! isspace((unsigned char)*lp))
*tp++ = *lp++;
*tp = '\0';
prop->prop_name = strdup(tmp);
- while (*lp != '\0' && isspace(*lp))
+ while (*lp != '\0' && isspace((unsigned char)*lp))
lp++;
tp = tmp;
@@ -423,9 +423,9 @@ reg char *tp;
}
else
for (;;) {
- while (*lp != '\0' && ! isspace(*lp))
+ while (*lp != '\0' && ! isspace((unsigned char)*lp))
*tp++ = *lp++;
- while (*lp != '\0' && isspace(*lp))
+ while (*lp != '\0' && isspace((unsigned char)*lp))
lp++;
if (*lp == '\0')
break;
@@ -765,9 +765,9 @@ static const char *
skip_word(int n, const char *s)
{
for ( ; n > 0; n--) {
- while (*s != '\0' && ! isspace(*s))
+ while (*s != '\0' && ! isspace((unsigned char)*s))
s++;
- while (*s != '\0' && isspace(*s))
+ while (*s != '\0' && isspace((unsigned char)*s))
s++;
}
return s;
@@ -869,7 +869,7 @@ get_line(char *buf, int len, FILE *f)
}
if (c == '\n' || c == '\r') {
/* trim trailing space */
- while (bp > buf && isspace(*(bp-1)))
+ while (bp > buf && isspace((unsigned char)*(bp-1)))
bp--;
*bp = '\0';
return TRUE;
diff --git a/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf2gf.w b/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf2gf.w
index ca4f3f0856d..20663537a94 100644
--- a/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf2gf.w
+++ b/Build/source/texk/cjkutils/cjkutils-4.8.3/hbf2gf/hbf2gf.w
@@ -2330,7 +2330,7 @@ static int fsearch(const char *search_string)
do
{Q = search_string;
- p = tolower(*Q);
+ p = tolower((unsigned char)*Q);
Ch = fgetc(config);
ch = tolower(Ch);
while(!(ch == p && old_ch == '\n') && Ch != EOF)
@@ -2347,7 +2347,7 @@ static int fsearch(const char *search_string)
/* there must be a space or a tab stop after the keyword */
goto success;
Ch = fgetc(config);
- if(tolower(Ch) != tolower(*Q))
+ if(tolower(Ch) != tolower((unsigned char)*Q))
break;
}
}
@@ -2410,14 +2410,14 @@ directories for the \.{pk\_directory} and the \.{tfm\_directory} keywords.
}
while(*P == '{') @q } @>
P++;
- if(!(isalpha(*P) || *P == '_'))
+ if(!(isalpha((unsigned char)*P) || *P == '_'))
{fprintf(stderr,@/
"Invalid environment variable name in configuration file\n");
exit(1);
}
*(env_p++) = *(P++);
while(*P)
- {if(isalnum(*P) || *P == '_')
+ {if(isalnum((unsigned char)*P) || *P == '_')
*(env_p++) = *(P++);
else
{@q { @> while(*P == '}')