diff options
Diffstat (limited to 'src/core/commands.c')
-rw-r--r-- | src/core/commands.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/commands.c b/src/core/commands.c index da66a73b..12131d10 100644 --- a/src/core/commands.c +++ b/src/core/commands.c @@ -610,6 +610,10 @@ static void event_command(const char *line, SERVER_REC *server, void *item) expand_aliases = FALSE; } + /* ^command hides the output - we'll do this at fe-common but + we have to skip the ^ char here.. */ + if (*line == '^') line++; + parse_command(line, expand_aliases, server, item); } |