- Timestamp:
- 2014-02-28T23:14:11Z (11 years ago)
- Branches:
- master
- Children:
- 35987a1
- Parents:
- 6ae1056 (diff), cb90dc9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
r6ae1056 r2e815e5 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.