diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-04-19 17:07:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 17:07:33 +0200 |
commit | 3940c435e4058f75b8ecbfc9f9c3b2a2c4b64f37 (patch) | |
tree | 3c23ed475376a20f2334f5131ebc5b39f6afe343 /src/nvim/regexp.h | |
parent | ea52961c54797fc27e305eb4bb11a5d2c4cdda58 (diff) | |
parent | aee6f08ce12a62e9104892702a658a8d3daee4df (diff) | |
download | rneovim-3940c435e4058f75b8ecbfc9f9c3b2a2c4b64f37.tar.gz rneovim-3940c435e4058f75b8ecbfc9f9c3b2a2c4b64f37.tar.bz2 rneovim-3940c435e4058f75b8ecbfc9f9c3b2a2c4b64f37.zip |
Merge pull request #23155 from bfredl/nobreak
fix(runtime): do not allow breakcheck inside runtime path calculation
Diffstat (limited to 'src/nvim/regexp.h')
-rw-r--r-- | src/nvim/regexp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/regexp.h b/src/nvim/regexp.h index dcc58fa34c..95296a5f90 100644 --- a/src/nvim/regexp.h +++ b/src/nvim/regexp.h @@ -10,6 +10,7 @@ #define RE_STRING 2 ///< match in string instead of buffer text #define RE_STRICT 4 ///< don't allow [abc] without ] #define RE_AUTO 8 ///< automatic engine selection +#define RE_NOBREAK 16 ///< don't use breakcheck functions // values for reg_do_extmatch #define REX_SET 1 ///< to allow \z\(...\), |