Function: semantic-decoration-style-enabled-p

semantic-decoration-style-enabled-p is a byte-compiled function defined in mode.el.gz.

Signature

(semantic-decoration-style-enabled-p STYLE)

Documentation

Return non-nil if STYLE is currently enabled.

Return nil if the style is disabled, or does not exist.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
;;; Enable/Disable toggling
;;
(defun semantic-decoration-style-enabled-p (style)
  "Return non-nil if STYLE is currently enabled.
Return nil if the style is disabled, or does not exist."
  (let ((pair (assoc style semantic-decoration-styles)))
    (and pair (cdr pair))))