updated for version 7.3.127
Problem:    Compiler complains about comma.
Solution:   Remove comma after last enum element.
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index e78b159..54e4f07 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -1115,7 +1115,7 @@
 static enum
 {
     PEXP_SUBCMD,	/* expand :profile sub-commands */
-    PEXP_FUNC,		/* expand :profile func {funcname} */
+    PEXP_FUNC		/* expand :profile func {funcname} */
 } pexpand_what;
 
 static char *pexpand_cmds[] = {
diff --git a/src/version.c b/src/version.c
index 4a2d629..e72af8e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    127,
+/**/
     126,
 /**/
     125,