diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-01-06 13:26:23 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-01-06 13:26:23 +0100 |
commit | 82a9ed3f9c817fa4439062ae1a3fa86de351783b (patch) | |
tree | 7e2583f2d817f6c18ccdb355010bee7682c26a36 /src/plugins/irc | |
parent | 80d1a5230411562f14bb16ecedbe26265239c411 (diff) | |
download | weechat-82a9ed3f9c817fa4439062ae1a3fa86de351783b.zip |
irc: use extended regex in command /list
Diffstat (limited to 'src/plugins/irc')
-rw-r--r-- | src/plugins/irc/irc-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |