Merge #8304 "default to 'nofsync'"

This commit is contained in:
Justin M. Keyes
2018-04-24 02:51:07 +02:00
committed by GitHub
14 changed files with 135 additions and 51 deletions

View File

@@ -6552,18 +6552,14 @@ void alist_slash_adjust(void)
#endif
/*
* ":preserve".
*/
/// ":preserve".
static void ex_preserve(exarg_T *eap)
{
curbuf->b_flags |= BF_PRESERVED;
ml_preserve(curbuf, TRUE);
ml_preserve(curbuf, true, true);
}
/*
* ":recover".
*/
/// ":recover".
static void ex_recover(exarg_T *eap)
{
/* Set recoverymode right away to avoid the ATTENTION prompt. */