diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-19 18:33:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-19 18:33:44 +0800 |
commit | d9b094660944969b5160f2d22f0c2e8627e10d92 (patch) | |
tree | 9fd8d4342f77ed25e5abba5f697a827b3f3de38b /src/nvim/eval/typval.c | |
parent | d7ae9ae3e52362da33902c31ecccc79c49d3866e (diff) | |
parent | fcd729f22c658826024467801ae4ba0a92a8fabc (diff) | |
download | rneovim-d9b094660944969b5160f2d22f0c2e8627e10d92.tar.gz rneovim-d9b094660944969b5160f2d22f0c2e8627e10d92.tar.bz2 rneovim-d9b094660944969b5160f2d22f0c2e8627e10d92.zip |
Merge pull request #24787 from zeertzjq/vim-9.0.1515
vim-patch:9.0.{1515,1540,1738}
Diffstat (limited to 'src/nvim/eval/typval.c')
-rw-r--r-- | src/nvim/eval/typval.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/nvim/eval/typval.c b/src/nvim/eval/typval.c index 5f7bd98298..ba2c23ffe8 100644 --- a/src/nvim/eval/typval.c +++ b/src/nvim/eval/typval.c @@ -81,6 +81,8 @@ static const char e_blob_required_for_argument_nr[] = N_("E1238: Blob required for argument %d"); static const char e_invalid_value_for_blob_nr[] = N_("E1239: Invalid value for blob: %d"); +static const char e_string_list_or_blob_required_for_argument_nr[] + = N_("E1252: String, List or Blob required for argument %d"); static const char e_string_or_function_required_for_argument_nr[] = N_("E1256: String or function required for argument %d"); static const char e_non_null_dict_required_for_argument_nr[] @@ -4350,7 +4352,20 @@ int tv_check_for_string_or_list_arg(const typval_T *const args, const int idx) return OK; } -/// Check for an optional string or list argument at 'idx' +/// Give an error and return FAIL unless "args[idx]" is a string, a list or a blob. +int tv_check_for_string_or_list_or_blob_arg(const typval_T *const args, const int idx) + FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_PURE +{ + if (args[idx].v_type != VAR_STRING + && args[idx].v_type != VAR_LIST + && args[idx].v_type != VAR_BLOB) { + semsg(_(e_string_list_or_blob_required_for_argument_nr), idx + 1); + return FAIL; + } + return OK; +} + +/// Check for an optional string or list argument at "idx" int tv_check_for_opt_string_or_list_arg(const typval_T *const args, const int idx) FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_PURE { |