summaryrefslogtreecommitdiff
path: root/src/core/expandos.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-10-21 11:06:58 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-10-21 11:06:58 +0000
commite5c9dc37dc126c16cd51fcc4a43d8636164636c1 (patch)
tree9adff2e85967289ffbb33c3856189a7a4470aacf /src/core/expandos.c
parentec81d7b6fe8630fefc840fdadb67e7acd114ab4f (diff)
downloadirssi-e5c9dc37dc126c16cd51fcc4a43d8636164636c1.zip
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
Diffstat (limited to 'src/core/expandos.c')
-rw-r--r--src/core/expandos.c2
1 files changed, 1 insertions, 1 deletions
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);