vim-patch:9.0.1089: unnecessary assignment (#21493)

Problem:    unnecessary assignment
Solution:   Remove the assignment. (Luuk van Baal, closes vim/vim#11736)

c53e7904b9
This commit is contained in:
luukvbaal 2022-12-23 14:13:58 +01:00 committed by GitHub
parent 788eb65494
commit 2d7599248b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,7 +281,6 @@ int ml_open(buf_T *buf)
buf->b_ml.ml_mfp = mfp;
buf->b_ml.ml_flags = ML_EMPTY;
buf->b_ml.ml_line_count = 1;
curwin->w_nrwidth_line_count = 0;
// fill block0 struct and write page 0
hp = mf_new(mfp, false, 1);