diff --git a/src/common/url.c b/src/common/url.c index 6a1d09e8..cefb928b 100644 --- a/src/common/url.c +++ b/src/common/url.c @@ -620,7 +620,8 @@ re_email (void) /* NICK description --- */ /* For NICKPRE see before url_check_word() */ #define NICKHYP "-" -#define NICKLET "a-z" +/* UTF-8 range \u0400-\u04FF for support Cyrillic on some servers */ +#define NICKLET "a-z\u0400-\u04FF" #define NICKDIG "0-9" /* Note for NICKSPE: \\\\ boils down to a single \ */ #define NICKSPE "\\[\\]\\\\`_^{|}"