Function: c-down-list-forward

c-down-list-forward is a macro defined in cc-defs.el.gz.

Signature

(c-down-list-forward &optional POS LIMIT)

Documentation

Return the first position inside the first list sexp after POS, or nil if no such position exists. The point is used if POS is left out.

A limit for the search may be given. The start position is assumed to be before it.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-down-list-forward (&optional pos limit)
  "Return the first position inside the first list sexp after POS,
or nil if no such position exists.  The point is used if POS is left out.

A limit for the search may be given.  The start position is assumed to
be before it."
  (declare (debug t))
  `(c-safe-scan-lists ,(or pos '(point)) 1 -1 ,limit))