0
0
mirror of https://github.com/vim/vim.git synced 2025-11-14 23:04:02 -05:00

patch 9.1.1215: Patch 9.1.1213 has some issues

Problem:  Patch 9.1.1213 has some issues
Solution: revert it for now

This reverts commit 250739d442.

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Christian Brabandt
2025-03-16 21:39:58 +01:00
parent 28e40a7b55
commit 762a79e15c
18 changed files with 83 additions and 266 deletions

View File

@@ -2161,12 +2161,9 @@ compile_variable_range(exarg_T *eap, cctx_T *cctx)
/*
* :put r
* :put ={expr}
* or if fixindent == TRUE
* :iput r
* :iput ={expr}
*/
char_u *
compile_put(char_u *arg, exarg_T *eap, cctx_T *cctx, int fixindent)
compile_put(char_u *arg, exarg_T *eap, cctx_T *cctx)
{
char_u *line = arg;
linenr_T lnum;
@@ -2205,8 +2202,7 @@ compile_put(char_u *arg, exarg_T *eap, cctx_T *cctx, int fixindent)
--lnum;
}
generate_PUT(cctx, eap->regname, lnum, fixindent);
generate_PUT(cctx, eap->regname, lnum);
return line;
}