Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv24194
Modified Files:
perl.c
Log Message:
more perl fixes from Dennis Lambe Jr. (malsyned)
Index: perl.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/perl.c,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- perl.c 2001/11/08 08:20:43 1.66
+++ perl.c 2001/11/13 06:36:27 1.67
@@ -612,7 +612,7 @@
if (!c)
c = new_conversation(nick);
set_convo_gc(c, gc);
- write_to_conv(c, what, WFLAG_SEND, NULL, time((time_t)NULL));
+ write_to_conv(c, what, WFLAG_SEND | (isauto ? WFLAG_AUTO : 0), NULL, time((time_t)NULL));
serv_send_im(c->gc, nick, what, isauto ? IM_FLAG_AWAY : 0);
XSRETURN(0);
}
|