diff options
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 73d75d506a..143c39bc7e 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -2317,9 +2317,9 @@ doend: */ int checkforcmd( - char_u **pp, /* start of command */ - char *cmd, /* name of command */ - int len /* required length */ + char_u **pp, // start of command + char *cmd, // name of command + int len // required length ) { int i; @@ -4705,7 +4705,7 @@ char_u *check_nextcmd(char_u *p) */ static int check_more( - int message, /* when FALSE check only, no messages */ + int message, // when FALSE check only, no messages int forceit ) { |