aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/macros.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-07-09 10:15:18 +0200
committerGitHub <noreply@github.com>2021-07-09 10:15:18 +0200
commit1c416892879de6b78038f2cc2f1487eff46abb60 (patch)
tree3895521bc907b7a0617940c21272ac7ee9f052da /src/nvim/macros.h
parent27118c6eb3351b0df96e2514e8f3806108e50cf7 (diff)
parent9c93e6461c8c6ec2e8d3e73f506389ac7086d531 (diff)
downloadrneovim-1c416892879de6b78038f2cc2f1487eff46abb60.tar.gz
rneovim-1c416892879de6b78038f2cc2f1487eff46abb60.tar.bz2
rneovim-1c416892879de6b78038f2cc2f1487eff46abb60.zip
Merge pull request #12971 from vigoux/decurbuf
Decrease reliance on curbuf in BUFEMPTY and `undo.c`
Diffstat (limited to 'src/nvim/macros.h')
-rw-r--r--src/nvim/macros.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/macros.h b/src/nvim/macros.h
index 48a16ed42a..e1aa1b7704 100644
--- a/src/nvim/macros.h
+++ b/src/nvim/macros.h
@@ -34,10 +34,6 @@
/// LINEEMPTY() - return TRUE if the line is empty
#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)
-
// toupper() and tolower() that use the current locale.
// Careful: Only call TOUPPER_LOC() and TOLOWER_LOC() with a character in the
// range 0 - 255. toupper()/tolower() on some systems can't handle others.