mirror of
https://github.com/vim/vim.git
synced 2025-10-01 04:54:07 -04:00
patch 8.1.1086: too many curly braces
Problem: Too many curly braces. Solution: Remove curly braces where they are not needed. (Hirohito Higashi, closes #3982)
This commit is contained in:
@@ -1359,9 +1359,7 @@ ml_recover(void)
|
||||
&& ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
|
||||
&& org_stat.st_mtime > swp_stat.st_mtime)
|
||||
|| org_stat.st_mtime != mtime))
|
||||
{
|
||||
emsg(_("E308: Warning: Original file may have been changed"));
|
||||
}
|
||||
out_flush();
|
||||
|
||||
/* Get the 'fileformat' and 'fileencoding' from block zero. */
|
||||
@@ -5307,9 +5305,7 @@ ml_updatechunk(
|
||||
curix < buf->b_ml.ml_usedchunks - 1
|
||||
&& line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
|
||||
curix++)
|
||||
{
|
||||
curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
|
||||
}
|
||||
}
|
||||
else if (curix < buf->b_ml.ml_usedchunks - 1
|
||||
&& line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
|
||||
|
Reference in New Issue
Block a user