Function: semantic-analyze-type-constants-c-mode

semantic-analyze-type-constants-c-mode is a byte-compiled function defined in c.el.gz.

Signature

(semantic-analyze-type-constants-c-mode TYPE)

Documentation

When TYPE is a tag for an enum, return its parts.

These are constants which are of type TYPE. Override semantic-analyze-type-constants in c-mode buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/c.el.gz
(define-mode-local-override semantic-analyze-type-constants c-mode (type)
  "When TYPE is a tag for an enum, return its parts.
These are constants which are of type TYPE."
  (if (and (eq (semantic-tag-class type) 'type)
	   (string= (semantic-tag-type type) "enum"))
      (semantic-tag-type-members type)))