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

patch 9.1.1636: style issues

Problem:  style issues
Solution: Fix indentation of function parameters exceeding 80 character
          length (Yegappan Lakshmanan).

closes: #18013

Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Yegappan Lakshmanan
2025-08-16 16:26:54 +02:00
committed by Christian Brabandt
parent 62f5be6ea6
commit d6a762fe1b
17 changed files with 118 additions and 25 deletions

View File

@@ -2750,7 +2750,11 @@ diff_set_topline(win_T *fromwin, win_T *towin)
* syntax is correct.
*/
static int
parse_diffanchors(int check_only, buf_T *buf, linenr_T *anchors, int *num_anchors)
parse_diffanchors(
int check_only,
buf_T *buf,
linenr_T *anchors,
int *num_anchors)
{
int i;
char_u *dia = (*buf->b_p_dia == NUL) ? p_dia : buf->b_p_dia;