From e5c9dc37dc126c16cd51fcc4a43d8636164636c1 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 21 Oct 2001 11:06:58 +0000 Subject: [PATCH] Check time changes every half a second instead of every second. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1874 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/core/expandos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/expandos.c b/src/core/expandos.c index 4659f5ac..fd4ee5e6 100644 --- a/src/core/expandos.c +++ b/src/core/expandos.c @@ -612,7 +612,7 @@ void expandos_init(void) read_settings(); - timer_tag = g_timeout_add(1000, (GSourceFunc) sig_timer, NULL); + timer_tag = g_timeout_add(500, (GSourceFunc) sig_timer, NULL); signal_add("message public", (SIGNAL_FUNC) sig_message_public); signal_add("message private", (SIGNAL_FUNC) sig_message_private); signal_add("message own_private", (SIGNAL_FUNC) sig_message_own_private);