diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-07-31 13:23:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-31 13:23:29 -0400 |
commit | aa2c43994039b4d78ae628f96b80bf1a60b4da6b (patch) | |
tree | 3ccecd954ee0b62b291f5e105b3dd40370c2cde8 /src/nvim/message.c | |
parent | faca814116282b589319fca738a971ce2a8fef7e (diff) | |
download | rneovim-aa2c43994039b4d78ae628f96b80bf1a60b4da6b.tar.gz rneovim-aa2c43994039b4d78ae628f96b80bf1a60b4da6b.tar.bz2 rneovim-aa2c43994039b4d78ae628f96b80bf1a60b4da6b.zip |
eval.c: rename capture() to execute() (#5132)
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r-- | src/nvim/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 77e8f0e4f2..3c310ed309 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -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))) { |