Function: org-in-fixed-width-region-p
org-in-fixed-width-region-p is a byte-compiled function defined in
org-compat.el.gz.
This function is obsolete since 9.0; use org-element library
Signature
(org-in-fixed-width-region-p)
Documentation
Non-nil if point in a fixed-width region.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-compat.el.gz
(defun org-in-fixed-width-region-p ()
"Non-nil if point in a fixed-width region."
(save-match-data
(org-element-type-p (org-element-at-point) 'fixed-width)))