diff --git a/src/lib9/needsrcquote.c b/src/lib9/needsrcquote.c index f4cf460c..a9e62bc6 100644 --- a/src/lib9/needsrcquote.c +++ b/src/lib9/needsrcquote.c @@ -4,7 +4,7 @@ int needsrcquote(int c) { - if(c <= ' ') + if(c <= ' ' || c >= 0x80) return 1; if(strchr("`^#*[]=|\\?${}()'<>&;", c)) return 1;