normal: Add figure braces so that code is clearer

This commit is contained in:
ZyX
2017-04-16 21:09:31 +03:00
parent b5db7cde36
commit aa3b1f695f

View File

@@ -7613,12 +7613,14 @@ static void nv_record(cmdarg_T *cap)
if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') {
stuffcharReadbuff(cap->nchar);
stuffcharReadbuff(K_CMDWIN);
} else
/* (stop) recording into a named register, unless executing a
* register */
if (!Exec_reg && do_record(cap->nchar) == false)
} else {
// (stop) recording into a named register, unless executing a
// register.
if (!Exec_reg && do_record(cap->nchar) == false) {
clearopbeep(cap->oap);
}
}
}
}
/*