summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-26 20:56:21 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-26 20:56:21 +0200
commitcb86893114ce33dc9c7bd4ff992b05c12406b35d (patch)
treeb14bc7e7b60aa9fef8dc20694f5567d8f767d041
parent7ab5d77666c98f5229759402a451a26ea57a4801 (diff)
patch 8.1.2223: cannot see what buffer an ml_get error is forv8.1.2223
Problem: Cannot see what buffer an ml_get error is for. Solution: Add the buffer number and name in the message
-rw-r--r--src/memline.c5
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/memline.c b/src/memline.c
index a26e4016ab..8772ad287b 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -2663,7 +2663,10 @@ errorret:
/* Avoid giving this message for a recursive call, may happen
* when the GUI redraws part of the text. */
++recursive;
- siemsg(_("E316: ml_get: cannot find line %ld"), lnum);
+ get_trans_bufname(buf);
+ shorten_dir(NameBuff);
+ siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
+ lnum, buf->b_fnum, NameBuff);
--recursive;
}
goto errorret;
diff --git a/src/version.c b/src/version.c
index 2d0c84ec63..b0fdab2f38 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2223,
+/**/
2222,
/**/
2221,