From fffcfea9845021269da36bbe8eee5641ebb144c4 Mon Sep 17 00:00:00 2001
From: Bram Moolenaar <Bram@vim.org>
Date: Wed, 6 Feb 2013 18:45:01 +0100
Subject: [PATCH] updated for version 7.3.804 Problem:    Compiler warning for
 tiny build. (Tony Mechelynck) Solution:   Add #ifdefs around variable.

---
 src/buffer.c  | 2 ++
 src/version.c | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/buffer.c b/src/buffer.c
index f4713a1f79..cfe408093c 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1441,7 +1441,9 @@ set_curbuf(buf, action)
 enter_buffer(buf)
     buf_T	*buf;
 {
+#ifdef FEAT_SYN_HL
     long old_tw = curbuf->b_p_tw;
+#endif
 
     /* Copy buffer and window local option values.  Not for a help buffer. */
     buf_copy_options(buf, BCO_ENTER | BCO_NOHELP);
diff --git a/src/version.c b/src/version.c
index 6f3020cae2..261a032cb0 100644
--- a/src/version.c
+++ b/src/version.c
@@ -725,6 +725,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    804,
 /**/
     803,
 /**/
-- 
GitLab