comparison src/proto/vim9execute.pro @ 21771:fcf978444298 v8.2.1435

patch 8.2.1435: Vim9: always converting to string for ".." leads to mistakes Commit: https://github.com/vim/vim/commit/418f1df54763b79600db1c91c880fbc1007b2e1f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 12 21:34:49 2020 +0200 patch 8.2.1435: Vim9: always converting to string for ".." leads to mistakes Problem: Vim9: always converting to string for ".." leads to mistakes. Solution: Only automatically convert simple types.
author Bram Moolenaar <Bram@vim.org>
date Wed, 12 Aug 2020 21:45:03 +0200
parents 5950284a517f
children 7d6ba4204f66
comparison
equal deleted inserted replaced
21770:48e91c319616 21771:fcf978444298
1 /* vim9execute.c */ 1 /* vim9execute.c */
2 void to_string_error(vartype_T vartype);
2 int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, partial_T *partial, typval_T *rettv); 3 int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, partial_T *partial, typval_T *rettv);
3 void ex_disassemble(exarg_T *eap); 4 void ex_disassemble(exarg_T *eap);
4 int tv2bool(typval_T *tv); 5 int tv2bool(typval_T *tv);
5 int check_not_string(typval_T *tv); 6 int check_not_string(typval_T *tv);
6 /* vim: set ft=c : */ 7 /* vim: set ft=c : */