mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.1331: Vim9: :echo with two lists doesn't work
Problem: Vim9: :echo with two lists doesn't work. Solution: Do not skip white space before []. (closes #6552)
This commit is contained in:
@@ -3855,7 +3855,7 @@ compile_subscript(
|
||||
return FAIL;
|
||||
}
|
||||
}
|
||||
else if (*p == '[')
|
||||
else if (**arg == '[')
|
||||
{
|
||||
garray_T *stack = &cctx->ctx_type_stack;
|
||||
type_T **typep;
|
||||
|
Reference in New Issue
Block a user