]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 9.2.0172: Missing semicolon in os_mac_conv.c v9.2.0172
authorYasuhiro Matsumoto <mattn.jp@gmail.com>
Sun, 15 Mar 2026 15:35:01 +0000 (15:35 +0000)
committerChristian Brabandt <cb@256bit.org>
Sun, 15 Mar 2026 15:39:34 +0000 (15:39 +0000)
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 <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
src/os_mac_conv.c
src/version.c

index 8cfce972a557f0c9a777ad55f95531a9437a57b3..7327cba9df7f31f4915c5eca1cd4a303f4648163 100644 (file)
@@ -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);
index 611c679443f5fb8378e37e07bcf5b259c34ef9dc..bac40781c86e6517776c7be1ec51bb1af0b6cb4e 100644 (file)
@@ -734,6 +734,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    172,
 /**/
     171,
 /**/