updated for version 7.4.415
Problem:    Cannot build.  Warning for shadowed variable. (John Little)
Solution:   Add missing change.  Remove declaration.
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 6826951..c4cf1f9 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -2150,9 +2150,9 @@
 	    && ASCII_ISUPPER(*ea.cmd)
 	    && has_cmdundefined())
     {
-	char_u *p = ea.cmd;
 	int ret;
 
+	p = ea.cmd;
 	while (ASCII_ISALNUM(*p))
 	    ++p;
 	p = vim_strnsave(ea.cmd, p - ea.cmd);