diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-09-20 18:35:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 09:35:41 -0700 |
commit | f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45 (patch) | |
tree | 054d1d35a890843504412b859249f0b0b0b4b810 /src/nvim/ex_getln.c | |
parent | 1f8c91bf729707fdb005292aecca8dd79538f4a5 (diff) | |
download | rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.tar.gz rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.tar.bz2 rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.zip |
refactor: reformat with uncrustify #15736
* fix function parameter comments
* remove space after star in function names
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 098a009728..ddf60eac18 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -2401,7 +2401,7 @@ void text_locked_msg(void) EMSG(_(get_text_locked_msg())); } -char_u * get_text_locked_msg(void) { +char_u *get_text_locked_msg(void) { if (cmdwin_type != 0) { return e_cmdwin; } else { @@ -5218,8 +5218,8 @@ static void expand_shellcmd(char_u *filepat, int *num_file, char_u ***file, int /// Call "user_expand_func()" to invoke a user defined Vim script function and /// return the result (either a string, a List or NULL). -static void * call_user_expand_func(user_expand_func_T user_expand_func, expand_T *xp, - int *num_file, char_u ***file) +static void *call_user_expand_func(user_expand_func_T user_expand_func, expand_T *xp, int *num_file, + char_u ***file) FUNC_ATTR_NONNULL_ALL { char_u keep = 0; |