commit | 74409f62790a93daf0965c71da01ff76aa0fa5a5 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jan 01 15:58:22 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jan 01 15:58:22 2022 +0000 |
tree | ece55c806dc6fe451d24af66008ae1444d81d73d | |
parent | 56200eed62e59ad831f6564dcafe346e6f97ac20 [diff] [blame] |
patch 8.2.3970: error messages are spread out Problem: Error messages are spread out. Solution: Move more errors to errors.h.
diff --git a/src/if_xcmdsrv.c b/src/if_xcmdsrv.c index 763eee5..25f63de 100644 --- a/src/if_xcmdsrv.c +++ b/src/if_xcmdsrv.c
@@ -1323,7 +1323,7 @@ ga_concat(&reply, res); else { - ga_concat(&reply, (char_u *)_(e_invexprmsg)); + ga_concat(&reply, (char_u *)_(e_invalid_expression_received)); ga_append(&reply, 0); ga_concat(&reply, (char_u *)"-c 1"); }