neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 9cc93b6def0ca580731ad6097318f63912777026
parent 3f62fe4bd89190ebff675245f1470752a3eb125b
Author: Jan Edmund Lazo <jan.lazo@mail.utoronto.ca>
Date:   Tue, 23 Dec 2025 23:09:04 -0500

vim-patch:9.1.0974: typo in change of commit v9.1.0873

Problem:  typo in change of commit v9.1.0873
          (Christ van Willegen)
Solution: Add back the square brackets
          (John Marriott)

closes: vim/vim#16340

https://github.com/vim/vim/commit/df4b3ca5dc26689d866c0a743ab835917f4cd6b7

Co-authored-by: John Marriott <basilisk@internode.on.net>

Diffstat:
Msrc/nvim/fileio.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c @@ -1727,7 +1727,7 @@ failed: c = true; } if (ff_error == EOL_DOS) { - buflen += snprintf(IObuff + buflen, (size_t)(IOSIZE - buflen), _("CR missing")); + buflen += snprintf(IObuff + buflen, (size_t)(IOSIZE - buflen), _("[CR missing]")); c = true; } if (split) {