comparison src/misc1.c @ 20345:d636f5e76347 v8.2.0728

patch 8.2.0728: messages about a deadly signal are not left aligned Commit: https://github.com/vim/vim/commit/69212b11d18d9d8951968f6ca88e6ce046c90675 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 10 14:14:03 2020 +0200 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, https://github.com/vim/vim/issues/6055)
author Bram Moolenaar <Bram@vim.org>
date Sun, 10 May 2020 14:15:03 +0200
parents 8a694c9447d7
children 072ad890c227
comparison
equal deleted inserted replaced
20344:0c989a5ad800 20345:d636f5e76347
2172 2172
2173 FOR_ALL_BUFFERS(buf) 2173 FOR_ALL_BUFFERS(buf)
2174 { 2174 {
2175 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL) 2175 if (buf->b_ml.ml_mfp != NULL && buf->b_ml.ml_mfp->mf_fname != NULL)
2176 { 2176 {
2177 OUT_STR("Vim: preserving files...\n"); 2177 OUT_STR("Vim: preserving files...\r\n");
2178 screen_start(); // don't know where cursor is now 2178 screen_start(); // don't know where cursor is now
2179 out_flush(); 2179 out_flush();
2180 ml_sync_all(FALSE, FALSE); // preserve all swap files 2180 ml_sync_all(FALSE, FALSE); // preserve all swap files
2181 break; 2181 break;
2182 } 2182 }
2183 } 2183 }
2184 2184
2185 ml_close_all(FALSE); // close all memfiles, without deleting 2185 ml_close_all(FALSE); // close all memfiles, without deleting
2186 2186
2187 OUT_STR("Vim: Finished.\n"); 2187 OUT_STR("Vim: Finished.\r\n");
2188 2188
2189 getout(1); 2189 getout(1);
2190 } 2190 }
2191 2191
2192 /* 2192 /*