Function: senator-copy-tag
senator-copy-tag is an autoloaded, interactive and byte-compiled
function defined in senator.el.gz.
Signature
(senator-copy-tag)
Documentation
Take the current tag, and place it in the tag ring.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/senator.el.gz
;;;###autoload
(defun senator-copy-tag ()
"Take the current tag, and place it in the tag ring."
(interactive)
(semantic-fetch-tags)
(let ((ft (semantic-obtain-foreign-tag)))
(when ft
(ring-insert senator-tag-ring ft)
(kill-ring-save (semantic-tag-start ft) (semantic-tag-end ft))
(when (called-interactively-p 'interactive)
(message "Use C-y to yank text. \
Use `senator-yank-tag' for prototype insert.")))
ft))