1
0
forked from aniani/vim

patch 8.0.0028

Problem:    Superfluous semicolons.
Solution:   Remove them. (Ozaki Kiichi)
This commit is contained in:
Bram Moolenaar
2016-10-12 12:13:35 +02:00
parent dc08328821
commit a7c023ec88
2 changed files with 4 additions and 2 deletions

View 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
/*

View File

@@ -764,6 +764,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
28,
/**/
27,
/**/