Function: c-at-enum-brace

c-at-enum-brace is a byte-compiled function defined in cc-engine.el.gz.

Signature

(c-at-enum-brace &optional POS)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defun c-at-enum-brace (&optional pos)
  ;; Return the position of the enum-like keyword introducing the brace at POS
  ;; (default point), or nil if we're not at such a construct.
  (save-excursion
    (if pos
	(goto-char pos)
      (setq pos (point)))
    (and (c-backward-over-enum-header)
	 (point))))