comparison src/perl.c @ 1764:1e0613d9526b

[gaim-migrate @ 1774] I decided to do the time stamp w/ messages thing that Eric put in the TODO list. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 27 Apr 2001 23:26:19 +0000
parents dd78a230aa06
children 193420b4ca39
comparison
equal deleted inserted replaced
1763:5ad0b0c3ea01 1764:1e0613d9526b
508 what = SvPV(ST(1), junk); 508 what = SvPV(ST(1), junk);
509 isauto = SvPV(ST(2), junk); 509 isauto = SvPV(ST(2), junk);
510 c = find_conversation(nick); 510 c = find_conversation(nick);
511 if (!c) 511 if (!c)
512 c = new_conversation(nick); 512 c = new_conversation(nick);
513 write_to_conv(c, what, WFLAG_SEND, NULL); 513 write_to_conv(c, what, WFLAG_SEND, NULL, time((time_t)NULL));
514 serv_send_im(c->gc, nick, what, atoi(isauto)); 514 serv_send_im(c->gc, nick, what, atoi(isauto));
515 } 515 }
516 516
517 XS (XS_GAIM_print_to_chat) 517 XS (XS_GAIM_print_to_chat)
518 { 518 {