diff options
Diffstat (limited to 'appl/cmd/m4.b')
| -rw-r--r-- | appl/cmd/m4.b | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/cmd/m4.b b/appl/cmd/m4.b index 39558384..bc992b4f 100644 --- a/appl/cmd/m4.b +++ b/appl/cmd/m4.b @@ -288,7 +288,7 @@ isname(s: string): int isalpha(c: int): int { - return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c == '_' || c > 16r80; + return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c == '_' || c > 16rA0; } hash(name: string): int |
