diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-16 20:56:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-16 20:56:57 +0000 |
commit | e124204c4f8ea8b4fe5357b7613092a7acb5feb8 (patch) | |
tree | 8a049a292b17314710048a1b17625416c2bfc8d6 /src/quickfix.c | |
parent | 94c785d235dccacf6cdf38c5903115b61ca8a981 (diff) | |
download | vim-git-e124204c4f8ea8b4fe5357b7613092a7acb5feb8.tar.gz |
patch 8.2.3830: error messages are spread outv8.2.3830
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/quickfix.c')
-rw-r--r-- | src/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c index eeee8068d..d0f4199c9 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -7190,7 +7190,7 @@ qf_add_entry_from_dict( 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; |