all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Damien Wyart <damien.wyart@free.fr>
To: help-gnu-emacs@gnu.org
Subject: Re: c-auto-newline question
Date: Thu, 10 Jan 2013 10:42:39 +0100	[thread overview]
Message-ID: <50ee8d0f$0$21944$426a74cc@news.free.fr> (raw)
In-Reply-To: mailman.17034.1357809745.855.help-gnu-emacs@gnu.org

* Luca Ferrari <fluca1978@infinito.it> in gnu.emacs.help:
> that is what I was looking for, but I suspect I'm doing something
> wrong since it is not working. In my .emacs file I've got:
>
> (add-hook 'c-mode-common-hook
>           '(lambda ()
>              (c-set-style "java")
>              (setq c-auto-newline t)
>              (setq c-hungry-delete-key t)
>     (c-hanging-semi&comma-criteria
>      . (c-semi&comma-no-newlines-before-nonblanks
>         c-semi&comma-no-newlines-for-oneline-inliners
>         c-semi&comma-inside-parenlist))
> ))

> but it still produces an auto-newline in every condition. What am
> I missing?

c-hanging-semi&comma-criteria is a list, not a function.

(add-hook 'c-mode-common-hook
          '(lambda ()
             (c-set-style "java")
             (setq c-auto-newline t)
             (setq c-hungry-delete-key t)
             (add-to-list 'c-hanging-semi&comma-criteria 'c-semi&comma-no-newlines-before-nonblanks)
             (add-to-list 'c-hanging-semi&comma-criteria 'c-semi&comma-no-newlines-for-oneline-inliners)
))

-- 
DW


  parent reply	other threads:[~2013-01-10  9:42 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.17033.1357807327.855.help-gnu-emacs@gnu.org>
2013-01-10  8:52 ` c-auto-newline question Damien Wyart
2013-01-10  9:22   ` Luca Ferrari
     [not found]   ` <mailman.17034.1357809745.855.help-gnu-emacs@gnu.org>
2013-01-10  9:42     ` Damien Wyart [this message]
2013-01-10 14:46       ` Luca Ferrari
     [not found]       ` <mailman.17050.1357829207.855.help-gnu-emacs@gnu.org>
2013-01-10 16:30         ` Damien Wyart
2013-01-11  8:51           ` Luca Ferrari
2013-01-10  8:42 Luca Ferrari

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='50ee8d0f$0$21944$426a74cc@news.free.fr' \
    --to=damien.wyart@free.fr \
    --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.