diff options
author | Bakudankun <bakudankun@gmail.com> | 2022-09-09 18:46:47 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-09-09 18:46:47 +0100 |
commit | 375141e1f80dced9be738568a3418f65813f4a2f (patch) | |
tree | be23086bf0c21bbf564b42298909d856ac6780cf /src/errors.h | |
parent | 0adae2da17598669e442ba38547ab18a6c1406de (diff) | |
download | vim-git-375141e1f80dced9be738568a3418f65813f4a2f.tar.gz |
patch 9.0.0430: cannot use repeat() with a blobv9.0.0430
Problem: Cannot use repeat() with a blob.
Solution: Implement blob repeat. (closes #11090)
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index 2ed62a2af..45f0d6a66 100644 --- a/src/errors.h +++ b/src/errors.h @@ -3329,4 +3329,6 @@ EXTERN char e_window_unexpectedly_close_while_searching_for_tags[] #ifdef FEAT_EVAL EXTERN char e_cannot_use_partial_with_dictionary_for_defer[] INIT(= N_("E1300: Cannot use a partial with dictionary for :defer")); +EXTERN char e_string_number_list_or_blob_required_for_argument_nr[] + INIT(= N_("E1301: String, Number, List or Blob required for argument %d")); #endif |