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/globals.h | |
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/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index f2610ac868..950ceb4c74 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -986,7 +986,7 @@ EXTERN int redir_off INIT(= false); // no redirection for a moment EXTERN FILE *redir_fd INIT(= NULL); // message redirection file EXTERN int redir_reg INIT(= 0); // message redirection register EXTERN int redir_vname INIT(= 0); // message redirection variable -EXTERN garray_T *capture_ga INIT(= NULL); // capture() buffer +EXTERN garray_T *capture_ga INIT(= NULL); // captured output for execute() EXTERN char_u langmap_mapchar[256]; /* mapping for language keys */ |