/^command hides the output of the command, it's not written to log

either. Good for sending passwords for example.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@416 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-02 17:57:10 +00:00 committed by cras
commit b9cfabc419
2 changed files with 34 additions and 1 deletions

View file

@ -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);
}