Function: srecode-semantic-tag-p

srecode-semantic-tag-p is a byte-compiled function defined in semantic.el.gz.

Signature

(srecode-semantic-tag-p OBJ)

Documentation

Return non-nil if OBJ is an object of type srecode-semantic-tag(var)/srecode-semantic-tag(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/semantic.el.gz
;;; The SEMANTIC TAG inserter
;;
;; Put a tag into the dictionary that can be used with arbitrary
;; Lisp expressions.

(defclass srecode-semantic-tag (srecode-dictionary-compound-value)
  ((prime :initarg :prime
	  :type semantic-tag
	  :documentation
	  "This is the primary insertion tag.")
   )
  "Wrap up a collection of semantic tag information.
This class will be used to derive dictionary values.")