mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
/^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:
parent
c451c94c68
commit
b9cfabc419
2 changed files with 34 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue