From cb06e20b46c2cd681b585291507e0ae35ccdeceb Mon Sep 17 00:00:00 2001 From: "Alexander S. Aganichev" Date: Tue, 25 Dec 2001 08:09:41 +0000 Subject: [PATCH] Allow commerce at in requestable files --- golded3/gefile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/golded3/gefile.cpp b/golded3/gefile.cpp index a6f6591..f66163a 100644 --- a/golded3/gefile.cpp +++ b/golded3/gefile.cpp @@ -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); }