diff options
Diffstat (limited to 'src/nvim/arabic.h')
-rw-r--r-- | src/nvim/arabic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/arabic.h b/src/nvim/arabic.h index 6c4529a93c..a42da852ef 100644 --- a/src/nvim/arabic.h +++ b/src/nvim/arabic.h @@ -2,7 +2,7 @@ #define NVIM_ARABIC_H /// Whether c belongs to the range of Arabic characters that might be shaped. -static inline int arabic_char(int c) +static inline bool arabic_char(int c) { // return c >= a_HAMZA && c <= a_MINI_ALEF; return c >= 0x0621 && c <= 0x0670; |