Function: c-langelem-2nd-pos
c-langelem-2nd-pos is a byte-compiled function defined in
cc-defs.el.gz.
Signature
(c-langelem-2nd-pos LANGELEM)
Documentation
Return the secondary position in LANGELEM, or nil if there is none.
LANGELEM is typically a syntactic element on the "new" form as used
in c-syntactic-element. It may also be a cons cell as passed in the
first argument to lineup functions, but then the returned value always
will be nil.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defsubst c-langelem-2nd-pos (langelem)
"Return the secondary position in LANGELEM, or nil if there is none.
LANGELEM is typically a syntactic element on the \"new\" form as used
in `c-syntactic-element'. It may also be a cons cell as passed in the
first argument to lineup functions, but then the returned value always
will be nil."
(car-safe (cdr-safe (cdr-safe langelem))))