diff options
author | Timo Sirainen <cras@irssi.org> | 2000-08-12 21:12:33 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-08-12 21:12:33 +0000 |
commit | c036632b8f44e3fbb4072505f32d71c7a3caabb8 (patch) | |
tree | a014688c286c5ce7ddd509a0e7624793871df5e5 | |
parent | 9e5926c2072422513ccb61af542bb1986608aed1 (diff) | |
download | irssi-c036632b8f44e3fbb4072505f32d71c7a3caabb8.zip |
removed log rotating stuff.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@593 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/perl/xs/Irssi-log.xs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/perl/xs/Irssi-log.xs b/src/perl/xs/Irssi-log.xs index b0ce8cf0..06b72d0b 100644 --- a/src/perl/xs/Irssi-log.xs +++ b/src/perl/xs/Irssi-log.xs @@ -27,18 +27,6 @@ log_write(item, level, str) int level char *str -char * -log_rotate2str(rotate) - int rotate -CODE: - RETVAL = (char *) log_rotate2str(rotate); -OUTPUT: - RETVAL - -int -log_str2rotate(str) - char *str - #******************************* MODULE = Irssi PACKAGE = Irssi::Log PREFIX = log_ #******************************* @@ -56,7 +44,6 @@ PPCODE: hv_store(hv, "opened", 6, newSViv(log->opened), 0); hv_store(hv, "level", 5, newSViv(log->level), 0); hv_store(hv, "last", 4, newSViv(log->last), 0); - hv_store(hv, "rotate", 6, new_pv((char *) log_rotate2str(log->rotate)), 0); hv_store(hv, "autoopen", 8, newSViv(log->autoopen), 0); hv_store(hv, "temp", 4, newSViv(log->temp), 0); |