From: Bram Moolenaar Date: Thu, 28 Jan 2021 16:56:09 +0000 (+0100) Subject: patch 8.2.2423: missing error message X-Git-Tag: v8.2.2423 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61015162ba834541c42da5db6f3fa0ebe1d40e87;p=vim patch 8.2.2423: missing error message Problem: Missing error message. Solution: Add the error message. --- diff --git a/src/errors.h b/src/errors.h index b2f6a55a8..c27da7cc3 100644 --- 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")); diff --git a/src/version.c b/src/version.c index c710be863..081698246 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2423, /**/ 2422, /**/