aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-03-24 16:29:18 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-03-24 16:29:18 -0400
commite16ff72e71172730f1d2e7c814f774c1174af36b (patch)
treeb8ddb9093314c71a56cd2542ebb675ddaf2c02e2 /src/nvim/eval.c
parented1070bb24d61cfeb13c7afa65de64540dabe535 (diff)
parent3fc18e25b8f6c1ead673ce9283461af9495829c4 (diff)
downloadrneovim-e16ff72e71172730f1d2e7c814f774c1174af36b.tar.gz
rneovim-e16ff72e71172730f1d2e7c814f774c1174af36b.tar.bz2
rneovim-e16ff72e71172730f1d2e7c814f774c1174af36b.zip
Merge #2148 'misc1.c: split some environment functions'
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 10e2027b00..9e4b110e8b 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -1744,7 +1744,7 @@ ex_let_one (
name[len] = NUL;
p = get_tv_string_chk(tv);
if (p != NULL && op != NULL && *op == '.') {
- int mustfree = FALSE;
+ bool mustfree = false;
char_u *s = vim_getenv(name, &mustfree);
if (s != NULL) {
@@ -6300,7 +6300,7 @@ static int get_env_tv(char_u **arg, typval_T *rettv, int evaluate)
{
char_u *name;
char_u *string = NULL;
- int mustfree = FALSE;
+ bool mustfree = false;
int len;
int cc;