mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-22 09:12:22 -05:00
parent
658f30ec43
commit
36a8ba126c
@ -207,10 +207,9 @@ scrollback_shrink (session *sess)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
scrollback_save (session *sess, char *text)
|
scrollback_save (session *sess, char *text, time_t stamp)
|
||||||
{
|
{
|
||||||
char *buf;
|
char *buf;
|
||||||
time_t stamp;
|
|
||||||
int len;
|
int len;
|
||||||
|
|
||||||
if (sess->type == SESS_SERVER && prefs.hex_gui_tab_server == 1)
|
if (sess->type == SESS_SERVER && prefs.hex_gui_tab_server == 1)
|
||||||
@ -238,6 +237,7 @@ scrollback_save (session *sess, char *text)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!stamp)
|
||||||
stamp = time(0);
|
stamp = time(0);
|
||||||
if (sizeof (stamp) == 4) /* gcc will optimize one of these out */
|
if (sizeof (stamp) == 4) /* gcc will optimize one of these out */
|
||||||
buf = g_strdup_printf ("T %d ", (int) stamp);
|
buf = g_strdup_printf ("T %d ", (int) stamp);
|
||||||
@ -831,7 +831,7 @@ PrintTextTimeStamp (session *sess, char *text, time_t timestamp)
|
|||||||
}
|
}
|
||||||
|
|
||||||
log_write (sess, text, timestamp);
|
log_write (sess, text, timestamp);
|
||||||
scrollback_save (sess, text);
|
scrollback_save (sess, text, timestamp);
|
||||||
fe_print_text (sess, text, timestamp, FALSE);
|
fe_print_text (sess, text, timestamp, FALSE);
|
||||||
g_free (text);
|
g_free (text);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user