aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-11-06 17:09:39 -0500
committerJustin M. Keyes <justinkz@gmail.com>2014-11-06 17:09:39 -0500
commit8455fd5e338624a76bd2e4b3176f51eeac76ff7b (patch)
tree9a42ed343d477515aa34b525f2ccdabea40026f7 /src/nvim/option.c
parent7c7874d11b07167e3ed2b5a2fc21484ff1c6be34 (diff)
parent8386255803c6a643d05e158e2cba9bcb10a09b75 (diff)
downloadrneovim-8455fd5e338624a76bd2e4b3176f51eeac76ff7b.tar.gz
rneovim-8455fd5e338624a76bd2e4b3176f51eeac76ff7b.tar.bz2
rneovim-8455fd5e338624a76bd2e4b3176f51eeac76ff7b.zip
Merge pull request #1340 from elmart/remove-long_u
Remove project-specific integer types: long_u. (2)
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index ca868120a0..207be0bd74 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -5010,7 +5010,7 @@ set_bool_option (
else
/* no need to reset curbuf->b_may_swap, ml_open_file() will check
* buf->b_p_swf */
- mf_close_file(curbuf, TRUE); /* remove the swap file */
+ mf_close_file(curbuf, true); /* remove the swap file */
}
/* when 'terse' is set change 'shortmess' */
else if ((int *)varp == &p_terse) {