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,13 +7613,15 @@ static void nv_record(cmdarg_T *cap)
if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') { if (cap->nchar == ':' || cap->nchar == '/' || cap->nchar == '?') {
stuffcharReadbuff(cap->nchar); stuffcharReadbuff(cap->nchar);
stuffcharReadbuff(K_CMDWIN); stuffcharReadbuff(K_CMDWIN);
} else } else {
/* (stop) recording into a named register, unless executing a // (stop) recording into a named register, unless executing a
* register */ // register.
if (!Exec_reg && do_record(cap->nchar) == false) if (!Exec_reg && do_record(cap->nchar) == false) {
clearopbeep(cap->oap); clearopbeep(cap->oap);
} }
} }
}
}
/* /*
* Handle the "@r" command. * Handle the "@r" command.