changeset 10262:d69ee8806ec9 v8.0.0028

commit https://github.com/vim/vim/commit/a7c023ec88233a2db4c1f53121921e110ece8d43 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 12 12:13:35 2016 +0200 patch 8.0.0028 Problem: Superfluous semicolons. Solution: Remove them. (Ozaki Kiichi)
author Christian Brabandt <cb@256bit.org>
date Wed, 12 Oct 2016 12:15:05 +0200
parents bdd7fc1a38c0
children b758a787983a
files src/ex_cmds2.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
 
 /*
--- 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,