diff options
author | James McCoy <jamessan@jamessan.com> | 2017-02-23 07:30:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-23 07:30:20 -0500 |
commit | 9752a333c32c344eb0cd86b4a3bba4ce6cba3b23 (patch) | |
tree | 8a34046b26b8ae39373005a29f6a72564e3ccf13 /src/nvim/globals.h | |
parent | 4e21311f9cceabcfaa6c746518cb2628deb2bb40 (diff) | |
parent | d4dd447ded5e0818fe3e49ebbe59fdafdaae7a1b (diff) | |
download | rneovim-9752a333c32c344eb0cd86b4a3bba4ce6cba3b23.tar.gz rneovim-9752a333c32c344eb0cd86b4a3bba4ce6cba3b23.tar.bz2 rneovim-9752a333c32c344eb0cd86b4a3bba4ce6cba3b23.zip |
Merge pull request #5771 from brcolow/lambda
Lambda Support
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 54551484ee..b141d40aa2 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -1236,6 +1236,9 @@ EXTERN char *ignoredp; EXTERN bool in_free_unref_items INIT(= false); +// Used for checking if local variables or arguments used in a lambda. +EXTERN int *eval_lavars_used INIT(= NULL); + // If a msgpack-rpc channel should be started over stdin/stdout EXTERN bool embedded_mode INIT(= false); |