Function: semantic-format-tag-prin1

semantic-format-tag-prin1 is a byte-compiled function defined in format.el.gz.

Signature

(semantic-format-tag-prin1 TAG &optional PARENT COLOR)

Documentation

Convert TAG to a string that is the print name for TAG.

PARENT and COLOR are ignored.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/format.el.gz
;;; Abstract formatting functions
;;

(defun semantic-format-tag-prin1 (tag &optional _parent _color)
  "Convert TAG to a string that is the print name for TAG.
PARENT and COLOR are ignored."
  (format "%S" tag))