X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=lib-src%2Fellcc.c;fp=lib-src%2Fellcc.c;h=c8bfb8c7a868a0a01faa7e337b52aaf3c4880cb8;hp=5168a11a7a40cf36cb430188dc565fb7a1fdeb5f;hb=716cfba952c1dc0d2cf5c968971f3780ba728a89;hpb=d74da9234cc42e8018b1500105c3892a5c46d5e3 diff --git a/lib-src/ellcc.c b/lib-src/ellcc.c index 5168a11..c8bfb8c 100644 --- a/lib-src/ellcc.c +++ b/lib-src/ellcc.c @@ -359,7 +359,7 @@ add_to_argv (CONST char *str) switch (sm) { case 0: /* Start of case - string leading whitespace */ - if (isspace (*str)) + if (isspace ((unsigned char) *str)) str++; else { @@ -369,7 +369,7 @@ add_to_argv (CONST char *str) break; case 1: /* Non-whitespace character. Mark the start */ - if (isspace (*str)) + if (isspace ((unsigned char) *str)) { /* Reached the end of the argument. Add it. */ int l = str-s;