comparison src/ex_cmds.c @ 26848:a2335ec31abc v8.2.3952

patch 8.2.3952: first line not redrawn when adding lines to an empty buffer Commit: https://github.com/vim/vim/commit/1fa3de1ce806ba18ebcc00c6d9a0678a84735463 Author: zeertzjq <zeertzjq@outlook.com> Date: Fri Dec 31 12:19:22 2021 +0000 patch 8.2.3952: first line not redrawn when adding lines to an empty buffer Problem: First line not redrawn when adding lines to an empty buffer. Solution: Adjust the argument to appended_lines(). (closes https://github.com/vim/vim/issues/9439, closes #9438)
author Bram Moolenaar <Bram@vim.org>
date Fri, 31 Dec 2021 13:30:07 +0100
parents fc859aea8cec
children 806f31579357
comparison
equal deleted inserted replaced
26847:eafb9fd4ec32 26848:a2335ec31abc
3357 if (p[0] == NUL) 3357 if (p[0] == NUL)
3358 theline[0] = NUL; 3358 theline[0] = NUL;
3359 3359
3360 did_undo = TRUE; 3360 did_undo = TRUE;
3361 ml_append(lnum, theline, (colnr_T)0, FALSE); 3361 ml_append(lnum, theline, (colnr_T)0, FALSE);
3362 appended_lines_mark(lnum + (empty ? 1 : 0), 1L); 3362 if (empty)
3363 // there are no marks below the inserted lines
3364 appended_lines(lnum, 1L);
3365 else
3366 appended_lines_mark(lnum, 1L);
3363 3367
3364 vim_free(theline); 3368 vim_free(theline);
3365 ++lnum; 3369 ++lnum;
3366 3370
3367 if (empty) 3371 if (empty)