# HG changeset patch # User Christian Brabandt # Date 1465242306 -7200 # Node ID 931bbf7b6ee3e31a1ac7b7e739461e1abb940b59 # Parent 9bc59a88f8c3d1f3468b4c2efd07cd34c29f1dc8 commit https://github.com/vim/vim/commit/fdd82fe365d0e287bafc71f98c039cb5af8ed827 Author: Bram Moolenaar Date: Mon Jun 6 21:38:44 2016 +0200 patch 7.4.1905 Problem: Some compilers can't handle a double semicolon. Solution: Remove one semicolon. diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -2542,7 +2542,7 @@ barline_parse(vir_T *virp, char_u *text, { char_u *p = text; char_u *nextp = NULL; - char_u *buf = NULL;; + char_u *buf = NULL; int count = 0; int i; int allocated = FALSE; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1905, +/**/ 1904, /**/ 1903,