Add last activity keybinding from fedora

This commit is contained in:
TingPing
2012-12-25 00:33:57 -05:00
parent 76680ae41b
commit b37fe23b99
7 changed files with 194 additions and 1 deletions

View File

@@ -302,6 +302,7 @@ is_hilight (char *from, char *text, session *sess, server *serv)
g_free (text);
if (sess != current_tab)
sess->nick_said = TRUE;
lastact_update (sess);
fe_set_hilight (sess);
return 1;
}
@@ -364,6 +365,7 @@ inbound_action (session *sess, char *chan, char *from, char *ip, char *text, int
sess->msg_said = TRUE;
sess->new_data = FALSE;
}
lastact_update (sess);
}
user = userlist_find (sess, from);
@@ -421,6 +423,7 @@ inbound_chanmsg (server *serv, session *sess, char *chan, char *from, char *text
{
sess->msg_said = TRUE;
sess->new_data = FALSE;
lastact_update (sess);
}
user = userlist_find (sess, from);