eval.c: rename capture() to execute() (#5132)

This commit is contained in:
Justin M. Keyes
2016-07-31 13:23:29 -04:00
committed by GitHub
parent faca814116
commit aa2c439940
8 changed files with 70 additions and 70 deletions

View File

@@ -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))) {