Function: org-insert-todo-heading-respect-content
org-insert-todo-heading-respect-content is an interactive and
byte-compiled function defined in org.el.gz.
Signature
(org-insert-todo-heading-respect-content &optional ARG)
Documentation
Call org-insert-todo-heading, inserting after current subtree.
ARG is passed to org-insert-todo-heading.
This command temporarily sets org-insert-heading-respect-content(var)/org-insert-heading-respect-content(fun) to t.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-insert-todo-heading-respect-content (&optional arg)
"Call `org-insert-todo-heading', inserting after current subtree.
ARG is passed to `org-insert-todo-heading'.
This command temporarily sets `org-insert-heading-respect-content' to t."
(interactive "P")
(let ((org-insert-heading-respect-content t))
(org-insert-todo-heading arg t)))