Function: org-make-tag-string
org-make-tag-string is a byte-compiled function defined in org.el.gz.
Signature
(org-make-tag-string TAGS)
Documentation
Return string associated to TAGS.
TAGS is a list of strings.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-make-tag-string (tags)
"Return string associated to TAGS.
TAGS is a list of strings."
(if (null tags) ""
(format ":%s:" (mapconcat #'identity tags ":"))))