* c++-mode newline after if
@ 2007-04-09 18:40 Rares Vernica
2007-04-10 9:03 ` Robert Thorpe
0 siblings, 1 reply; 4+ messages in thread
From: Rares Vernica @ 2007-04-09 18:40 UTC (permalink / raw)
To: help-gnu-emacs
Hi,
The c++-mode in emacs 22 inserts a new line after the if, so the code
will look like this:
if (a > 0)
{
How can I disable this. I would like the code to be like this:
if (a > 0) {
Thanks a lot,
Ray
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: c++-mode newline after if
2007-04-09 18:40 c++-mode newline after if Rares Vernica
@ 2007-04-10 9:03 ` Robert Thorpe
2007-04-10 17:38 ` Rares Vernica
0 siblings, 1 reply; 4+ messages in thread
From: Robert Thorpe @ 2007-04-10 9:03 UTC (permalink / raw)
To: help-gnu-emacs
On Apr 9, 7:40 pm, Rares Vernica <rvern...@gmail.com> wrote:
> Hi,
>
> The c++-mode in emacs 22 inserts a new line after the if, so the code
> will look like this:
>
> if (a > 0)
> {
This is called "GNU style" C.
> How can I disable this. I would like the code to be like this:
>
> if (a > 0) {
This is "K&R style" C.
To change type C-c . k&r
That's control-c dot k & r
Other possibilities are Whitesmith style and Stroustrup style.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: c++-mode newline after if
2007-04-10 9:03 ` Robert Thorpe
@ 2007-04-10 17:38 ` Rares Vernica
2007-04-10 17:59 ` Robert Thorpe
0 siblings, 1 reply; 4+ messages in thread
From: Rares Vernica @ 2007-04-10 17:38 UTC (permalink / raw)
To: help-gnu-emacs
Robert Thorpe wrote:
> On Apr 9, 7:40 pm, Rares Vernica <rvern...@gmail.com> wrote:
>> Hi,
>>
>> The c++-mode in emacs 22 inserts a new line after the if, so the code
>> will look like this:
>>
>> if (a > 0)
>> {
>
> This is called "GNU style" C.
>
>> How can I disable this. I would like the code to be like this:
>>
>> if (a > 0) {
>
> This is "K&R style" C.
> To change type C-c . k&r
>
> That's control-c dot k & r
>
> Other possibilities are Whitesmith style and Stroustrup style.
>
Thanks for the suggestion.
I recently switched from emacs 21 to emacs 22. I had an indentation
style which I liked in 21.
I tried all the indentation styles that are available for 22 and none of
them is exactly as the one I used. You can see the difference in this
example.
if (a > 0) {
a++;
}
This is how I would like the code to look. The indentation is done using
spaces.
Few of the styles had the '{' on the same line as the 'if'. But none of
them used 2 spaces to do the indentation.
How can I figure out what indentation style I used in 21 and get the
same indentation style in 22?
Thanks a lot,
Ray
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: c++-mode newline after if
2007-04-10 17:38 ` Rares Vernica
@ 2007-04-10 17:59 ` Robert Thorpe
0 siblings, 0 replies; 4+ messages in thread
From: Robert Thorpe @ 2007-04-10 17:59 UTC (permalink / raw)
To: help-gnu-emacs
On Apr 10, 6:38 pm, Rares Vernica <rvern...@gmail.com> wrote:
> Robert Thorpe wrote:
> > On Apr 9, 7:40 pm, Rares Vernica <rvern...@gmail.com> wrote:
> >> Hi,
>
> >> The c++-mode in emacs 22 inserts a new line after the if, so the code
> >> will look like this:
>
> >> if (a > 0)
> >> {
>
> > This is called "GNU style" C.
>
> >> How can I disable this. I would like the code to be like this:
>
> >> if (a > 0) {
>
> > This is "K&R style" C.
> > To change type C-c . k&r
>
> > That's control-c dot k & r
>
> > Other possibilities are Whitesmith style and Stroustrup style.
>
> Thanks for the suggestion.
>
> I recently switched from emacs 21 to emacs 22. I had an indentation
> style which I liked in 21.
>
> I tried all the indentation styles that are available for 22 and none of
> them is exactly as the one I used. You can see the difference in this
> example.
>
> if (a > 0) {
> a++;
>
> }
>
> This is how I would like the code to look. The indentation is done using
> spaces.
>
> Few of the styles had the '{' on the same line as the 'if'. But none of
> them used 2 spaces to do the indentation.
>
> How can I figure out what indentation style I used in 21 and get the
> same indentation style in 22?
Odd, I didn't know this had changed.
See the variables "indent-tabs-mode" and "c-basic-offset".
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-04-10 17:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-09 18:40 c++-mode newline after if Rares Vernica
2007-04-10 9:03 ` Robert Thorpe
2007-04-10 17:38 ` Rares Vernica
2007-04-10 17:59 ` Robert Thorpe
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.