diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-06-27 22:17:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-06-27 22:17:37 +0100 |
commit | 944cc9ceba8868acd238264d4a3894803c566b37 (patch) | |
tree | 7a901be2f02ec0e9c43051471da42e2d28e3f413 /src/misc1.c | |
parent | 069a7d561bbe7e3b9bf132f71b7121c59f99e8f1 (diff) | |
download | vim-git-944cc9ceba8868acd238264d4a3894803c566b37.tar.gz |
patch 8.2.5170: tiny issuesv8.2.5170
Problem: Tiny issues.
Solution: Tiny improvements.
Diffstat (limited to 'src/misc1.c')
-rw-r--r-- | src/misc1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c index fd85eff9c..91e208b35 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -2404,7 +2404,8 @@ get_cmd_output_as_rettv( if (in_vim9script() && (check_for_string_arg(argvars, 0) == FAIL - || check_for_opt_string_or_number_or_list_arg(argvars, 1) == FAIL)) + || check_for_opt_string_or_number_or_list_arg(argvars, 1) + == FAIL)) return; if (argvars[1].v_type != VAR_UNKNOWN) |