patch 9.0.1089: unnessary assignment

Problem:    unnessary assignment
Solution:   Remove the assignment. (Luuk van Baal, closes #1136)
diff --git a/src/memline.c b/src/memline.c
index 16885d3..48b17f5 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -316,9 +316,6 @@
 #endif
     buf->b_ml.ml_flags = ML_EMPTY;
     buf->b_ml.ml_line_count = 1;
-#ifdef FEAT_LINEBREAK
-    curwin->w_nrwidth_line_count = 0;
-#endif
 
 /*
  * fill block0 struct and write page 0
diff --git a/src/version.c b/src/version.c
index a7fd8d8..71029ae 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1089,
+/**/
     1088,
 /**/
     1087,