mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 07:16:09 +00:00
fix(messages): use "Vimscript" instead of "VimL" #24111
followup to #24109 fix #16150
This commit is contained in:
@@ -3396,7 +3396,7 @@ static ShaDaReadResult msgpack_read_uint64(ShaDaReadDef *const sd_reader, const
|
||||
if (msgpack_to_vim(obj, &adtv) == FAIL \
|
||||
|| adtv.v_type != VAR_DICT) { \
|
||||
semsg(_(READERR(name, \
|
||||
"cannot be converted to a VimL dictionary")), \
|
||||
"cannot be converted to a Vimscript dictionary")), \
|
||||
initial_fpos); \
|
||||
ga_clear(&ad_ga); \
|
||||
tv_clear(&adtv); \
|
||||
@@ -3420,7 +3420,7 @@ static ShaDaReadResult msgpack_read_uint64(ShaDaReadDef *const sd_reader, const
|
||||
}; \
|
||||
typval_T aetv; \
|
||||
if (msgpack_to_vim(obj, &aetv) == FAIL) { \
|
||||
semsg(_(READERR(name, "cannot be converted to a VimL list")), \
|
||||
semsg(_(READERR(name, "cannot be converted to a Vimscript list")), \
|
||||
initial_fpos); \
|
||||
tv_clear(&aetv); \
|
||||
goto shada_read_next_item_error; \
|
||||
@@ -3819,7 +3819,7 @@ shada_read_next_item_start:
|
||||
} else if (msgpack_to_vim(unpacked.data.via.array.ptr[1],
|
||||
&(entry->data.global_var.value)) == FAIL) {
|
||||
semsg(_(READERR("variable", "has value that cannot "
|
||||
"be converted to the VimL value")), initial_fpos);
|
||||
"be converted to the Vimscript value")), initial_fpos);
|
||||
goto shada_read_next_item_error;
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user