This commit is contained in:
Kovid Goyal 2021-02-15 21:27:52 +05:30
parent ff1b0a7e1b
commit 275b8ce2e7
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -2332,7 +2332,12 @@ WRAP0(carriage_return)
WRAP2(resize, 1, 1) WRAP2(resize, 1, 1)
WRAP2(set_margins, 1, 1) WRAP2(set_margins, 1, 1)
WRAP0(rescale_images) WRAP0(rescale_images)
WRAP0(current_key_encoding_flags)
static PyObject*
current_key_encoding_flags(Screen *self, PyObject *args UNUSED) {
unsigned long ans = screen_current_key_encoding_flags(self);
return PyLong_FromUnsignedLong(ans);
}
static PyObject* static PyObject*
start_selection(Screen *self, PyObject *args) { start_selection(Screen *self, PyObject *args) {