summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJilles Tjoelker <jilles@irssi.org>2009-02-28 18:02:48 +0000
committerjilles <jilles@dbcabf3a-b0e7-0310-adc4-f8d773084564>2009-02-28 18:02:48 +0000
commit25b3a531bef219ac6b60a13496eb5dae61510339 (patch)
treef4cee5536fcf2b698944d6ef9c83ed4f496a4461 /src
parent2dd265ef395db11173d19a4f026bc6076ababf00 (diff)
downloadirssi-25b3a531bef219ac6b60a13496eb5dae61510339.zip
Once a second seems sufficient for the expando timer.
These seem to change once a second at most, typically. git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5025 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-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 bbebe993..c27446da 100644
--- a/src/core/expandos.c
+++ b/src/core/expandos.c
@@ -693,7 +693,7 @@ void expandos_init(void)
read_settings();
- timer_tag = g_timeout_add(500, (GSourceFunc) sig_timer, NULL);
+ timer_tag = g_timeout_add(1000, (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);