comparison src/errors.h @ 23816:525c9e218c69

patch 8.2.2449: Vim9: flatten() always changes the list type Commit: https://github.com/vim/vim/commit/3b690069730805a147d45d92eaca4dc838272d1d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 1 20:14:51 2021 +0100 patch 8.2.2449: Vim9: flatten() always changes the list type Problem: Vim9: flatten() always changes the list type. Solution: Disallow using flatten() and add flattennew().
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Feb 2021 20:15:04 +0100
parents baf9069f64ca
children 5a4f9c5c1b99
comparison
equal deleted inserted replaced
23815:40a619efcc90 23816:525c9e218c69
349 INIT(= N_("E1155: Cannot define autocommands for ALL events")); 349 INIT(= N_("E1155: Cannot define autocommands for ALL events"));
350 EXTERN char e_cannot_change_arglist_recursively[] 350 EXTERN char e_cannot_change_arglist_recursively[]
351 INIT(= N_("E1156: Cannot change the argument list recursively")); 351 INIT(= N_("E1156: Cannot change the argument list recursively"));
352 EXTERN char e_missing_return_type[] 352 EXTERN char e_missing_return_type[]
353 INIT(= N_("E1157: Missing return type")); 353 INIT(= N_("E1157: Missing return type"));
354 EXTERN char e_cannot_use_flatten_in_vim9_script[]
355 INIT(= N_("E1158: Cannot use flatten() in Vim9 script"));