aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-07-26 15:20:51 +0200
committerDundar Göc <gocdundar@gmail.com>2021-07-26 17:12:35 +0200
commitdfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (patch)
tree1a2645100e08d01f1da4c9dd88413fd7432b894d /src/nvim/fileio.c
parent7b520cca3a8c6850610d899b180c3306df8899ab (diff)
downloadrneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.tar.gz
rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.tar.bz2
rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.zip
refactor: replace TRUE/FALSE with true/false
Focus is on global variables.
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r--src/nvim/fileio.c4
1 files changed, 2 insertions, 2 deletions
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.