issue 2507 add UTF Cyrillic

This commit is contained in:
Zmicek123 2021-11-19 14:42:48 +03:00
parent 8443755772
commit acf4df40a2

View File

@ -620,7 +620,8 @@ re_email (void)
/* NICK description --- */ /* NICK description --- */
/* For NICKPRE see before url_check_word() */ /* For NICKPRE see before url_check_word() */
#define NICKHYP "-" #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" #define NICKDIG "0-9"
/* Note for NICKSPE: \\\\ boils down to a single \ */ /* Note for NICKSPE: \\\\ boils down to a single \ */
#define NICKSPE "\\[\\]\\\\`_^{|}" #define NICKSPE "\\[\\]\\\\`_^{|}"