diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-29 16:10:54 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-09-29 16:36:04 +0200 |
commit | bc13bc154aa574e0bb58a50f2e0ca4570efa57c3 (patch) | |
tree | 86c6a0d607ec80d404c10bdbb377ad3fc8ce2ee4 /src/nvim/quickfix.c | |
parent | 8e11c18d4962c5367a0549bdb2288323545852b6 (diff) | |
download | rneovim-bc13bc154aa574e0bb58a50f2e0ca4570efa57c3.tar.gz rneovim-bc13bc154aa574e0bb58a50f2e0ca4570efa57c3.tar.bz2 rneovim-bc13bc154aa574e0bb58a50f2e0ca4570efa57c3.zip |
refactor(message): smsg_attr -> smsg
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. |