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/memline.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/memline.c')
-rw-r--r-- | src/nvim/memline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/memline.c b/src/nvim/memline.c index 7b83fe24b0..230019c45c 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -918,14 +918,14 @@ void ml_recover(bool checkext) } home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, true); - smsg(_("Using swap file \"%s\""), NameBuff); + smsg(0, _("Using swap file \"%s\""), NameBuff); if (buf_spname(curbuf) != NULL) { xstrlcpy(NameBuff, buf_spname(curbuf), MAXPATHL); } else { home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, true); } - smsg(_("Original file \"%s\""), NameBuff); + smsg(0, _("Original file \"%s\""), NameBuff); msg_putchar('\n'); // check date of swap file and original file |