We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab5d77 commit cb86893Copy full SHA for cb86893
2 files changed
src/memline.c
@@ -2663,7 +2663,10 @@ ml_get_buf(
2663
/* Avoid giving this message for a recursive call, may happen
2664
* when the GUI redraws part of the text. */
2665
++recursive;
2666
- siemsg(_("E316: ml_get: cannot find line %ld"), lnum);
+ get_trans_bufname(buf);
2667
+ shorten_dir(NameBuff);
2668
+ siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
2669
+ lnum, buf->b_fnum, NameBuff);
2670
--recursive;
2671
}
2672
goto errorret;
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 2223,
746
/**/
747
2222,
748
0 commit comments