From 7d4ec612b164aae0cf65d529ace9a0a2af945d3c Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Fri, 24 Oct 2014 20:04:14 +0200 Subject: Review: Remove long_u: memfile: Refactor: int -> bool. Replace int with bool where appropriate. --- src/nvim/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/option.c') 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) { -- cgit