When I write C/Java Code in XEmacs the braces are always indented like
this:
if (x)
{
x = 0;
}
But I want it to look like this:
if (x)
{
x = 0;
}
How can I change this? I think I searched the whole options menu but
didn't find anything. Are there any docs where I could have read about
this?
BTW, how can I indent a selected area? Is there something like block
indent?
TIA,
Thomas