projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
285e4dc
)
Add cast to avoid negative arguments to isalnum.
author
Taylor R Campbell
<campbell@mumble.net>
Sun, 6 Oct 2013 22:21:13 +0000
(22:21 +0000)
committer
Taylor R Campbell
<campbell@mumble.net>
Sun, 6 Oct 2013 22:21:13 +0000
(22:21 +0000)
src/microcode/extract-liarc-decls.c
patch
|
blob
|
history
diff --git
a/src/microcode/extract-liarc-decls.c
b/src/microcode/extract-liarc-decls.c
index 7323d5bd2665c95c73c2fb0b2e61da7b1765ce9d..e34824b21bd21297fcb91c6175d295299c57cc6c 100644
(file)
--- a/
src/microcode/extract-liarc-decls.c
+++ b/
src/microcode/extract-liarc-decls.c
@@
-167,7
+167,7
@@
mangle_line (const char * line, const char * prefix)
static const char *
skip_name (const char * scan)
{
- while ((isalnum (
*scan
)) || ((*scan) == '_'))
+ while ((isalnum (
(unsigned char) (*scan)
)) || ((*scan) == '_'))
write_char (*scan++);
return (scan);
}