summaryrefslogtreecommitdiff
path: root/src/perl/textui
diff options
context:
space:
mode:
authorEmanuele Giaquinta <exg@irssi.org>2008-12-11 20:59:21 +0000
committerexg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564>2008-12-11 20:59:21 +0000
commitfeb95100cee0adaa7a90ea9aaa93be32a90095e4 (patch)
tree1470a2d0dd070134291b528cd2a3fd92be292464 /src/perl/textui
parentf9f031826fb056b7fd9203e424a9dfb7ab095beb (diff)
downloadirssi-feb95100cee0adaa7a90ea9aaa93be32a90095e4.zip
Remove ypos field of TEXT_BUFFER_VIEW_REC, it is used to compute the row
position where to draw a new line and if the view is at the bottom of the textbuffer, but the same information can be computed more easily by other means. git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4964 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/textui')
-rw-r--r--src/perl/textui/TextUI.xs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/perl/textui/TextUI.xs b/src/perl/textui/TextUI.xs
index 67c4c87b..6dbbc959 100644
--- a/src/perl/textui/TextUI.xs
+++ b/src/perl/textui/TextUI.xs
@@ -35,8 +35,6 @@ static void perl_text_buffer_view_fill_hash(HV *hv, TEXT_BUFFER_VIEW_REC *view)
hv_store(hv, "longword_noindent", 17, newSViv(view->longword_noindent), 0);
hv_store(hv, "scroll", 6, newSViv(view->scroll), 0);
- hv_store(hv, "ypos", 4, newSViv(view->ypos), 0);
-
hv_store(hv, "startline", 9, plain_bless(view->startline, "Irssi::TextUI::Line"), 0);
hv_store(hv, "subline", 7, newSViv(view->subline), 0);