commit | d88be5be80f47826397d12ffc90150a443821f2b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jan 04 19:57:55 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jan 04 19:57:55 2022 +0000 |
tree | ab0149d75313cb223ece41b426fde97776bb5d39 | |
parent | 6cac77016b1636e04073e8348b7cee02259ef928 [diff] [blame] |
patch 8.2.4003: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
diff --git a/src/typval.c b/src/typval.c index fa0574d..be3a7b8 100644 --- a/src/typval.c +++ b/src/typval.c
@@ -221,7 +221,7 @@ if (varp->v_type == VAR_BOOL) emsg(_(e_using_bool_as_number)); else - emsg(_("E611: Using a Special as a Number")); + emsg(_(e_using_special_as_number)); break; } return varp->vval.v_number == VVAL_TRUE ? 1 : 0;