diff options
author | Timo Sirainen <cras@irssi.org> | 2001-11-18 19:01:47 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-11-18 19:01:47 +0000 |
commit | 8e20972f4fb5f60c832c88fbc9c583420b27b80f (patch) | |
tree | 8962cb297f1bd363716cdc3981ae0c043847497a /src/perl/ui | |
parent | 1bc6c723ed1983ee4c4c57094785b6bd6b6feb81 (diff) | |
download | irssi-8e20972f4fb5f60c832c88fbc9c583420b27b80f.zip |
Irssi::Server::print()'s level parameter wasn't optional like in other
print()s.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2061 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/ui')
-rw-r--r-- | src/perl/ui/Window.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/ui/Window.xs b/src/perl/ui/Window.xs index 322be79c..afe523c4 100644 --- a/src/perl/ui/Window.xs +++ b/src/perl/ui/Window.xs @@ -107,7 +107,7 @@ CODE: perl_command(cmd, server, NULL); void -print(server, channel, str, level) +print(server, channel, str, level=MSGLEVEL_CLIENTNOTICE) Irssi::Server server char *channel char *str |