neovim

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

commit 069fad6e2df25e6b079879670cf6c68ae7ddb012
parent c431d820e7be1c511d3d16e89cdffaa21b7909fa
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Mon,  4 Sep 2023 15:55:16 +0800

vim-patch:9.0.1863: wrong format specifiers in e_aptypes_is_null_str_nr (#25015)

Problem:  wrong format specifiers in e_aptypes_is_null_str_nr
Solution: Fix the wrong format specifier

closes: vim/vim#13020

https://github.com/vim/vim/commit/7db89bdc23e53c7bc43af6f1c7281bc69a6a3098
Diffstat:
Msrc/nvim/strings.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvim/strings.c b/src/nvim/strings.c @@ -1250,7 +1250,7 @@ static void skip_to_arg(const char **ap_types, va_list ap_start, va_list *ap, in for (*arg_cur = arg_min; *arg_cur < *arg_idx - 1; (*arg_cur)++) { if (ap_types == NULL || ap_types[*arg_cur] == NULL) { - semsg(e_aptypes_is_null_str_nr, fmt, *arg_cur); + siemsg(e_aptypes_is_null_str_nr, fmt, *arg_cur); return; }