mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 08:48:16 +00:00
eval.c: rename capture() to execute() (#5132)
This commit is contained in:
@@ -2396,7 +2396,7 @@ static void redir_write(char_u *str, int maxlen)
|
||||
return;
|
||||
}
|
||||
|
||||
// Append output to capture().
|
||||
// Append output for execute().
|
||||
if (capture_ga) {
|
||||
size_t len = 0;
|
||||
while (str[len] && (maxlen < 0 ? 1 : (len < (size_t)maxlen))) {
|
||||
|
Reference in New Issue
Block a user