comparison src/quickfix.c @ 26602:fac6673086df v8.2.3830

patch 8.2.3830: error messages are spread out Commit: https://github.com/vim/vim/commit/e124204c4f8ea8b4fe5357b7613092a7acb5feb8 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 16 20:56:57 2021 +0000 patch 8.2.3830: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
author Bram Moolenaar <Bram@vim.org>
date Thu, 16 Dec 2021 22:00:05 +0100
parents 13ba00ef7687
children fc859aea8cec
comparison
equal deleted inserted replaced
26601:dd5a2a697523 26602:fac6673086df
7188 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL)) 7188 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
7189 { 7189 {
7190 if (!did_bufnr_emsg) 7190 if (!did_bufnr_emsg)
7191 { 7191 {
7192 did_bufnr_emsg = TRUE; 7192 did_bufnr_emsg = TRUE;
7193 semsg(_("E92: Buffer %d not found"), bufnum); 7193 semsg(_(e_buffer_nr_not_found), bufnum);
7194 } 7194 }
7195 valid = FALSE; 7195 valid = FALSE;
7196 bufnum = 0; 7196 bufnum = 0;
7197 } 7197 }
7198 7198