From: Bram Moolenaar Date: Tue, 11 Jan 2005 21:21:40 +0000 (+0000) Subject: updated for version 7.0037 X-Git-Tag: v7.0037~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5a1e80ca2492520334be29aaa15d1c400ad7e70;p=vim updated for version 7.0037 --- diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 84cb39130..0bcd69e6e 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -64,7 +64,6 @@ static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(* static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*getline)(int, void *, int), void *cookie)); static int if_level = 0; /* depth in :if */ #endif -static int checkforcmd __ARGS((char_u **pp, char *cmd, int len)); static char_u *find_command __ARGS((exarg_T *eap, int *full)); static void ex_abbreviate __ARGS((exarg_T *eap)); @@ -2616,12 +2615,12 @@ doend: #endif /* - * Check for a command modifier command with optional tail. + * Check for an Ex command with optional tail. * If there is a match advance "pp" to the argument and return TRUE. */ - static int + int checkforcmd(pp, cmd, len) - char_u **pp; /* start of command line */ + char_u **pp; /* start of command */ char *cmd; /* name of command */ int len; /* required length */ {