From 82a9ed3f9c817fa4439062ae1a3fa86de351783b Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Fri, 6 Jan 2012 13:26:23 +0100 Subject: irc: use extended regex in command /list --- src/plugins/irc/irc-command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/irc') diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index f7df667f2..03dc79c51 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -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)); -- cgit v1.2.3