summaryrefslogtreecommitdiff
path: root/src/fe-common/core/fe-ignore.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-05-11 13:19:16 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-05-11 13:19:16 +0000
commitc7274cb00e46ab55adfaa2cc7aae8c30709b9905 (patch)
tree2dbfdb753fba67c5fca709d382b3c72d1935e467 /src/fe-common/core/fe-ignore.c
parent912cf63c076a5935212aea28a0e27d4da4e15273 (diff)
downloadirssi-c7274cb00e46ab55adfaa2cc7aae8c30709b9905.zip
/IGNORE now defaults to ALL level
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1475 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core/fe-ignore.c')
-rw-r--r--src/fe-common/core/fe-ignore.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fe-common/core/fe-ignore.c b/src/fe-common/core/fe-ignore.c
index 7c10893f..c291e847 100644
--- a/src/fe-common/core/fe-ignore.c
+++ b/src/fe-common/core/fe-ignore.c
@@ -84,9 +84,9 @@ static void cmd_ignore_show(void)
}
/* SYNTAX: IGNORE [-regexp | -word] [-pattern <pattern>] [-except] [-replies]
- [-channels <channel>] [-time <secs>] <mask> <levels>
+ [-channels <channel>] [-time <secs>] <mask> [<levels>]
IGNORE [-regexp | -word] [-pattern <pattern>] [-except] [-replies]
- [-time <secs>] <channels> <levels> */
+ [-time <secs>] <channels> [<levels>] */
static void cmd_ignore(const char *data)
{
GHashTable *optlist;
@@ -108,7 +108,8 @@ static void cmd_ignore(const char *data)
patternarg = g_hash_table_lookup(optlist, "pattern");
chanarg = g_hash_table_lookup(optlist, "channels");
- if (*levels == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
+ if (*mask == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
+ if (*levels == '\0') levels = "ALL";
if (active_win->active_server != NULL &&
active_win->active_server->ischannel(mask)) {