Function: c-lineup-arglist-intro-after-paren
c-lineup-arglist-intro-after-paren is a byte-compiled function defined
in cc-align.el.gz.
Signature
(c-lineup-arglist-intro-after-paren LANGELEM)
Documentation
Line up a line to just after the open paren of the surrounding paren or brace block.
Works with: defun-block-intro, brace-list-intro, statement-block-intro, statement-case-intro, arglist-intro.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-align.el.gz
(defun c-lineup-arglist-intro-after-paren (_langelem)
"Line up a line to just after the open paren of the surrounding paren
or brace block.
Works with: defun-block-intro, brace-list-intro,
statement-block-intro, statement-case-intro, arglist-intro."
(save-excursion
(beginning-of-line)
(backward-up-list 1)
(forward-char)
(skip-chars-forward " \t" (c-point 'eol))
(if (eolp) (skip-chars-backward " \t"))
(vector (current-column))))