summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2005-01-11 21:21:40 +0000
committervimboss <devnull@localhost>2005-01-11 21:21:40 +0000
commit09e60ca7d25fd8935e1540af010b3fec07dd7bf1 (patch)
tree18ed8be51f48cd3138880ebd9e56e3f6797f67f5
parentb39a34fe865134c225517136d12826bf7a377a44 (diff)
downloadvim-09e60ca7d25fd8935e1540af010b3fec07dd7bf1.tar.gz
updated for version 7.0037
-rw-r--r--src/ex_docmd.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 84cb3913..0bcd69e6 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 */
{