Changeset 172aa37f
- Timestamp:
- 2014-02-28T00:53:43Z (11 years ago)
- Branches:
- master
- Children:
- cb90dc9
- Parents:
- 489847f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
r489847f r172aa37f 626 626 irc_user_t *iu = bu->ui_data; 627 627 irc_channel_t *ic = c->ui_data; 628 char * ts = NULL;628 char *wrapped, *ts = NULL; 629 629 630 630 if( ic == NULL ) … … 634 634 ts = irc_format_timestamp( irc, sent_at ); 635 635 636 irc_send_msg( iu, "PRIVMSG", ic->name, msg, ts ); 636 wrapped = word_wrap( msg, 425 ); 637 irc_send_msg( iu, "PRIVMSG", ic->name, wrapped, ts ); 637 638 g_free( ts ); 638 639
Note: See TracChangeset
for help on using the changeset viewer.