Fix scrollback_lines opt not being used

This commit is contained in:
Kovid Goyal
2016-11-21 09:07:52 +05:30
parent 7b1591113a
commit 5681138243
5 changed files with 35 additions and 18 deletions

View File

@@ -367,8 +367,8 @@ static PyMethodDef methods[] = {
};
static PyMemberDef members[] = {
{"xnum", T_UINT, offsetof(LineBuf, xnum), 0, "xnum"},
{"ynum", T_UINT, offsetof(LineBuf, ynum), 0, "ynum"},
{"xnum", T_UINT, offsetof(LineBuf, xnum), READONLY, "xnum"},
{"ynum", T_UINT, offsetof(LineBuf, ynum), READONLY, "ynum"},
{NULL} /* Sentinel */
};