changeset 9812:939a8f55aea0 v7.4.2181

commit https://github.com/vim/vim/commit/a772ec5e91efbd5c4b99bb5cf5704a6c6f0baf3f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 7 20:20:50 2016 +0200 patch 7.4.2181 Problem: Compiler warning for unused variable. Solution: Remove it. (Dominique Pelle)
author Christian Brabandt <cb@256bit.org>
date Sun, 07 Aug 2016 20:30:05 +0200
parents 8dbd5f15c8fa
children 2d7437d47271
files src/ex_cmds2.c src/version.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);
 }
--- 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,