aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/main.c
diff options
context:
space:
mode:
authorThomas Vigouroux <tomvig38@gmail.com>2020-11-24 08:48:05 +0100
committerThomas Vigouroux <tomvig38@gmail.com>2021-07-06 19:12:15 +0200
commit7970631fa01e95a41ba4520e030e6208c8fb3648 (patch)
tree60a6a82ffb1f5d0388cb816c68e2a31ead1cda2d /src/nvim/main.c
parent763c852812c8c7e819881a76a237b6f19920f803 (diff)
downloadrneovim-7970631fa01e95a41ba4520e030e6208c8fb3648.tar.gz
rneovim-7970631fa01e95a41ba4520e030e6208c8fb3648.tar.bz2
rneovim-7970631fa01e95a41ba4520e030e6208c8fb3648.zip
buffer: move BUFEMPTY to a function
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r--src/nvim/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c
index 9bccca85ee..16700d20ab 100644
--- a/src/nvim/main.c
+++ b/src/nvim/main.c
@@ -1446,7 +1446,7 @@ static void read_stdin(void)
set_buflisted(true);
// Create memfile and read from stdin.
(void)open_buffer(true, NULL, 0);
- if (BUFEMPTY(curbuf) && curbuf->b_next != NULL) {
+ if (buf_is_empty(curbuf) && curbuf->b_next != NULL) {
// stdin was empty, go to buffer 2 (e.g. "echo file1 | xargs nvim"). #8561
do_cmdline_cmd("silent! bnext");
// Delete the empty stdin buffer.