comparison src/ex_cmds2.c @ 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 40f6ce4fe30e
children 0bf064e7917a
comparison
equal deleted inserted replaced
10261:bdd7fc1a38c0 10262:d69ee8806ec9
1091 static long last_timer_id = 0; 1091 static long last_timer_id = 0;
1092 1092
1093 # ifdef WIN3264 1093 # ifdef WIN3264
1094 # define GET_TIMEDIFF(timer, now) \ 1094 # define GET_TIMEDIFF(timer, now) \
1095 (long)(((double)(timer->tr_due.QuadPart - now.QuadPart) \ 1095 (long)(((double)(timer->tr_due.QuadPart - now.QuadPart) \
1096 / (double)fr.QuadPart) * 1000); 1096 / (double)fr.QuadPart) * 1000)
1097 # else 1097 # else
1098 # define GET_TIMEDIFF(timer, now) \ 1098 # define GET_TIMEDIFF(timer, now) \
1099 (timer->tr_due.tv_sec - now.tv_sec) * 1000 \ 1099 (timer->tr_due.tv_sec - now.tv_sec) * 1000 \
1100 + (timer->tr_due.tv_usec - now.tv_usec) / 1000; 1100 + (timer->tr_due.tv_usec - now.tv_usec) / 1000
1101 # endif 1101 # endif
1102 1102
1103 /* 1103 /*
1104 * Insert a timer in the list of timers. 1104 * Insert a timer in the list of timers.
1105 */ 1105 */