From 66895952775b8ff09149f625f869e095e9e8095c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 29 Aug 2017 20:37:24 +0530 Subject: [PATCH] Dont use Py_UCS4 for char_type --- kitty/data-types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/data-types.h b/kitty/data-types.h index dd62615c0..4001f2ed6 100644 --- a/kitty/data-types.h +++ b/kitty/data-types.h @@ -22,7 +22,7 @@ #define xstr(s) str(s) #define str(s) #s -typedef Py_UCS4 char_type; +typedef uint32_t char_type; typedef uint32_t color_type; typedef uint32_t combining_type; typedef unsigned int index_type;