Function: senator-yank-tag
senator-yank-tag is an autoloaded, interactive and byte-compiled
function defined in senator.el.gz.
Signature
(senator-yank-tag)
Documentation
Yank a tag from the tag ring.
The form the tag takes is different depending on where it is being yanked to.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
;;;###autoload
(defun senator-yank-tag ()
"Yank a tag from the tag ring.
The form the tag takes is different depending on where it is being
yanked to."
(interactive)
(or (ring-empty-p senator-tag-ring)
(let ((ft (ring-ref senator-tag-ring 0)))
(semantic-foreign-tag-check ft)
(semantic-insert-foreign-tag ft)
(when (called-interactively-p 'interactive)
(message "Use C-y to recover the yank the text of %s."
(semantic-tag-name ft))))))