0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 11:48:54 +02:00

ircd:Ⓜ️🆔 Update grammar with the spec extended user_id character set except \x7F.

This commit is contained in:
Jason Volk 2019-06-08 05:20:23 -07:00
parent e409a45f15
commit 98f759b3f3

View file

@ -57,7 +57,7 @@ struct ircd::m::id::input
// character of a non-historical user_id localpart
const rule<> user_id_char
{
char_(rfc1459::character::charset(rfc1459::character::NICK) + "./=")
char_('\x21', '\x39') | char_('\x3B', '\x7E')
,"user_id character"
};