diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-08-26 11:11:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 11:11:14 +0100 |
commit | 06d5c6332deeb52ccd78d632d1fb28df91faf7dc (patch) | |
tree | eec06181d28ca9ee9d0e8aa6042a84726d9be6f3 /src/nvim/macros.h | |
parent | 946c0aa66f7b52c406b2654b9869edcb79db5ada (diff) | |
parent | 2498e9feb025361576603a0101c86393d211e31e (diff) | |
download | rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.tar.gz rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.tar.bz2 rneovim-06d5c6332deeb52ccd78d632d1fb28df91faf7dc.zip |
Merge pull request #19947 from lewis6991/truefalse
Diffstat (limited to 'src/nvim/macros.h')
-rw-r--r-- | src/nvim/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/macros.h b/src/nvim/macros.h index a896a406d1..5601db274b 100644 --- a/src/nvim/macros.h +++ b/src/nvim/macros.h @@ -31,7 +31,7 @@ /// @return `s, sizeof(s) - 1` #define S_LEN(s) (s), (sizeof(s) - 1) -/// LINEEMPTY() - return TRUE if the line is empty +/// LINEEMPTY() - return true if the line is empty #define LINEEMPTY(p) (*ml_get(p) == NUL) // toupper() and tolower() that use the current locale. |