irc.client: Make to-chat work with sequences

db4
Bruno Deferrari 2009-03-20 10:15:13 -03:00
parent f3577572ec
commit 93a3c18c59
1 changed files with 2 additions and 4 deletions

View File

@ -104,6 +104,7 @@ M: string to-chat
[ to-chat ] [ drop ] if* ;
M: irc-chat to-chat in-messages>> mailbox-put ;
M: sequence to-chat [ to-chat ] with each ;
: unregister-chat ( name -- )
irc> chats>>
@ -123,9 +124,6 @@ M: irc-chat to-chat in-messages>> mailbox-put ;
[ dup irc-channel-chat? [ participants>> key? ] [ 2drop f ] if ]
with filter ;
: to-chats-with-participant ( message nickname -- )
chats-with-participant [ to-chat ] with each ;
: remove-participant-from-all ( nick -- )
dup chats-with-participant [ (remove-participant) ] with each ;
@ -199,7 +197,7 @@ M: irc-message forward-message
M: single-forward forward-message dup forward-name to-chat ;
M: multiple-forward forward-message
dup sender>> to-chats-with-participant ;
dup sender>> chats-with-participant to-chat ;
M: broadcast-forward forward-message
irc> chats>> values [ to-chat ] with each ;