Function: semantic-insert-foreign-tag-default
semantic-insert-foreign-tag-default is a byte-compiled function
defined in tag.el.gz.
Signature
(semantic-insert-foreign-tag-default FOREIGN-TAG)
Documentation
Insert FOREIGN-TAG into the current buffer.
The default behavior assumes the current buffer is a language file, and attempts to insert a prototype/function call.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-insert-foreign-tag-default (foreign-tag)
"Insert FOREIGN-TAG into the current buffer.
The default behavior assumes the current buffer is a language file,
and attempts to insert a prototype/function call."
;; Long term goal: Have a mechanism for a tempo-like template insert
;; for the given tag.
(insert (semantic-format-tag-prototype foreign-tag)))