Function: org-columns-check-computed

org-columns-check-computed is a byte-compiled function defined in org-colview.el.gz.

Signature

(org-columns-check-computed)

Documentation

Throw an error if current column value is computed.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defun org-columns-check-computed ()
  "Throw an error if current column value is computed."
  (let ((spec (nth (org-current-text-column) org-columns-current-fmt-compiled)))
    (and
     (nth 3 spec)
     (assoc spec (get-text-property (line-beginning-position) 'org-summaries))
     (error "This value is computed from the entry's children"))))