Function: c-down-list-backward

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

Signature

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

Documentation

Return the last position inside the last list sexp before 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 after it.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-down-list-backward (&optional pos limit)
  "Return the last position inside the last list sexp before 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 after it."
  (declare (debug t))
  `(c-safe-scan-lists ,(or pos '(point)) -1 -1 ,limit))