diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-30 17:53:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 17:53:07 +0200 |
commit | 15698eb5a1991790476febbd3b9f9b392e74f6b9 (patch) | |
tree | 274a87886add670ba1339a655e38c5cbadf430b1 /src/nvim/fileio.c | |
parent | 7b627ece8dfeb180b20c0be8a126d007521a4b66 (diff) | |
parent | 94120d2fd5a9e1f340921283bb5f5db1824899c2 (diff) | |
download | rneovim-15698eb5a1991790476febbd3b9f9b392e74f6b9.tar.gz rneovim-15698eb5a1991790476febbd3b9f9b392e74f6b9.tar.bz2 rneovim-15698eb5a1991790476febbd3b9f9b392e74f6b9.zip |
Merge pull request #15206 from dundargoc/refactor/a-song-of-true-and-false/global-variables-2
refactor: replace TRUE/FALSE with true/false
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 9b89a4dd38..ee8be8429f 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -290,7 +290,7 @@ readfile( /* After reading a file the cursor line changes but we don't want to * display the line. */ - ex_no_reprint = TRUE; + ex_no_reprint = true; // don't display the file info for another buffer now need_fileinfo = false; @@ -2237,7 +2237,7 @@ buf_write( /* After writing a file changedtick changes but we don't want to display * the line. */ - ex_no_reprint = TRUE; + ex_no_reprint = true; /* * If there is no file name yet, use the one for the written file. @@ -4241,7 +4241,7 @@ void shorten_fnames(int force) mf_fullname(buf->b_ml.ml_mfp); } status_redraw_all(); - redraw_tabline = TRUE; + redraw_tabline = true; } /// Get new filename ended by given extension. |