Related issue: #13394
https://github.com/vim/vim/pull/19704
(2 files)
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
@pyllyukko pushed 1 commit.
—
View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
@zeertzjq commented on this pull request.
In src/evalvars.c:
> @@ -1712,7 +1712,7 @@ ex_let_env( else if (endchars != NULL && vim_strchr(endchars, *skipwhite(arg)) == NULL) emsg(_(e_unexpected_characters_in_let)); - else if (!check_secure()) + else if (!check_secure() || !check_restricted())⬇️ Suggested change
- else if (!check_secure() || !check_restricted()) + else if (!check_secure() && !check_restricted())
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
@pyllyukko pushed 1 commit.
You are receiving this because you are subscribed to this thread.![]()
@pyllyukko commented on this pull request.
In src/evalvars.c:
> @@ -1712,7 +1712,7 @@ ex_let_env( else if (endchars != NULL && vim_strchr(endchars, *skipwhite(arg)) == NULL) emsg(_(e_unexpected_characters_in_let)); - else if (!check_secure()) + else if (!check_secure() || !check_restricted())
Ah. My bad. I fixed it to be the same as in f_setenv.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
@pyllyukko pushed 1 commit.
You are receiving this because you are subscribed to this thread.![]()
thanks
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()