diff kitten: Fix default foreground/background colors not being restored when kitten quits. Fixes #637

This commit is contained in:
Kovid Goyal
2018-06-14 23:25:13 +05:30
parent 9f51506422
commit 82f9f002bd
6 changed files with 51 additions and 2 deletions

View File

@@ -139,6 +139,8 @@ void screen_erase_characters(Screen *self, unsigned int count);
void screen_set_margins(Screen *self, unsigned int top, unsigned int bottom);
void screen_change_charset(Screen *, uint32_t to);
void screen_handle_cmd(Screen *, PyObject *cmd);
void screen_push_dynamic_colors(Screen *);
void screen_pop_dynamic_colors(Screen *);
void screen_handle_print(Screen *, PyObject *cmd);
void screen_designate_charset(Screen *, uint32_t which, uint32_t as);
void screen_use_latin1(Screen *, bool);