0
0
mirror of https://github.com/vim/vim.git synced 2025-10-28 09:27:14 -04:00

patch 9.1.1372: style: braces issues in various files

Problem:  style: braces issues in various files
Solution: fix style (Hirohito Higashi)

closes: #17277

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Hirohito Higashi
2025-05-08 22:58:31 +02:00
committed by Christian Brabandt
parent 19e1dd6b6a
commit a4a00a7ad0
9 changed files with 26 additions and 12 deletions

View File

@@ -606,7 +606,8 @@ uc_list(char_u *name, size_t name_len)
msg_outtrans_attr(cmd->uc_name, HL_ATTR(HLF_D));
len = (int)cmd->uc_namelen + 4;
do {
do
{
msg_putchar(' ');
++len;
} while (len < 22);
@@ -626,7 +627,8 @@ uc_list(char_u *name, size_t name_len)
case (EX_EXTRA|EX_NOSPC|EX_NEEDARG): IObuff[len++] = '1'; break;
}
do {
do
{
IObuff[len++] = ' ';
} while (len < 5 - over);
@@ -649,7 +651,8 @@ uc_list(char_u *name, size_t name_len)
IObuff[len++] = '.';
}
do {
do
{
IObuff[len++] = ' ';
} while (len < 8 - over);
@@ -663,7 +666,8 @@ uc_list(char_u *name, size_t name_len)
break;
}
do {
do
{
IObuff[len++] = ' ';
} while (len < 13 - over);
@@ -688,7 +692,8 @@ uc_list(char_u *name, size_t name_len)
#endif
}
do {
do
{
IObuff[len++] = ' ';
} while (len < 25 - over);