Function: org-in-subtree-not-table-p

org-in-subtree-not-table-p is a byte-compiled function defined in org.el.gz.

Signature

(org-in-subtree-not-table-p)

Documentation

Are we in a subtree and not in a table?

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
;;; Menu entries
(defsubst org-in-subtree-not-table-p ()
  "Are we in a subtree and not in a table?"
  (and (not (org-before-first-heading-p))
       (not (org-at-table-p))))