changeset 23764:c4208c7ba1cb v8.2.2423

patch 8.2.2423: missing error message Commit: https://github.com/vim/vim/commit/61015162ba834541c42da5db6f3fa0ebe1d40e87 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 28 17:56:09 2021 +0100 patch 8.2.2423: missing error message Problem: Missing error message. Solution: Add the error message.
author Bram Moolenaar <Bram@vim.org>
date Thu, 28 Jan 2021 18:00:04 +0100
parents 6408379c9328
children 6943434d5d93
files src/errors.h src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/errors.h
+++ b/src/errors.h
@@ -347,3 +347,5 @@ EXTERN char e_divide_by_zero[]
 	INIT(= N_("E1154: Divide by zero"));
 EXTERN char e_cannot_define_autocommands_for_all_events[]
 	INIT(= N_("E1155: Cannot define autocommands for ALL events"));
+EXTERN char e_cannot_change_arglist_recursively[]
+	INIT(= N_("E1156: Cannot change the argument list recursively"));
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2423,
+/**/
     2422,
 /**/
     2421,