Function: c-lineup-argcont-scan
c-lineup-argcont-scan is a byte-compiled function defined in
cc-align.el.gz.
Signature
(c-lineup-argcont-scan &optional OTHER-MATCH)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-align.el.gz
(defun c-lineup-argcont-scan (&optional other-match)
;; Find the start of an argument, for `c-lineup-argcont'.
(when (zerop (c-backward-token-2 1 t))
(let ((c (char-after)))
(if (or (eq c ?,) (eq c other-match))
(progn
(forward-char)
(c-forward-syntactic-ws))
(c-lineup-argcont-scan other-match)))))