mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
refactor(message): smsg_attr -> smsg
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user