diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-29 20:07:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 20:07:16 +0200 |
commit | be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77 (patch) | |
tree | 33ffeaee48b3895c0cca615476a027a27c780cfc /src/nvim/quickfix.c | |
parent | 54daf022ce989bb8ea34084f947ab85c045b690f (diff) | |
parent | bc13bc154aa574e0bb58a50f2e0ca4570efa57c3 (diff) | |
download | rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.gz rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.bz2 rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.zip |
Merge pull request #25418 from bfredl/no_attr2
refactor(message): remove more "attr" variants
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index b0c6fd79e2..a02c0eface 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -5458,7 +5458,7 @@ static int vgr_process_files(win_T *wp, qf_info_T *qi, vgr_args_T *cmd_args, boo if (buf == NULL) { if (!got_int) { - smsg(_("Cannot open file \"%s\""), fname); + smsg(0, _("Cannot open file \"%s\""), fname); } } else { // Try for a match in all lines of the buffer. |