Add support for emoji presentation when choosing fallback fonts

This commit is contained in:
Kovid Goyal
2018-02-06 11:11:22 +05:30
parent e830b7edf7
commit 96c93fa252
8 changed files with 28 additions and 41 deletions

View File

@@ -331,7 +331,6 @@ PYWRAP1(set_options) {
#define S(name, convert) { GA(name); global_state.opts.name = convert(ret); Py_DECREF(ret); if (PyErr_Occurred()) return NULL; }
S(visual_bell_duration, PyFloat_AsDouble);
S(enable_audio_bell, PyObject_IsTrue);
S(prefer_color_emoji, PyObject_IsTrue);
S(focus_follows_mouse, PyObject_IsTrue);
S(cursor_blink_interval, PyFloat_AsDouble);
S(cursor_stop_blinking_after, PyFloat_AsDouble);