comparison src/vim.h @ 25425:effe5f2b4d01 v8.2.3249

patch 8.2.3249: Vim9: error for re-imported function with default argument Commit: https://github.com/vim/vim/commit/60dc8274e9f8c6a20d54efebc7a8752fe062eead Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 29 22:48:54 2021 +0200 patch 8.2.3249: Vim9: error for re-imported function with default argument Problem: Vim9: error for re-imported function with default argument. Solution: Do not check argument type if it is still unknown. (closes https://github.com/vim/vim/issues/8653)
author Bram Moolenaar <Bram@vim.org>
date Thu, 29 Jul 2021 23:00:04 +0200
parents 1919361a53da
children 05f9e8f2016c
comparison
equal deleted inserted replaced
25424:3cf272d6ee04 25425:effe5f2b4d01
2734 #define EVAL_VAR_IMPORT 4 // may return special variable for import 2734 #define EVAL_VAR_IMPORT 4 // may return special variable for import
2735 2735
2736 // Maximum number of characters that can be fuzzy matched 2736 // Maximum number of characters that can be fuzzy matched
2737 #define MAX_FUZZY_MATCHES 256 2737 #define MAX_FUZZY_MATCHES 256
2738 2738
2739 // flags for equal_type()
2740 #define ETYPE_ARG_UNKNOWN 1
2741
2739 #endif // VIM__H 2742 #endif // VIM__H