aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds.c
diff options
context:
space:
mode:
authorbobtwinkles <srkoser+GitHub@gmail.com>2015-03-13 23:27:54 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-03-24 16:13:00 -0400
commit03d47965c0ad5941c88ebd3b91233e7a566935f7 (patch)
tree46f31a729000276852669fe05471afd44331ba5e /src/nvim/ex_cmds.c
parented1070bb24d61cfeb13c7afa65de64540dabe535 (diff)
downloadrneovim-03d47965c0ad5941c88ebd3b91233e7a566935f7.tar.gz
rneovim-03d47965c0ad5941c88ebd3b91233e7a566935f7.tar.bz2
rneovim-03d47965c0ad5941c88ebd3b91233e7a566935f7.zip
refactor: split some more functions from misc1.c
This commit pulls the some environment-variable handling functions out of misc1.c and in to os/env.c. Previously submited as #1231, this is the start of a patch series that does that work based on a more up-to-date master branch. Major tasks accomplished: - move functions and fix includes - fix clint/clang analysis warnings - correct documentation comments
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r--src/nvim/ex_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c
index 12a634416b..2c674e06e6 100644
--- a/src/nvim/ex_cmds.c
+++ b/src/nvim/ex_cmds.c
@@ -5059,7 +5059,7 @@ void fix_help_buffer(void)
char_u *fname;
char_u *p;
char_u *rt;
- int mustfree;
+ bool mustfree;
/* set filetype to "help". */
set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);