diff --git a/NEWS b/NEWS index fd095500..e002f958 100644 --- a/NEWS +++ b/NEWS @@ -6,7 +6,8 @@ v1.3.1-an 2021-12-17 Ailin Nemui /UPGRADE (#1357, an#53) v1.3.0-an 2021-11-11 Ailin Nemui - * /SET resolve_reverse_lookup setting was removed (#1135) + * /SET resolve_reverse_lookup setting was removed (#1034, + #1135) * Irssi will try to connect on IPv4 if IPv6 connection failed (#1146). By Shivaram Lingamneni diff --git a/src/perl/textui/TextBufferView.xs b/src/perl/textui/TextBufferView.xs index 43aba4e6..e4cfe674 100644 --- a/src/perl/textui/TextBufferView.xs +++ b/src/perl/textui/TextBufferView.xs @@ -49,14 +49,14 @@ textbuffer_view_scroll_line(view, line) Irssi::TextUI::TextBufferView view Irssi::TextUI::Line line CODE: - textbuffer_view_scroll_line(view, line->line); + textbuffer_view_scroll_line(view, Line(line)); Irssi::TextUI::LineCache textbuffer_view_get_line_cache(view, line) Irssi::TextUI::TextBufferView view Irssi::TextUI::Line line CODE: - RETVAL = textbuffer_view_get_line_cache(view, line->line); + RETVAL = textbuffer_view_get_line_cache(view, Line(line)); OUTPUT: RETVAL @@ -65,7 +65,7 @@ textbuffer_view_remove_line(view, line) Irssi::TextUI::TextBufferView view Irssi::TextUI::Line line CODE: - textbuffer_view_remove_line(view, line->line); + textbuffer_view_remove_line(view, Line(line)); void textbuffer_view_remove_all_lines(view) @@ -82,7 +82,7 @@ textbuffer_view_set_bookmark(view, name, line) char *name Irssi::TextUI::Line line CODE: - textbuffer_view_set_bookmark(view, name, line->line); + textbuffer_view_set_bookmark(view, name, Line(line)); void textbuffer_view_set_bookmark_bottom(view, name)