comparison src/errors.h @ 30108:0352577f1ba5 v9.0.0390

patch 9.0.0390: cannot use a partial with :defer Commit: https://github.com/vim/vim/commit/86d87256c4005c6215da5af2597fbf6f6304421f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 5 21:21:25 2022 +0100 patch 9.0.0390: cannot use a partial with :defer Problem: Cannot use a partial with :defer. Solution: Add the partial arguments before the other arguments. Disallow using a dictionary.
author Bram Moolenaar <Bram@vim.org>
date Mon, 05 Sep 2022 22:30:04 +0200
parents 0e9b58353412
children ba22d5536d3e
comparison
equal deleted inserted replaced
30107:8bd6bd6471df 30108:0352577f1ba5
3324 EXTERN char e_non_null_list_required_for_argument_nr[] 3324 EXTERN char e_non_null_list_required_for_argument_nr[]
3325 INIT(= N_("E1298: Non-NULL List required for argument %d")); 3325 INIT(= N_("E1298: Non-NULL List required for argument %d"));
3326 #endif 3326 #endif
3327 EXTERN char e_window_unexpectedly_close_while_searching_for_tags[] 3327 EXTERN char e_window_unexpectedly_close_while_searching_for_tags[]
3328 INIT(= N_("E1299: Window unexpectedly closed while searching for tags")); 3328 INIT(= N_("E1299: Window unexpectedly closed while searching for tags"));
3329 #ifdef FEAT_EVAL
3330 EXTERN char e_cannot_use_partial_with_dictionary_for_defer[]
3331 INIT(= N_("E1300: Cannot use a partial with dictionary for :defer"));
3332 #endif