From b83315cb810e1cab3dc708c83c1e8a644e84acda Mon Sep 17 00:00:00 2001 From: Jacob Sandlund Date: Thu, 18 Sep 2025 14:26:04 -0400 Subject: [PATCH] set max for unicode grapheme executable --- src/unicode/grapheme.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unicode/grapheme.zig b/src/unicode/grapheme.zig index f3edb58b2..a028e5690 100644 --- a/src/unicode/grapheme.zig +++ b/src/unicode/grapheme.zig @@ -161,7 +161,7 @@ pub fn main() !void { // Set the min and max to control the test range. const min = 0; - const max = std.math.maxInt(u21) + 1; + const max = uucode.config.max_code_point + 1; var state: BreakState = .{}; var uu_state: uucode.grapheme.BreakState = .default;