Function: org-fast-tag-insert

org-fast-tag-insert is a byte-compiled function defined in org.el.gz.

Signature

(org-fast-tag-insert KWD TAGS FACE &optional END)

Documentation

Insert KWD, and the TAGS, the latter with face FACE.

Also insert END.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-fast-tag-insert (kwd tags face &optional end)
  "Insert KWD, and the TAGS, the latter with face FACE.
Also insert END."
  (insert (format "%-12s" (concat kwd ":"))
	  (org-add-props (mapconcat 'identity tags " ") nil 'face face)
	  (or end "")))