From: david@adboyd.com (J. David Boyd)
To: help-gnu-emacs@gnu.org
Subject: Re: C-mode-style whitesmith with emacs 21/22
Date: Fri, 15 Feb 2008 11:21:07 -0500 [thread overview]
Message-ID: <87ejbekx70.fsf@adboyd.com> (raw)
In-Reply-To: 47b52516$0$24080$9b622d9e@news.freenet.de
Lars Meier <skuldLEAVE_THIS_OUT81@gmx.de> writes:
> Hallo NG,
>
> I'm using whitesmith style for the emacs c-mode because this style is
> very simular to the existing code I'm working on.
>
> Some time ago I switched to emacs 22 because the version has some
> improvements which are important for me. But with emacs 22 the
> whitesmith-style does the indentation different than emacs 21 at least
> in the default setting. Hear is a short example:
>
> emacs 21:
>
> int main()
> {
> my_function(xxxxxxxxxxxx,
> yyyyyyyyyyyy,
> zzzzzzzzzz);
> }
>
>
> emacs 22:
>
> int main()
> {
> my_function(xxxxxxxxxxxx,
> yyyyyyyyyyyy,
> zzzzzzzzzz);
> }
>
>
> But the emacs-22-version is not what I need and it's very tedious to fix
> this by hand. Is there a simple way to change this back to the old
> behaviour maybe by changing an indentation setting or something like that?
>
>
> Lars
I do something like this,
(defun my-c-mode-common-hook ()
(c-set-style "user")
(c-set-offset 'case-label '+)
(c-set-offset 'substatement-open 0)
(setq fill-column 75)
(imenu-add-menubar-index)
(add-hook 'c-mode-hook 'turn-on-cwarn-mode)
)
(add-hook 'c-mode-common-hook 'my-c-mode-common-hook)
You would need to change "user" to "whitesmith", and tweak a little,
but it should not be all that hard to do.
Dave
next prev parent reply other threads:[~2008-02-15 16:21 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-15 5:37 C-mode-style whitesmith with emacs 21/22 Lars Meier
2008-02-15 16:21 ` J. David Boyd [this message]
[not found] ` <mailman.7449.1203092500.18990.help-gnu-emacs@gnu.org>
2008-02-17 17:50 ` Lars Meier
2008-02-24 22:15 ` Will Parsons
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ejbekx70.fsf@adboyd.com \
--to=david@adboyd.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).