aboutsummaryrefslogtreecommitdiffstats
path: root/vt100
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-06-04 19:31:53 -0400
committerJesse Luehrs <doy@tozt.net>2016-06-04 19:35:53 -0400
commit0ae4955ccca2d30c90800f9a313298be0fb4266b (patch)
tree63202200bfa3d42b69a2fba912d914007ea93c6a /vt100
parentf41c57028f8c3a0f27c46991d5081111c9daf6ec (diff)
downloadlibvt100-python-0ae4955ccca2d30c90800f9a313298be0fb4266b.tar.gz
libvt100-python-0ae4955ccca2d30c90800f9a313298be0fb4266b.zip
bump libvt100
Diffstat (limited to 'vt100')
-rw-r--r--vt100/__init__.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/vt100/__init__.py b/vt100/__init__.py
index 8738333..cf31b05 100644
--- a/vt100/__init__.py
+++ b/vt100/__init__.py
@@ -110,8 +110,6 @@ class vt100_grid(Structure):
("_cur", vt100_loc),
("_max", vt100_loc),
("_saved", vt100_loc),
- ("_selection_start", vt100_loc),
- ("_selection_end", vt100_loc),
("_scroll_top", c_int),
("_scroll_bottom", c_int),
("_row_count", c_int),
@@ -143,7 +141,6 @@ class vt100_screen(Structure):
("_audible_bell", c_ubyte, 1),
("_update_title", c_ubyte, 1),
("_update_icon_name", c_ubyte, 1),
- ("_has_selection", c_ubyte, 1),
("_dirty", c_ubyte, 1),
("_custom_scrollback_length", c_ubyte, 1),
]