diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-10-24 20:04:14 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-11-06 22:53:43 +0100 |
commit | 7d4ec612b164aae0cf65d529ace9a0a2af945d3c (patch) | |
tree | 77d199432faea37fec8346082be155bc3b16323b /src/nvim/option.c | |
parent | 96e7f229a5d7d5461c7518802f298cab47017a77 (diff) | |
download | rneovim-7d4ec612b164aae0cf65d529ace9a0a2af945d3c.tar.gz rneovim-7d4ec612b164aae0cf65d529ace9a0a2af945d3c.tar.bz2 rneovim-7d4ec612b164aae0cf65d529ace9a0a2af945d3c.zip |
Review: Remove long_u: memfile: Refactor: int -> bool.
Replace int with bool where appropriate.
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
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) { |