all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Miguel Guedes <miguel.a.guedes@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Edge case in c-cleanup
Date: Mon, 09 Feb 2015 18:35:06 +0000	[thread overview]
Message-ID: <54d8fddb$0$12283$862e30e2@ngroups.net> (raw)



I have got the following clean ups defined in a c style (c-add-style):

(c-cleanup-list . (brace-else-brace
                   brace-elseif-brace
                   brace-catch-brace
                   empty-defun-braces
                   one-liner-defun
                   defun-close-semi
                   space-before-funcall
                   compact-empty-funcall))

I have noticed a minor annoying edge case that can be best illustrated
as given by:

int bazillion()
{
  if(booz) {
    foo();
  }         // typing closing brace, issues newline
  else      // no opening brace means `else´ isn't placed above
    bar();
}

Since in my current setup typing `}' automatically issues a newline,
emacs won't correctly place an else statement next to the closing brace
above (as desired) *if it does not* contain an opening brace. For
instance, this would work just fine:

int bazillion()
{
  if(booz) {
    foo();
  } else {    // else is moved up next to the closing brace
    bar();    // after typing the subsequent opening brace
  }
}

Is there are way of resolving this via a style setting perhaps such that
`else´ statements without opening braces are correctly placed?

Unsure if I made my question clear enough so please ask for
clarification if in doubt.



             reply	other threads:[~2015-02-09 18:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-09 18:35 Miguel Guedes [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-02-08 17:16 Edge case in c-cleanup Miguel Guedes

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='54d8fddb$0$12283$862e30e2@ngroups.net' \
    --to=miguel.a.guedes@gmail.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.
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.