Function: org-columns-uncompile-format

org-columns-uncompile-format is a byte-compiled function defined in org-colview.el.gz.

Signature

(org-columns-uncompile-format COMPILED)

Documentation

Turn the compiled columns format back into a string representation.

COMPILED is an alist, as returned by org-columns-compile-format.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defun org-columns-uncompile-format (compiled)
  "Turn the compiled columns format back into a string representation.

COMPILED is an alist, as returned by `org-columns-compile-format'."
  (mapconcat
   (lambda (spec)
     (pcase spec
       (`(,prop ,title ,width ,op ,printf)
	(concat "%"
		(and width (number-to-string width))
		prop
		(and title (not (equal prop title)) (format "(%s)" title))
		(cond ((not op) nil)
		      (printf (format "{%s;%s}" op printf))
		      (t (format "{%s}" op)))))))
   compiled " "))