mirror of
https://github.com/vim/vim.git
synced 2025-10-06 05:44:14 -04:00
patch 8.2.0728: messages about a deadly signal are not left aligned
Problem: Messages about a deadly signal are not left aligned. Solution: Output a CR before the NL. (Dominique Pelle, #6055)
This commit is contained in:
@@ -2174,7 +2174,7 @@ preserve_exit(void)
|
||||
{
|
||||
if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
|
||||
{
|
||||
OUT_STR("Vim: preserving files...\n");
|
||||
OUT_STR("Vim: preserving files...\r\n");
|
||||
screen_start(); // don't know where cursor is now
|
||||
out_flush();
|
||||
ml_sync_all(FALSE, FALSE); // preserve all swap files
|
||||
@@ -2184,7 +2184,7 @@ preserve_exit(void)
|
||||
|
||||
ml_close_all(FALSE); // close all memfiles, without deleting
|
||||
|
||||
OUT_STR("Vim: Finished.\n");
|
||||
OUT_STR("Vim: Finished.\r\n");
|
||||
|
||||
getout(1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user