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_docmd.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_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 1f11b6b9ef..68dd039278 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -1030,7 +1030,7 @@ int getline_equal(LineGetter fgetline, void *cookie, LineGetter func) /// getline function. Otherwise return "cookie". /// /// @param cookie argument for fgetline() -void * getline_cookie(LineGetter fgetline, void *cookie) +void *getline_cookie(LineGetter fgetline, void *cookie) { LineGetter gp; struct loop_cookie *cp; @@ -1250,8 +1250,8 @@ static char_u *skip_colon_white(const char_u *p, bool skipleadingwhite) /// This function may be called recursively! /// /// @param cookie argument for fgetline() -static char_u * do_one_cmd(char_u **cmdlinep, int flags, cstack_T *cstack, LineGetter fgetline, - void *cookie) +static char_u *do_one_cmd(char_u **cmdlinep, int flags, cstack_T *cstack, LineGetter fgetline, + void *cookie) { char_u *p; linenr_T lnum; @@ -2905,7 +2905,7 @@ int cmd_exists(const char *const name) /// probably won't change that much -- webb. /// /// @param buff buffer for command string -const char * set_one_cmd_context(expand_T *xp, const char *buff) +const char *set_one_cmd_context(expand_T *xp, const char *buff) { size_t len = 0; exarg_T ea; |