From acf4df40a25200f2290302f61a48e5a8bca69909 Mon Sep 17 00:00:00 2001 From: Zmicek123 Date: Fri, 19 Nov 2021 14:42:48 +0300 Subject: [PATCH] issue 2507 add UTF Cyrillic --- src/common/url.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 "\\[\\]\\\\`_^{|}"