From c53e7904b9ac559c7ad6e3acb136027d10aed54e Mon Sep 17 00:00:00 2001 From: Luuk van Baal Date: Fri, 23 Dec 2022 12:17:33 +0000 Subject: [PATCH] patch 9.0.1089: unnessary assignment Problem: unnessary assignment Solution: Remove the assignment. (Luuk van Baal, closes #1136) --- src/memline.c | 3 --- src/version.c | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/memline.c b/src/memline.c index 16885d3bc..48b17f558 100644 --- a/src/memline.c +++ b/src/memline.c @@ -316,9 +316,6 @@ ml_open(buf_T *buf) #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 a7fd8d8e8..71029ae47 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1089, /**/ 1088, /**/ -- 2.40.0