diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2016-09-25 14:06:24 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2016-09-25 14:11:30 +0200 |
commit | 16d10f574bca429b872b8c2f055a127a9fc9a1ba (patch) | |
tree | 4b5beb1e23f480cb48dd3b5441a10a60c2468ec7 | |
parent | 4cefa5ab1b5c89583d66c466bea00bc58c8dddfd (diff) | |
download | xK-16d10f574bca429b872b8c2f055a127a9fc9a1ba.tar.gz xK-16d10f574bca429b872b8c2f055a127a9fc9a1ba.tar.xz xK-16d10f574bca429b872b8c2f055a127a9fc9a1ba.zip |
degesch: simplify highlight detection
-rw-r--r-- | degesch.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -5932,16 +5932,17 @@ irc_is_highlight (struct server *s, const char *message) formatter_free (&f); // Well, this is rather crude but it should make most users happy. - // Ideally we could do this at least in proper Unicode. - char *copy = irc_to_utf8 (stripped.str); + // We could do this in proper Unicode but that's two more conversions per + // message when both the nickname and the message are likely valid UTF-8. + char *copy = str_steal (&stripped); cstr_transform (copy, s->irc_tolower); - str_free (&stripped); char *nick = xstrdup (s->irc_user->nickname); cstr_transform (nick, s->irc_tolower); // Special characters allowed in nicknames by RFC 2812: []\`_^{|} and - // Also excluded from the ASCII: common user channel prefixes: +%@&~ + // XXX: why did I exclude those? It won't match when newbies use them. const char *delimiters = ",.;:!?()<>/=#$* \t\r\n\v\f\"'"; bool result = false; |