Function: org-with-wide-buffer
org-with-wide-buffer is a macro defined in org-macs.el.
Signature
(org-with-wide-buffer &rest BODY)
Documentation
Execute BODY while temporarily widening the buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defmacro org-with-wide-buffer (&rest body)
"Execute BODY while temporarily widening the buffer."
(declare (debug (body)))
`(save-excursion
(save-restriction
(widen)
,@body)))