comparison src/errors.h @ 34157:e7d64a3fffe4 v9.1.0039

patch 9.1.0039: too vague errors for 'listchars'/'fillchars' Commit: https://github.com/vim/vim/commit/6a8d2e1634f8f0d7463a2786dbcbe0f38dd287a7 Author: zeertzjq <zeertzjq@outlook.com> Date: Wed Jan 17 20:54:49 2024 +0100 patch 9.1.0039: too vague errors for 'listchars'/'fillchars' Problem: too vague errors for 'listchars'/'fillchars' Solution: Include the field name in error message. (zeertzjq) related: neovim/neovim#27050 closes: #13877 Co-authored-by: Cole Frankenhoff <cole.nhf@gmail.com> Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 17 Jan 2024 21:15:03 +0100
parents 034445b3af10
children 57b21d421cb2
comparison
equal deleted inserted replaced
34156:6e58c97e633a 34157:e7d64a3fffe4
3600 INIT(= N_("E1508: Size of the extended attribute value is larger than the maximum size allowed")); 3600 INIT(= N_("E1508: Size of the extended attribute value is larger than the maximum size allowed"));
3601 EXTERN char e_xattr_other[] 3601 EXTERN char e_xattr_other[]
3602 INIT(= N_("E1509: Error occurred when reading or writing extended attribute")); 3602 INIT(= N_("E1509: Error occurred when reading or writing extended attribute"));
3603 EXTERN char e_val_too_large[] 3603 EXTERN char e_val_too_large[]
3604 INIT(= N_("E1510: Value too large: %s")); 3604 INIT(= N_("E1510: Value too large: %s"));
3605 EXTERN char e_wrong_number_of_characters_for_field_str[]
3606 INIT(= N_("E1511: Wrong number of characters for field \"%s\""));
3607 EXTERN char e_wrong_character_width_for_field_str[]
3608 INIT(= N_("E1512: Wrong character width for field \"%s\""));