diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-03-26 20:41:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-03-26 20:41:29 +0100 |
commit | 74e54fcb447e5db32f9c2df34c0554bbecdccca2 (patch) | |
tree | 09448c671db2b150c1af1575c239cddf2772272e /src/errors.h | |
parent | 522eefd9a247c574a51bfe9bf73467a8dc3bac42 (diff) | |
download | vim-git-74e54fcb447e5db32f9c2df34c0554bbecdccca2.tar.gz |
patch 8.2.2658: :for cannot loop over a stringv8.2.2658
Problem: :for cannot loop over a string.
Solution: Accept a string argument and iterate over its characters.
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 04179a31c..cb0f84652 100644 --- a/src/errors.h +++ b/src/errors.h @@ -389,3 +389,5 @@ EXTERN char e_non_empty_string_required_for_argument_nr[] INIT(= N_("E1175: Non-empty string required for argument %d")); EXTERN char e_misplaced_command_modifier[] INIT(= N_("E1176: Misplaced command modifier")); +EXTERN char e_for_loop_on_str_not_supported[] + INIT(= N_("E1177: For loop on %s not supported")); |