help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

C++ indentation question


From: Shashank Khanvilkar
Subject: C++ indentation question
Date: Wed, 9 Jan 2013 21:37:45 -0800 (PST)
User-agent: G2/1.0

I have existing code that looks like:
--SNIP--
void foo() {
  int a;
  doSomething();
}
--SNIP--
I need to change this to:
--SNI--
void foo() 
{
  int a;
  doSomething();
}
--SNIP--

How can i do this?


reply via email to

[Prev in Thread] Current Thread [Next in Thread]