emacs indentation problem
- by Gauthier
I'm really trying to switch to emacs, but learning to setup the environment is a real pain.
Everybody says it's worth it, so I just continue.
I want my c code to be implemented that way:
if(asdf)
{
asdr = 1;
}
Depending on the current standard (I know, don't get me started), could be:
if(asdf) {
asdr = 1;
}
I can't seem to change the…