Commit: patch 9.2.0172: Missing semicolon in os_mac_conv.c

1 view
Skip to first unread message

Christian Brabandt

unread,
Mar 15, 2026, 11:47:04 AM (8 days ago) Mar 15
to vim...@googlegroups.com
patch 9.2.0172: Missing semicolon in os_mac_conv.c

Commit: https://github.com/vim/vim/commit/a72926fa5188f3f91e439bdd539bb92d8028969c
Author: Yasuhiro Matsumoto <matt...@gmail.com>
Date: Sun Mar 15 15:35:01 2026 +0000

patch 9.2.0172: Missing semicolon in os_mac_conv.c

Problem: Missing semicolon in os_mac_conv.c (after v9.2.0168)
Solution: Add it (Yasuhiro Matsumoto).

The missing semicolon was introduced in patch 9.2.0168
(b00f441e6), which breaks the macOS build.

closes: #19695

Signed-off-by: Yasuhiro Matsumoto <matt...@gmail.com>
Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/src/os_mac_conv.c b/src/os_mac_conv.c
index 8cfce972a..7327cba9d 100644
--- a/src/os_mac_conv.c
+++ b/src/os_mac_conv.c
@@ -354,7 +354,7 @@ mac_utf16_to_enc(
}
else
{
- int len = utf8_len
+ int len = utf8_len;
result = string_convert(&conv, utf8_str, &len);
utf8_len = len;
vim_free(utf8_str);
diff --git a/src/version.c b/src/version.c
index 611c67944..bac40781c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -734,6 +734,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 172,
/**/
171,
/**/
Reply all
Reply to author
Forward
0 new messages