patch 9.2.0172: Missing semicolon in os_mac_conv.c
Commit:
https://github.com/vim/vim/commit/a72926fa5188f3f91e439bdd539bb92d8028969c
Author: Yasuhiro Matsumoto <[email protected]>
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 <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
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,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1w1neJ-006qPU-CR%40256bit.org.