diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-12-21 19:59:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-12-21 19:59:08 +0100 |
commit | f4e2099e39ed4d71aed0f9a9579455aed5ec6cc2 (patch) | |
tree | 40a384257e29f443c46bbaa19fb88a8eb5441b05 /src/globals.h | |
parent | a3d10a508c404a32485adc86284725e0bdc5b602 (diff) | |
download | vim-git-f4e2099e39ed4d71aed0f9a9579455aed5ec6cc2.tar.gz |
patch 8.2.2182: Vim9: value of 'magic' is still relevantv8.2.2182
Problem: Vim9: value of 'magic' is still relevant.
Solution: Always behave like 'magic' is on in Vim9 script (closes #7509)
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index 4f54d0fae..d7887bb62 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1938,3 +1938,8 @@ EXTERN int channel_need_redraw INIT(= FALSE); #define FOR_ALL_LIST_ITEMS(l, li) \ for ((li) = (l)->lv_first; (li) != NULL; (li) = (li)->li_next) + +// While executing a regexp and set to MAGIC_ON or MAGIC_OFF this overrules +// p_magic. Otherwise set to MAGIC_NOT_SET. + +EXTERN magic_T magic_overruled INIT(= MAGIC_NOT_SET); |