diff src/ex_eval.c @ 28696:a090c60278f5 v8.2.4872

patch 8.2.4872: Vim9: no error for using an expression only Commit: https://github.com/vim/vim/commit/ea72038d60401d351faaf1b4a52f4537e719df6f Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 5 16:08:55 2022 +0100 patch 8.2.4872: Vim9: no error for using an expression only Problem: Vim9: no error for using an expression only at the script level when followed by an empty line. Solution: Do not check the line number but whether something follows. (closes #10357)
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 May 2022 17:15:05 +0200
parents fae7d94220e3
children 096a5f9a03a8
line wrap: on
line diff
--- a/src/ex_eval.c
+++ b/src/ex_eval.c
@@ -940,8 +940,14 @@ ex_eval(exarg_T *eap)
     if (eval0(eap->arg, &tv, eap, &evalarg) == OK)
     {
 	clear_tv(&tv);
-	if (in_vim9script() && name_only && lnum == SOURCING_LNUM)
+	if (in_vim9script() && name_only
+		&& (evalarg.eval_tofree == NULL
+		    || ends_excmd2(evalarg.eval_tofree,
+					      skipwhite(evalarg.eval_tofree))))
+	{
+	    SOURCING_LNUM = lnum;
 	    semsg(_(e_expression_without_effect_str), eap->arg);
+	}
     }
 
     clear_evalarg(&evalarg, eap);