comparison src/filepath.c @ 25252:acda780ffc3e v8.2.3162

patch 8.2.3162: Vim9: argument types are not checked at compile time Commit: https://github.com/vim/vim/commit/1a71d31bf34b0b2b08517903826004ec6fd440e5 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Thu Jul 15 12:49:58 2021 +0200 patch 8.2.3162: Vim9: argument types are not checked at compile time Problem: Vim9: argument types are not checked at compile time. Solution: Add more type checks. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8560)
author Bram Moolenaar <Bram@vim.org>
date Thu, 15 Jul 2021 13:00:06 +0200
parents 8f2262c72178
children 4d3c68196d05
comparison
equal deleted inserted replaced
25251:6024f64e0d2b 25252:acda780ffc3e
1445 f_pathshorten(typval_T *argvars, typval_T *rettv) 1445 f_pathshorten(typval_T *argvars, typval_T *rettv)
1446 { 1446 {
1447 char_u *p; 1447 char_u *p;
1448 int trim_len = 1; 1448 int trim_len = 1;
1449 1449
1450 if (in_vim9script()
1451 && (check_for_string_arg(argvars, 0) == FAIL
1452 || (argvars[1].v_type != VAR_UNKNOWN
1453 && check_for_number_arg(argvars, 1) == FAIL)))
1454 return;
1455
1450 if (argvars[1].v_type != VAR_UNKNOWN) 1456 if (argvars[1].v_type != VAR_UNKNOWN)
1451 { 1457 {
1452 trim_len = (int)tv_get_number(&argvars[1]); 1458 trim_len = (int)tv_get_number(&argvars[1]);
1453 if (trim_len < 1) 1459 if (trim_len < 1)
1454 trim_len = 1; 1460 trim_len = 1;