Backed out a part of previous commit that wasn;t mentioned in the log

message and wasn't quite ready (it avoided indenting the names of local
variables).
This commit is contained in:
Bruce Evans 2004-02-09 20:26:27 +00:00
parent 59137ea864
commit eebee5a754

View File

@ -909,8 +909,7 @@ main(int argc, char **argv)
* dec_ind = e_code - s_code + (ps.decl_indent>i ? ps.decl_indent
* : i);
*/
dec_ind = ps.decl_indent > 0 &&
(ps.ind_level == 0 || ps.dec_nest > 0) ? ps.decl_indent : i;
dec_ind = ps.decl_indent > 0 ? ps.decl_indent : i;
goto copy_id;
case ident: /* got an identifier or constant */