diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-27 23:49:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 23:49:47 +0200 |
commit | e46f5aab895f333d23d6adf490e13177c8d3c1d8 (patch) | |
tree | e0bf5224a8db9e9cb4b60347cfd4ac7f8faacbaf /src/nvim/lua/executor.c | |
parent | 86b7d8a9f54d572e6866d6a24476d2369a288f79 (diff) | |
parent | 448d4837be7f7bd60ac0b5a3100c0217ac48a495 (diff) | |
download | rneovim-e46f5aab895f333d23d6adf490e13177c8d3c1d8.tar.gz rneovim-e46f5aab895f333d23d6adf490e13177c8d3c1d8.tar.bz2 rneovim-e46f5aab895f333d23d6adf490e13177c8d3c1d8.zip |
Merge pull request #25396 from bfredl/no_attr
refactor(messages): fold msg() functions with and without attr
Diffstat (limited to 'src/nvim/lua/executor.c')
-rw-r--r-- | src/nvim/lua/executor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/lua/executor.c b/src/nvim/lua/executor.c index f2efd866f8..32706b74f1 100644 --- a/src/nvim/lua/executor.c +++ b/src/nvim/lua/executor.c @@ -953,11 +953,11 @@ static void nlua_print_event(void **argv) } break; } - msg(str + start); + msg(str + start, 0); msg_didout = true; // Make blank lines work properly } if (len && str[len - 1] == NUL) { // Last was newline - msg(""); + msg("", 0); } xfree(str); } |