summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-24 15:38:21 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-24 15:38:21 +0100
commit1500a42c42b26cb63659d90883f7a438895cd273 (patch)
treede6dddf2e380abd69377b7c065ec00b48fd8e1cf
parent49d68bf5e4d9306269b141f0576bbf44631f4ff0 (diff)
patch 8.2.0037: missing renamed messagev8.2.0037
Problem: Missing renamed message. Solution: Now really add the error number.
-rw-r--r--src/highlight.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/highlight.c b/src/highlight.c
index 564cf3a23a..40dda6452e 100644
--- a/src/highlight.c
+++ b/src/highlight.c
@@ -3796,7 +3796,7 @@ match_add(
}
else
{
- emsg(_("List or number required"));
+ emsg(_("E290: List or number required"));
goto fail;
}
if (toplnum == 0 || lnum < toplnum)
diff --git a/src/version.c b/src/version.c
index 6978a31f5c..aa7b13cddd 100644
--- a/src/version.c
+++ b/src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 37,
+/**/
36,
/**/
35,