updated for version 7.3.078
Problem:    Warning for unused variable.
Solution:   Adjuste #ifdefs.
diff --git a/src/ops.c b/src/ops.c
index f31f395..c529cd2 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -2844,7 +2844,9 @@
     char_u		*p;
     char_u		*pnew;
     struct block_def	bd;
+#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
     int			did_star = FALSE;
+#endif
 
 				    /* check for read-only register */
     if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
@@ -3127,7 +3129,9 @@
 
 	clip_own_selection(&clip_star);
 	clip_gen_set_selection(&clip_star);
+# ifdef FEAT_X11
 	did_star = TRUE;
+# endif
     }
 
 # ifdef FEAT_X11
diff --git a/src/version.c b/src/version.c
index 35b42f8..9cd521a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    78,
+/**/
     77,
 /**/
     76,