# HG changeset patch # User Christian Brabandt # Date 1470594605 -7200 # Node ID 939a8f55aea050b3c25c68ba0024fe06c61f31c0 # Parent 8dbd5f15c8fa6b2ea4dfee80c417a88bb55eee28 commit https://github.com/vim/vim/commit/a772ec5e91efbd5c4b99bb5cf5704a6c6f0baf3f Author: Bram Moolenaar Date: Sun Aug 7 20:20:50 2016 +0200 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2181, +/**/ 2180, /**/ 2179,