summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorErnie Rael <errael@raelity.com>2023-09-21 16:42:28 +0200
committerChristian Brabandt <cb@256bit.org>2023-09-21 16:42:28 +0200
commit696270bcae0c14029030f14a3f3ca2763a2b39de (patch)
tree08f1691a9d0afc7a4a98884dc7a6220a59815075 /src/errors.h
parent02c51b1dd8e8b96e969ad7e408536fa208d90ac8 (diff)
patch 9.0.1926: Vim9: not enough info in error messagev9.0.1926
Problem: Vim9: not enough info in error message Solution: Add class name, change member to variable, quote names closes: #13136 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Ernie Rael <errael@raelity.com>
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index f1373a42c4..40e16f1c0d 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3411,7 +3411,7 @@ EXTERN char e_cannot_access_private_member_str[]
INIT(= N_("E1333: Cannot access private member: %s"));
// E1334 unused
EXTERN char e_member_is_not_writable_str[]
- INIT(= N_("E1335: Member is not writable: %s"));
+ INIT(= N_("E1335: Variable \"%s\" in class \"%s\" is not writable"));
#endif
EXTERN char e_internal_error_shortmess_too_long[]
INIT(= "E1336: Internal error: shortmess too long");