From e2bdce3f5c0fb52a733fa4ba4f8a299c81fc7b29 Mon Sep 17 00:00:00 2001
From: Bram Moolenaar <Bram@vim.org>
Date: Tue, 10 May 2011 17:29:33 +0200
Subject: [PATCH] updated for version 7.3.189 Problem:    Can't build without
 +clipboard feature. (Christian Ebert) Solution:   Add the missing #ifdef.

---
 src/normal.c  | 3 +++
 src/version.c | 2 ++
 2 files changed, 5 insertions(+)

diff --git a/src/normal.c b/src/normal.c
index d8f9415d28..344bd7db70 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -1204,9 +1204,12 @@ getcount:
 #ifdef FEAT_EVAL
 	{
 	    int regname = 0;
+
 	    /* Adjust the register according to 'clipboard', so that when
 	     * "unnamed" is present it becomes '*' or '+' instead of '"'. */
+# ifdef FEAT_CLIPBOARD
 	    adjust_clip_reg(&regname);
+# endif
 	    set_reg_var(regname);
 	}
 #endif
diff --git a/src/version.c b/src/version.c
index 62051bcfb5..d4c1517e95 100644
--- a/src/version.c
+++ b/src/version.c
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    189,
 /**/
     188,
 /**/
-- 
GitLab