diff options
author | Timo Sirainen <cras@irssi.org> | 2002-11-10 10:14:18 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-11-10 10:14:18 +0000 |
commit | 902280eca78875a82619770cc94afe88ae418a8c (patch) | |
tree | 7e3a597cc4047f7dde4ea41df796332427225be5 /src/perl/perl-sources.h | |
parent | 14f3c0c2e5f62b9671a0489b00dac4e6e5b4b8e9 (diff) | |
download | irssi-902280eca78875a82619770cc94afe88ae418a8c.zip |
Irssi::timeout_add(), timeout_add_once() and input_add() were buggy.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2992 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/perl-sources.h')
-rw-r--r-- | src/perl/perl-sources.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/perl/perl-sources.h b/src/perl/perl-sources.h index db165689..a83a65a6 100644 --- a/src/perl/perl-sources.h +++ b/src/perl/perl-sources.h @@ -1,8 +1,8 @@ #ifndef __PERL_SOURCES_H #define __PERL_SOURCES_H -int perl_timeout_add(int msecs, SV *func, SV *data); -int perl_input_add(int source, int condition, SV *func, SV *data); +int perl_timeout_add(int msecs, SV *func, SV *data, int once); +int perl_input_add(int source, int condition, SV *func, SV *data, int once); void perl_source_remove(int tag); /* remove all sources used by script */ |