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