Fix indentation of switch statements

This commit is contained in:
ridiculousfish
2012-11-19 00:31:03 -08:00
parent 7d63900fb8
commit 26678682ca
40 changed files with 7015 additions and 7014 deletions

View File

@@ -400,15 +400,15 @@ static wint_t input_exec_binding(const input_mapping_t &m, const wcstring &seq)
switch (code)
{
case R_SELF_INSERT:
{
return seq[0];
}
case R_SELF_INSERT:
{
return seq[0];
}
default:
{
return code;
}
default:
{
return code;
}
}
}