From dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 Mon Sep 17 00:00:00 2001 From: Dundar Göc Date: Mon, 26 Jul 2021 15:20:51 +0200 Subject: refactor: replace TRUE/FALSE with true/false Focus is on global variables. --- src/nvim/fileio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/fileio.c') diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index ecea3fc01e..9b89a4dd38 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -292,8 +292,8 @@ readfile( * display the line. */ ex_no_reprint = TRUE; - /* don't display the file info for another buffer now */ - need_fileinfo = FALSE; + // don't display the file info for another buffer now + need_fileinfo = false; // For Unix: Use the short file name whenever possible. // Avoids problems with networks and when directory names are changed. -- cgit