Function: c-least-enclosing-brace
c-least-enclosing-brace is a byte-compiled function defined in
cc-engine.el.gz.
Signature
(c-least-enclosing-brace PAREN-STATE)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defun c-least-enclosing-brace (paren-state)
;; Return the bufpos of the outermost enclosing open paren, or nil
;; if none was found.
(let (pos elem)
(while paren-state
(setq elem (car paren-state)
paren-state (cdr paren-state))
(if (integerp elem)
(setq pos elem)))
pos))