continuation-indentation bug?
Filippo Argiolas <[email protected]> Wed, 18 Mar 2009 11:01:21 +0100
| Newsgroups | gmane.comp.gnu.indent.bugs |
|---|---|
| Message-ID | <[email protected]> |
Hi I'm trying to reproduce a indent command line with correspondent
emacs c-mode options but I have a problem with
"--continuation-indentation4".
Usually it does something like:
var foo =
bar;
But there seem to be an exception with a code like:
/* indent indent -ci4 -il2 --no-tabs -nlp */
/* actual indent output */
static const GstElementDetails element_details =
GST_ELEMENT_DETAILS ("Gstreamer OpenGL Effects",
"Filter/Effect",
"GL Shading Language effects",
/* expected indent ouput with "-ci4" */
static const GstElementDetails element_details =
GST_ELEMENT_DETAILS ("Gstreamer OpenGL Effects",
"Filter/Effect",
"GL Shading Language effects",
I'd expect GST_ELEMENT line to be indented with 4 spaces because it's
a continuation of the previous line but it's not indented at all.
Does anybody have a clue?
Thanks,
Filippo