commit | e124204c4f8ea8b4fe5357b7613092a7acb5feb8 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Dec 16 20:56:57 2021 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Dec 16 20:56:57 2021 +0000 |
tree | 8a049a292b17314710048a1b17625416c2bfc8d6 | |
parent | 94c785d235dccacf6cdf38c5903115b61ca8a981 [diff] [blame] |
patch 8.2.3830: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
diff --git a/src/quickfix.c b/src/quickfix.c index eeee806..d0f4199 100644 --- a/src/quickfix.c +++ b/src/quickfix.c
@@ -7190,7 +7190,7 @@ if (!did_bufnr_emsg) { did_bufnr_emsg = TRUE; - semsg(_("E92: Buffer %d not found"), bufnum); + semsg(_(e_buffer_nr_not_found), bufnum); } valid = FALSE; bufnum = 0;