patch 9.2.0003: tests: invalid indent in message.c
Commit:
https://github.com/vim/vim/commit/9f76adeed8bcf25cf07093d5d5485195b1a2c0e6
Author: Christian Brabandt <[email protected]>
Date: Sun Feb 15 15:35:37 2026 +0000
patch 9.2.0003: tests: invalid indent in message.c
Problem: tests: invalid indent in message.c
(after: v9.2.0002)
Solution: Use tabs for indent
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/src/message.c b/src/message.c
index 192442ab4..78e5f3073 100644
--- a/src/message.c
+++ b/src/message.c
@@ -2019,15 +2019,15 @@ str2specialbuf(char_u *sp, char_u *buf, int len)
*buf = NUL;
while (*sp)
{
- s = str2special(&sp, FALSE, FALSE);
- s_len = STRLEN(s);
- if (buf_len + s_len < (size_t)len)
- {
- STRCPY(buf + buf_len, s);
- buf_len += s_len;
- }
- else
- break;
+ s = str2special(&sp, FALSE, FALSE);
+ s_len = STRLEN(s);
+ if (buf_len + s_len < (size_t)len)
+ {
+ STRCPY(buf + buf_len, s);
+ buf_len += s_len;
+ }
+ else
+ break;
}
}
diff --git a/src/version.c b/src/version.c
index 0b6275096..6b8c29b0c 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 */
+/**/
+ 3,
/**/
2,
/**/
--
--
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/E1vreIy-00Ddnh-JB%40256bit.org.