summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Takata <kentkt@csc.jp>2023-09-29 19:45:42 +0200
committerChristian Brabandt <cb@256bit.org>2023-09-29 19:45:42 +0200
commit789b8854d2f9f92089047665d52d08769f29c927 (patch)
tree1b88503e65a8095950e0eaa7e9b437e1feb506ce
parent5a05d374d30577ee195e87e7929062ab1a0a076a (diff)
patch 9.0.1953: Misplaced comment in errors.hv9.0.1953
Problem: Misplaced comment in errors.h Solution: Move it up closes: #13218 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Ken Takata <kentkt@csc.jp>
-rw-r--r--src/errors.h3
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/errors.h b/src/errors.h
index ed4208dea5..19779ebd09 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3548,7 +3548,6 @@ EXTERN char e_positional_arg_num_type_inconsistent_str_str[]
INIT(= N_("E1504: Positional argument %d type used inconsistently: %s/%s"));
EXTERN char e_invalid_format_specifier_str[]
INIT(= N_("E1505: Invalid format specifier: %s"));
+// E1506 - E1519 unused
EXTERN char e_aptypes_is_null_nr_str[]
INIT(= "E1520: Internal error: ap_types or ap_types[idx] is NULL: %d: %s");
-
-// E1506 - E1519 unused
diff --git a/src/version.c b/src/version.c
index ad696de122..e5f4bfc0ee 100644
--- a/src/version.c
+++ b/src/version.c
@@ -700,6 +700,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1953,
+/**/
1952,
/**/
1951,