commit | d8e44476d84b5f0cc8c4de080a47a3a9af547028 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 21 22:20:33 2021 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 21 22:20:33 2021 +0200 |
tree | c45296f474fb015dc94cedc81238377efc8e55b0 | |
parent | 05bd9785fd0fd0102ab64554307bff0ec0ae34c1 [diff] [blame] |
patch 8.2.3197: error messages are spread out Problem: Error messages are spread out. Solution: Move a few more error messages to errors.h.
diff --git a/src/vim9compile.c b/src/vim9compile.c index 2a0ab25..8e8ae3f 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c
@@ -2477,7 +2477,7 @@ || (check_writable == ASSIGN_FINAL && sv->sv_const == ASSIGN_CONST)) { - semsg(_(e_readonlyvar), name); + semsg(_(e_cannot_change_readonly_variable_str), name); return FAIL; } return OK;