mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
patch 8.2.0562: Vim9: cannot split an expression into multiple lines
Problem: Vim9: cannot split an expression into multiple lines. Solution: Continue in next line after an operator.
This commit is contained in:
@@ -37,10 +37,11 @@
|
||||
#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.
|
||||
* VIM_ISWHITE() differs from isspace() because it doesn't include <CR> and
|
||||
* <LF> and the like.
|
||||
*/
|
||||
#define VIM_ISWHITE(x) ((x) == ' ' || (x) == '\t')
|
||||
#define VIM_ISWHITE(x) ((x) == ' ' || (x) == '\t')
|
||||
#define IS_WHITE_OR_NUL(x) ((x) == ' ' || (x) == '\t' || (x) == NUL)
|
||||
|
||||
/*
|
||||
* LINEEMPTY() - return TRUE if the line is empty
|
||||
|
Reference in New Issue
Block a user