]> granicus.if.org Git - vim/commitdiff
patch 8.0.0028 v8.0.0028
authorBram Moolenaar <Bram@vim.org>
Wed, 12 Oct 2016 10:13:35 +0000 (12:13 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 12 Oct 2016 10:13:35 +0000 (12:13 +0200)
Problem:    Superfluous semicolons.
Solution:   Remove them. (Ozaki Kiichi)

src/ex_cmds2.c
src/version.c

index b8d8dca9e0d5550cf7b19723a6cd015fd67756e1..bee4670526f8781beff71a692630f9ac5c9f6690 100644 (file)
@@ -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
 
 /*
index 808afb1b168226c86ec20fad257eb455a4bcab0b..a6f4c136f3446c91fe9f2215e33eff999948d816 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    28,
 /**/
     27,
 /**/