diff options
Diffstat (limited to 'src/nvim/macros.h')
-rw-r--r-- | src/nvim/macros.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |