mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 20:18:32 +00:00
Bump all nvim-specific error codes above E5000
In order to not conflict with new error codes that Vim adds, all Neovim
error codes should be above 5000. The three existing sub-5000 error
codes (E926, E951, and E952) are now E50003, E5004, and E5005
respectively.
E953 was removed in 6167ce6df2
, so just
remove it from the help.
This commit is contained in:
@@ -836,7 +836,7 @@ char *encode_tv2json(typval_T *tv, size_t *len)
|
||||
msgpack_pack_double(packer, (double) (flt))
|
||||
|
||||
#define TYPVAL_ENCODE_CONV_FUNC(fun) \
|
||||
return conv_error(_("E951: Error while dumping %s, %s: " \
|
||||
return conv_error(_("E5004: Error while dumping %s, %s: " \
|
||||
"attempt to dump function reference"), \
|
||||
mpstack, objname)
|
||||
|
||||
@@ -880,7 +880,7 @@ char *encode_tv2json(typval_T *tv, size_t *len)
|
||||
#define TYPVAL_ENCODE_CONV_LIST_BETWEEN_ITEMS()
|
||||
|
||||
#define TYPVAL_ENCODE_CONV_RECURSE(val, conv_type) \
|
||||
return conv_error(_("E952: Unable to dump %s: " \
|
||||
return conv_error(_("E5005: Unable to dump %s: " \
|
||||
"container references itself in %s"), \
|
||||
mpstack, objname)
|
||||
|
||||
|
Reference in New Issue
Block a user