diff options
Diffstat (limited to 'src/vim9cmds.c')
-rw-r--r-- | src/vim9cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vim9cmds.c b/src/vim9cmds.c index ad245b9..694bb33 100644 --- a/src/vim9cmds.c +++ b/src/vim9cmds.c @@ -1931,7 +1931,7 @@ compile_throw(char_u *arg, cctx_T *cctx UNUSED) return NULL; if (cctx->ctx_skip == SKIP_YES) return p; - if (may_generate_2STRING(-1, FALSE, cctx) == FAIL) + if (may_generate_2STRING(-1, TOSTRING_NONE, cctx) == FAIL) return NULL; if (generate_instr_drop(cctx, ISN_THROW, 1) == NULL) return NULL; @@ -2359,7 +2359,7 @@ compile_exec(char_u *line_arg, exarg_T *eap, cctx_T *cctx) p += 2; if (compile_expr0(&p, cctx) == FAIL) return NULL; - may_generate_2STRING(-1, TRUE, cctx); + may_generate_2STRING(-1, TOSTRING_TOLERANT, cctx); ++count; p = skipwhite(p); if (*p != '`') |