1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 22:36:38 +02:00

irc: use extended regex in command /list

This commit is contained in:
Sebastien Helleu
2012-01-06 13:26:23 +01:00
parent 80d1a52304
commit 82a9ed3f9c
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -2246,7 +2246,7 @@ irc_command_list (void *data, struct t_gui_buffer *buffer, int argc,
if (ptr_server->cmd_list_regexp)
{
if ((ret = regcomp (ptr_server->cmd_list_regexp, ptr_regex,
REG_NOSUB | REG_ICASE)) != 0)
REG_NOSUB | REG_ICASE | REG_EXTENDED)) != 0)
{
regerror (ret, ptr_server->cmd_list_regexp,
buf, sizeof(buf));