mirror of
https://github.com/vim/vim.git
synced 2025-11-14 23:04:02 -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:
committed by
Christian Brabandt
parent
62f5be6ea6
commit
d6a762fe1b
@@ -1253,7 +1253,11 @@ typedef enum
|
||||
// note:
|
||||
// submatch is available only if FEAT_EVAL is defined.
|
||||
static void
|
||||
reg_getline_common(linenr_T lnum, reg_getline_flags_T flags, char_u **line, colnr_T *length)
|
||||
reg_getline_common(
|
||||
linenr_T lnum,
|
||||
reg_getline_flags_T flags,
|
||||
char_u **line,
|
||||
colnr_T *length)
|
||||
{
|
||||
int get_line = flags & RGLF_LINE;
|
||||
int get_length = flags & RGLF_LENGTH;
|
||||
|
||||
Reference in New Issue
Block a user