Function: org-ctrl-c-star
org-ctrl-c-star is an interactive and byte-compiled function defined
in org.el.gz.
Signature
(org-ctrl-c-star)
Documentation
Compute table, or change heading status of lines.
Calls org-table-recalculate or org-toggle-heading,
depending on context.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-ctrl-c-star ()
"Compute table, or change heading status of lines.
Calls `org-table-recalculate' or `org-toggle-heading',
depending on context."
(interactive)
(cond
((org-at-table-p)
(call-interactively 'org-table-recalculate))
(t
;; Convert all lines in region to list items
(call-interactively 'org-toggle-heading))))