Function: semantic-tag-children-compatibility

semantic-tag-children-compatibility is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-children-compatibility TAG &optional POSITIONONLY)

Documentation

Return children of TAG.

If POSITIONONLY is nil, use semantic-tag-components. If POSITIONONLY is non-nil, use semantic-tag-components-with-overlays. DO NOT use this fcn in new code. Use one of the above instead.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-tag-children-compatibility (tag &optional positiononly)
  "Return children of TAG.
If POSITIONONLY is nil, use `semantic-tag-components'.
If POSITIONONLY is non-nil, use `semantic-tag-components-with-overlays'.
DO NOT use this fcn in new code.  Use one of the above instead."
  (if positiononly
      (semantic-tag-components-with-overlays tag)
    (semantic-tag-components tag)))