patch 8.2.2182: Vim9: value of 'magic' is still relevant
Problem: Vim9: value of 'magic' is still relevant.
Solution: Always behave like 'magic' is on in Vim9 script (closes #7509)
diff --git a/src/insexpand.c b/src/insexpand.c
index 8f4f976..73b2218 100644
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -1216,7 +1216,7 @@
}
else
{
- regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0);
+ regmatch.regprog = vim_regcomp(pat, magic_isset() ? RE_MAGIC : 0);
if (regmatch.regprog == NULL)
goto theend;
}
@@ -4175,7 +4175,7 @@
break;
// FALLTHROUGH
case '~':
- if (!p_magic) // quote these only if magic is set
+ if (!magic_isset()) // quote these only if magic is set
break;
// FALLTHROUGH
case '\\':