1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-23 01:32:22 -05:00

In do_an_re() put WORD_CHANNEL before WORD_HOST. fixes #440

This commit is contained in:
RichardHitt 2013-04-19 12:41:49 -07:00
parent 3994126a09
commit e17a9c6503

View File

@ -316,8 +316,8 @@ do_an_re(const char *word,int *start, int *end, int *type)
{ {
{ re_email, WORD_EMAIL }, { re_email, WORD_EMAIL },
{ re_url, WORD_URL }, { re_url, WORD_URL },
{ re_host, WORD_HOST },
{ re_channel, WORD_CHANNEL }, { re_channel, WORD_CHANNEL },
{ re_host, WORD_HOST },
{ re_path, WORD_PATH }, { re_path, WORD_PATH },
{ re_nick, WORD_NICK } { re_nick, WORD_NICK }
}; };