mirror of
https://github.com/vim/vim.git
synced 2025-11-08 10:27:32 -05:00
patch 9.0.1594: some internal error messages are translated
Problem: Some internal error messages are translated.
Solution: Consistently do not translate internal error messages.
(closes #12459)
This commit is contained in:
committed by
Bram Moolenaar
parent
3c240f608c
commit
68ebcee023
@@ -642,7 +642,7 @@ get_text_props(buf_T *buf, linenr_T lnum, char_u **props, int will_change)
|
||||
return 0;
|
||||
if (proplen % sizeof(textprop_T) != 0)
|
||||
{
|
||||
iemsg(_(e_text_property_info_corrupted));
|
||||
iemsg(e_text_property_info_corrupted);
|
||||
return 0;
|
||||
}
|
||||
*props = text + textlen;
|
||||
|
||||
Reference in New Issue
Block a user