all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Eric Lilja" <mindcooler@gmail.com>
Subject: Re: Alter a built-in style (C++, want to change where "access labels" are placed)
Date: 25 Nov 2006 14:31:29 -0800	[thread overview]
Message-ID: <1164493889.678225.266300@f16g2000cwb.googlegroups.com> (raw)
In-Reply-To: <1164491158.374316.302540@l39g2000cwd.googlegroups.com>


Eric Lilja skrev:

> Hi!
> Sorry for starting a new thread, hope this isn't bad netiquette.
>
> My question: In my C++ mode hook I set the style to "ellemtel" with
> (c-set-style "ellemtel")
>
> I like how it indents except for where it place access labels (public,
> private and protected in classes).
> I want to change this behaviour but keep the rest. According to CC Mode
> manual this seems very possible:
> "If none of the built-in styles is appropriate, you'll probably want to
> create a new style definition, possibly based on an existing style. To
> do this, put the new style's settings into a list with the following
> format - the list can then be passed as an argument to the function
> c-add-style."
>
> I look at the provide sample .emacs file but I can't even make this
> defconst compile and I don't know  what I should do when it does.
>
> (defconst my-c++-style
>   '(
>     (c-offsets-alist . ((access-label . -)))) "My C++ Programming
> style")
>
> Compiling file c:/cygwin/home/hivemind/.emacs at Sat Nov 25 22:38:59
> 2006
> .emacs:137:1:Error: End of file during parsing
>
> And how do I "inherit" all settings from ellementel and override the
> one as constructed in the defconst?
>
> / E

Tried this:
(defconst my-c++-style
  "ellemtel"
  '(
    (c-offsets-alist . ((access-label . -)))
  )
)
;(c-add-style "PERSONAL" my-c++-style)

(defun my-c-mode-common-hook ()
  ;; my customizations for all of c-mode and related modes
  (setq c-basic-offset 3)
  (setq-default indent-tabs-mode nil) ; Use spaces, not tabs, for
indentation.
  (delete-selection-mode 1) ; Maybe on by default on windows and off by
default on solaris?
  )
(add-hook 'c-mode-common-hook 'my-c-mode-common-hook)

(defun my-cpp-mode-hook ()
  (c-set-style "ellemtel")
)
(add-hook 'c++-mode-hook 'my-cpp-mode-hook)

However, it doesn't like c-add-style:
c-add-style: Wrong type argument: listp, "ellemtel"
and thus I cannot test it in c-set-style

Any ideas?

  reply	other threads:[~2006-11-25 22:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-11-25 21:45 Alter a built-in style (C++, want to change where "access labels" are placed) Eric Lilja
2006-11-25 22:31 ` Eric Lilja [this message]
2006-11-25 23:22   ` Eric Lilja

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=1164493889.678225.266300@f16g2000cwb.googlegroups.com \
    --to=mindcooler@gmail.com \
    /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.