Hi,
I'm trying to configure emacs to indent my C block comments nicely.
Emacs (22.3) does by default (regardless of the indentation style):
/* My very long comment which spreads over multiple lines * and thus needs to be filled. */
But what I would highly prefer is:
/* My very long comment which spreads over multiple lines * and thus needs to be filled. */
I tried to play around with c-offset-alist and the syntactical symbol `c', but it didn't help me understand the problem:
(c-add-style "mine"
'((c-basic-offset . 2)
(c-block-comment-prefix . "* ")
(c-offsets-alist
(c . +)))
)
Any ideas? Thanks in advance!
Cheers, Daniel