# HG changeset patch # User Christian Brabandt # Date 1476267305 -7200 # Node ID d69ee8806ec993208ae429dc8fbc452cfecf2fed # Parent bdd7fc1a38c09c095e022042eaf7dc26fe92a57c commit https://github.com/vim/vim/commit/a7c023ec88233a2db4c1f53121921e110ece8d43 Author: Bram Moolenaar Date: Wed Oct 12 12:13:35 2016 +0200 patch 8.0.0028 Problem: Superfluous semicolons. Solution: Remove them. (Ozaki Kiichi) diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1093,11 +1093,11 @@ static long last_timer_id = 0; # ifdef WIN3264 # define GET_TIMEDIFF(timer, now) \ (long)(((double)(timer->tr_due.QuadPart - now.QuadPart) \ - / (double)fr.QuadPart) * 1000); + / (double)fr.QuadPart) * 1000) # else # define GET_TIMEDIFF(timer, now) \ (timer->tr_due.tv_sec - now.tv_sec) * 1000 \ - + (timer->tr_due.tv_usec - now.tv_usec) / 1000; + + (timer->tr_due.tv_usec - now.tv_usec) / 1000 # endif /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 28, +/**/ 27, /**/ 26,