From: Bram Moolenaar Date: Sun, 7 Aug 2016 18:20:50 +0000 (+0200) Subject: patch 7.4.2181 X-Git-Tag: v7.4.2181 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a772ec5e91efbd5c4b99bb5cf5704a6c6f0baf3f;p=vim patch 7.4.2181 Problem: Compiler warning for unused variable. Solution: Remove it. (Dominique Pelle) --- diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 73b3a522f..5af2b4058 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1256,8 +1256,6 @@ stop_timer(timer_T *timer) void stop_all_timers(void) { - timer_T *timer; - while (first_timer != NULL) stop_timer(first_timer); } diff --git a/src/version.c b/src/version.c index 044546b3d..21f693284 100644 --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2181, /**/ 2180, /**/