diff src/ex_docmd.c @ 27800:6e5d378919c4 v8.2.4426

patch 8.2.4426: map() function on string and blob does not check types Commit: https://github.com/vim/vim/commit/c1e6c7bafec1115b690c745a28e1a6338750b137 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 20 18:26:46 2022 +0000 patch 8.2.4426: map() function on string and blob does not check types Problem: map() function on string and blob does not check argument types at compile time. Solution: Check string and blob argument types. Support "0z1234->func()".
author Bram Moolenaar <Bram@vim.org>
date Sun, 20 Feb 2022 19:30:02 +0100
parents 2631b9021808
children 2485bf68de34
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3457,7 +3457,8 @@ find_ex_command(
 	char_u *pskip = skip_option_env_lead(eap->cmd);
 
 	if (vim_strchr((char_u *)"{('[\"@&$", *p) != NULL
-	       || ((p = to_name_const_end(pskip)) > eap->cmd && *p != NUL))
+	       || ((p = to_name_const_end(pskip)) > eap->cmd && *p != NUL)
+	       || (p[0] == '0' && p[1] == 'z'))
 	{
 	    int	    oplen;
 	    int	    heredoc;
@@ -3503,6 +3504,8 @@ find_ex_command(
 			    // "'string'->func()" is an expression.
 			 || *eap->cmd == '\''
 			    // '"string"->func()' is an expression.
+			 || (eap->cmd[0] == '0' && eap->cmd[1] == 'z')
+			    // '"string"->func()' is an expression.
 			 || *eap->cmd == '"'
 			    // "g:varname" is an expression.
 			 || eap->cmd[1] == ':'