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