Function: org-in-fixed-width-region-p
org-in-fixed-width-region-p is a byte-compiled function defined in
org-compat.el.
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 ~/.emacs.d/elpa/org-9.8.2/org-compat.el
(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)))