I want wrap one more indentation for function arguments, rather then align them:

NOT: 
static int foobar(char *arg1, 
                  void *arg2, 
                  int *arg3) {
    // body...
}

BUT:
static int foobar(char *arg1, 
        void *arg2, int *arg3) {
    // body...
}

Can I configure this coding style in Emacs?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.