summaryrefslogtreecommitdiff
path: root/src/perl/textui
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-08-09 10:26:02 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-08-09 10:26:02 +0000
commit33fbc0a069f9c7847a93fc8fa30759b6844b5c03 (patch)
treecfa5e5a67299513373e18f0a90d95453d8b34ca9 /src/perl/textui
parent01d3e74f63547339687f4fa6fbb3ea2cdb6c9837 (diff)
downloadirssi-33fbc0a069f9c7847a93fc8fa30759b6844b5c03.zip
Removed some extra ';' chars which made it not compile with perl 5.00x.
textbuffer_get_lines() now actually returns the value. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1734 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/textui')
-rw-r--r--src/perl/textui/TextBufferView.xs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/perl/textui/TextBufferView.xs b/src/perl/textui/TextBufferView.xs
index 70c04165..c9bddb72 100644
--- a/src/perl/textui/TextBufferView.xs
+++ b/src/perl/textui/TextBufferView.xs
@@ -32,7 +32,7 @@ void
textbuffer_view_clear(view)
Irssi::TextUI::TextBufferView view
-void
+Irssi::TextUI::Line
textbuffer_view_get_lines(view)
Irssi::TextUI::TextBufferView view
@@ -72,12 +72,12 @@ textbuffer_view_set_bookmark(view, name, line)
Irssi::TextUI::Line line
void
-textbuffer_view_set_bookmark_bottom(view, name);
+textbuffer_view_set_bookmark_bottom(view, name)
Irssi::TextUI::TextBufferView view
char *name
Irssi::TextUI::Line
-textbuffer_view_get_bookmark(view, name);
+textbuffer_view_get_bookmark(view, name)
Irssi::TextUI::TextBufferView view
char *name