Hi,
The patch 8.1.1574 added E996, however, it has been already used by the
:const patch. We should use a new number.
Regards,
Ken Takata
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/975151d2-edf5-4db2-beeb-2cc8324af2a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
# HG changeset patch
# Parent 837bf0d725d53ec3a655ccf2e90af3f0aa414256
diff --git a/runtime/doc/popup.txt b/runtime/doc/popup.txt
--- a/runtime/doc/popup.txt
+++ b/runtime/doc/popup.txt
@@ -483,7 +483,7 @@ The second argument of |popup_create()|
tab page.
Otherwise the number of the tab page the popup is
displayed on; when invalid the popup is not created
- and an error is given. *E996*
+ and an error is given. *E997*
title Text to be displayed above the first item in the
popup, on top of any border. If there is no top
border one line of padding is added to put the title
diff --git a/src/popupwin.c b/src/popupwin.c
--- a/src/popupwin.c
+++ b/src/popupwin.c
@@ -892,7 +892,7 @@ popup_create(typval_T *argvars, typval_T
tp = find_tabpage(tabnr);
if (tp == NULL)
{
- semsg(_("E996: Tabpage not found: %d"), tabnr);
+ semsg(_("E997: Tabpage not found: %d"), tabnr);
return NULL;
}
}