summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-07 20:20:50 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-07 20:20:50 +0200
commita772ec5e91efbd5c4b99bb5cf5704a6c6f0baf3f (patch)
treee18f7f8fcf77fee3a8a795c71df2eba4a66f7cc6
parentb73598e2f022a22fec512ea681c70d2775e8fd87 (diff)
downloadvim-git-a772ec5e91efbd5c4b99bb5cf5704a6c6f0baf3f.tar.gz
patch 7.4.2181v7.4.2181
Problem: Compiler warning for unused variable. Solution: Remove it. (Dominique Pelle)
-rw-r--r--src/ex_cmds2.c2
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 2 deletions
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
@@ -764,6 +764,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2181,
+/**/
2180,
/**/
2179,