aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-07-26 20:41:54 +0200
committerGitHub <noreply@github.com>2021-07-26 20:41:54 +0200
commitc818d8df349fff514eef8a529afe63e8102ca281 (patch)
tree0acd1856fccebc93e6c98725f211617f58e11c57 /src/nvim/fileio.c
parent3e00d4f01cebedb758050e2e3faf065036fcfdc2 (diff)
parentdfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (diff)
downloadrneovim-c818d8df349fff514eef8a529afe63e8102ca281.tar.gz
rneovim-c818d8df349fff514eef8a529afe63e8102ca281.tar.bz2
rneovim-c818d8df349fff514eef8a529afe63e8102ca281.zip
Merge pull request #15197 from dundargoc/refactor/a-song-of-true-and-false/global-variables
refactor: replace TRUE/FALSE with true/false
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.