summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2026-02-12 22:47:16 +0800
committerGitHub <[email protected]>2026-02-12 22:47:16 +0800
commit738cd3892cedd30f2fc5291dba8de21e50fbf38f (patch)
tree186a6a59e62482ca0fcdf4761cd4307ba5aabad0
parent20e2dbc9a5c488745be91f4a21730f9396bd12db (diff)
parent9bef17593093356600fcf1eab8ff1b18606a9624 (diff)
Merge pull request #7318 from xmake-io/string
update tbox to fix tolower/toupper
m---------core/src/tbox/tbox0
-rw-r--r--core/src/xmake/string/lower.c2
2 files changed, 1 insertions, 1 deletions
diff --git a/core/src/tbox/tbox b/core/src/tbox/tbox
-Subproject 766ccfcbbdb28ed14a4a3e8babd573fc32a4d03
+Subproject ef851bcb6589b6092f5bd3fca4625631237f9bd
diff --git a/core/src/xmake/string/lower.c b/core/src/xmake/string/lower.c
index ef43f2385..71f8408dc 100644
--- a/core/src/xmake/string/lower.c
+++ b/core/src/xmake/string/lower.c
@@ -59,7 +59,7 @@ tb_int_t xm_string_lower(lua_State *lua) {
// to lower
tb_long_t real_size = tb_charset_utf8_tolower(buffer, size);
-
+
// push result
if (real_size >= 0) {
lua_pushlstring(lua, buffer, real_size);