# HG changeset patch # User Bram Moolenaar # Date 1298641569 -3600 # Node ID 0c39ff7a90a81c62f2718f71bf0a4d636a8ac69c # Parent 2d9eebf2c48f0bd3b51e8ba085b97da871cd4184 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 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1115,7 +1115,7 @@ ex_profile(eap) 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 --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 127, +/**/ 126, /**/ 125,