From 0ae4955ccca2d30c90800f9a313298be0fb4266b Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 4 Jun 2016 19:31:53 -0400 Subject: bump libvt100 --- libvt100 | 2 +- setup.py | 2 ++ vt100/__init__.py | 3 --- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/libvt100 b/libvt100 index 6a46f7e..bd9fc2b 160000 --- a/libvt100 +++ b/libvt100 @@ -1 +1 @@ -Subproject commit 6a46f7ebe7f6c14f4668b48e77041c942760b994 +Subproject commit bd9fc2ba0396f04df399c1f685aacced84128518 diff --git a/setup.py b/setup.py index f6243f5..9b71360 100644 --- a/setup.py +++ b/setup.py @@ -27,10 +27,12 @@ setup( "vt100module.c", "libvt100/src/screen.c", "libvt100/src/parser.c", + "libvt100/src/unicode-extra.c", ], depends=[ "libvt100/src/screen.h", "libvt100/src/parser.h", + "libvt100/src/unicode-extra.h", "libvt100/src/vt100.h", ], **pkgconfig('glib-2.0') 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), ] -- cgit v1.2.3-54-g00ecf