diff options
author | Timo Sirainen <cras@irssi.org> | 2000-09-27 00:17:23 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-09-27 00:17:23 +0000 |
commit | 833bf37831325d2da3c345d253a38c6b33063cd1 (patch) | |
tree | e32995bdd102dcfc42cf4ddd0bb3d34f9e4728f3 | |
parent | b363402b5cd46132d676db33725f24c7f945ffe7 (diff) | |
download | irssi-833bf37831325d2da3c345d253a38c6b33063cd1.zip |
Show help with "clientcrap" message level, not "never".
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@681 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/core/fe-core-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-core-commands.c b/src/fe-common/core/fe-core-commands.c index bb5711c9..1478e73a 100644 --- a/src/fe-common/core/fe-core-commands.c +++ b/src/fe-common/core/fe-core-commands.c @@ -130,7 +130,7 @@ static int show_help_rec(COMMAND_REC *cmd) recvlen = read(f, tmpbuf, sizeof(tmpbuf)); ret = line_split(tmpbuf, recvlen, &str, &buffer); - if (ret > 0) printtext(NULL, NULL, MSGLEVEL_NEVER, str); + if (ret > 0) printtext(NULL, NULL, MSGLEVEL_CLIENTCRAP, str); } while (ret > 0); line_split_free(buffer); |