From 55a2c513aafb386c01259fca711b2e0f9b85e359 Mon Sep 17 00:00:00 2001 From: Thomas Vigouroux Date: Wed, 16 Sep 2020 22:57:34 +0200 Subject: buffer: don't rely on curbuf in BUFEMPTY --- src/nvim/macros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/macros.h') diff --git a/src/nvim/macros.h b/src/nvim/macros.h index 48a16ed42a..dce1e73dfd 100644 --- a/src/nvim/macros.h +++ b/src/nvim/macros.h @@ -35,8 +35,8 @@ #define LINEEMPTY(p) (*ml_get(p) == NUL) /// BUFEMPTY() - return TRUE if the current buffer is empty -#define BUFEMPTY() (curbuf->b_ml.ml_line_count == 1 && *ml_get((linenr_T)1) == \ - NUL) +#define BUFEMPTY(buf) ((buf)->b_ml.ml_line_count == 1 \ + && *ml_get_buf((buf), (linenr_T)1, false) == '\0') // toupper() and tolower() that use the current locale. // Careful: Only call TOUPPER_LOC() and TOLOWER_LOC() with a character in the -- cgit