Function: semantic-insert-foreign-tag

semantic-insert-foreign-tag is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-insert-foreign-tag FOREIGN-TAG)

Documentation

Insert FOREIGN-TAG into the current buffer.

Signal an error if FOREIGN-TAG is not a valid foreign tag. This function is overridable with the symbol insert-foreign-tag.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(define-overloadable-function semantic-insert-foreign-tag (foreign-tag)
  "Insert FOREIGN-TAG into the current buffer.
Signal an error if FOREIGN-TAG is not a valid foreign tag.
This function is overridable with the symbol `insert-foreign-tag'."
  (semantic-foreign-tag-check foreign-tag)
  (:override)
  (message (semantic-format-tag-summarize foreign-tag)))