mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00
regexp: Fix linter errors
This commit is contained in:
@@ -232,17 +232,17 @@
|
|||||||
#define LAST_NL NUPPER + ADD_NL
|
#define LAST_NL NUPPER + ADD_NL
|
||||||
#define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL)
|
#define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL)
|
||||||
|
|
||||||
#define MOPEN 80 /* -89 Mark this point in input as start of
|
#define MOPEN 80 // -89 Mark this point in input as start of
|
||||||
* \( subexpr. MOPEN + 0 marks start of
|
// \( … \) subexpr. MOPEN + 0 marks start of
|
||||||
* match. */
|
// match.
|
||||||
#define MCLOSE 90 /* -99 Analogous to MOPEN. MCLOSE + 0 marks
|
#define MCLOSE 90 // -99 Analogous to MOPEN. MCLOSE + 0 marks
|
||||||
* end of match. */
|
// end of match.
|
||||||
#define BACKREF 100 /* -109 node Match same string again \1-\9 */
|
#define BACKREF 100 // -109 node Match same string again \1-\9.
|
||||||
|
|
||||||
# define ZOPEN 110 /* -119 Mark this point in input as start of
|
# define ZOPEN 110 // -119 Mark this point in input as start of
|
||||||
* \z( subexpr. */
|
// \z( … \) subexpr.
|
||||||
# define ZCLOSE 120 /* -129 Analogous to ZOPEN. */
|
# define ZCLOSE 120 // -129 Analogous to ZOPEN.
|
||||||
# define ZREF 130 /* -139 node Match external submatch \z1-\z9 */
|
# define ZREF 130 // -139 node Match external submatch \z1-\z9
|
||||||
|
|
||||||
#define BRACE_COMPLEX 140 /* -149 node Match nodes between m & n times */
|
#define BRACE_COMPLEX 140 /* -149 node Match nodes between m & n times */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user