0
0
mirror of https://github.com/vim/vim.git synced 2025-11-15 23:14:06 -05:00

patch 9.1.1390: style: more wrong indentation

Problem:  style: more wrong indentation
Solution: reformat a few more places
          (Yegappan Lakshmanan)

closes: #17309

Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Yegappan Lakshmanan
2025-05-14 20:31:55 +02:00
committed by Christian Brabandt
parent 08db2f4f28
commit e89aef3f65
29 changed files with 117 additions and 113 deletions

View File

@@ -4396,9 +4396,9 @@ mch_calc_cell_size(struct cellsize *cs_out)
if (retval == -1 || ws.ws_col == 0 || ws.ws_row == 0)
{
cs_out->cs_xpixel = -1;
cs_out->cs_ypixel = -1;
return;
cs_out->cs_xpixel = -1;
cs_out->cs_ypixel = -1;
return;
}
// calculate parent tty's pixel per cell.
@@ -6969,9 +6969,9 @@ mch_expand_wildcards(
}
if (shell_style == STYLE_ECHO)
{
if (strstr((char *)gettail(p_sh), "bash") != NULL)
if (strstr((char *)gettail(p_sh), "bash") != NULL)
shell_style = STYLE_GLOBSTAR;
else if (strstr((char *)gettail(p_sh), "sh") != NULL)
else if (strstr((char *)gettail(p_sh), "sh") != NULL)
shell_style = STYLE_VIMGLOB;
}