From 478059db9c632e4e628bc5cd80a5ecfdcfe07606 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 16 Apr 2024 16:30:32 +0200 Subject: Check lookup[0].lo instead of a magic number --- lib/unicode/prop/uprop_get_hst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/unicode/prop') diff --git a/lib/unicode/prop/uprop_get_hst.c b/lib/unicode/prop/uprop_get_hst.c index 9ebfe1d..90d8d08 100644 --- a/lib/unicode/prop/uprop_get_hst.c +++ b/lib/unicode/prop/uprop_get_hst.c @@ -819,5 +819,5 @@ _MLIB_DEFINE_BSEARCH(enum uprop_hst, lookup, HST_NA) enum uprop_hst uprop_get_hst(rune ch) { - return ch < RUNE_C(0x1100) ? HST_NA : mlib_lookup(ch); + return ch < lookup[0].lo ? HST_NA : mlib_lookup(ch); } -- cgit v1.2.3