Allow commerce at in requestable files

This commit is contained in:
Alexander S. Aganichev 2001-12-25 08:09:41 +00:00
parent 3b6023e839
commit cb06e20b46

View File

@ -32,7 +32,7 @@
// ------------------------------------------------------------------
char CFG__frqinvfilechars[40] = { "\"()+,.\\/:;<=>[]| @" };
char CFG__frqinvfilechars[40] = { "\"()+,.\\/:;<=>[]| " };
char CFG__frqskipwordchars[40] = { "0123456789-[" };
inline bool invalidfilechar(char ch) { return not isascii(ch&0xff) or strchr(CFG__frqinvfilechars, ch); }