comparison src/errors.h @ 28115:62a57c60edc1 v8.2.4582

patch 8.2.4582: useless code handling a type declaration Commit: https://github.com/vim/vim/commit/4c8b546da2059865e20902586bb3e0ff07c279a0 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 16 20:01:39 2022 +0000 patch 8.2.4582: useless code handling a type declaration Problem: Useless code handling a type declaration. Solution: Remove the code and give an error.
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Mar 2022 21:15:02 +0100
parents 632a84e2ce92
children 859b037faea8
comparison
equal deleted inserted replaced
28114:8510390872d6 28115:62a57c60edc1
3250 EXTERN char e_cannot_use_s_backslash_in_vim9_script[] 3250 EXTERN char e_cannot_use_s_backslash_in_vim9_script[]
3251 INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script")); 3251 INIT(= N_("E1270: Cannot use :s\\/sub/ in Vim9 script"));
3252 #ifdef FEAT_EVAL 3252 #ifdef FEAT_EVAL
3253 EXTERN char e_compiling_closure_without_context_str[] 3253 EXTERN char e_compiling_closure_without_context_str[]
3254 INIT(= N_("E1271: compiling closure without context: %s")); 3254 INIT(= N_("E1271: compiling closure without context: %s"));
3255 #endif 3255 EXTERN char e_using_type_not_in_script_context_str[]
3256 INIT(= N_("E1272: Using type not in a script context: %s"));
3257 #endif