0
0
mirror of https://github.com/vim/vim.git synced 2025-09-06 21:53:38 -04:00

updated for version 7.0037

This commit is contained in:
Bram Moolenaar 2005-01-11 21:21:40 +00:00
parent ab7013c8d8
commit c5a1e80ca2

View File

@ -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 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 */ static int if_level = 0; /* depth in :if */
#endif #endif
static int checkforcmd __ARGS((char_u **pp, char *cmd, int len));
static char_u *find_command __ARGS((exarg_T *eap, int *full)); static char_u *find_command __ARGS((exarg_T *eap, int *full));
static void ex_abbreviate __ARGS((exarg_T *eap)); static void ex_abbreviate __ARGS((exarg_T *eap));
@ -2616,12 +2615,12 @@ doend:
#endif #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. * If there is a match advance "pp" to the argument and return TRUE.
*/ */
static int int
checkforcmd(pp, cmd, len) checkforcmd(pp, cmd, len)
char_u **pp; /* start of command line */ char_u **pp; /* start of command */
char *cmd; /* name of command */ char *cmd; /* name of command */
int len; /* required length */ int len; /* required length */
{ {