mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.0.0452: some macros are in lower case
Problem: Some macros are in lower case. Solution: Make a few more macros upper case.
This commit is contained in:
@@ -45,6 +45,12 @@
|
||||
|
||||
#define LTOREQ_POS(a, b) (LT_POS(a, b) || EQUAL_POS(a, b))
|
||||
|
||||
/*
|
||||
* VIM_ISWHITE() is used for "^" and the like. It differs from isspace()
|
||||
* because it doesn't include <CR> and <LF> and the like.
|
||||
*/
|
||||
#define VIM_ISWHITE(x) ((x) == ' ' || (x) == '\t')
|
||||
|
||||
/*
|
||||
* LINEEMPTY() - return TRUE if the line is empty
|
||||
*/
|
||||
|
Reference in New Issue
Block a user