Function: org-capture-narrow

org-capture-narrow is a byte-compiled function defined in org-capture.el.gz.

Signature

(org-capture-narrow BEG END)

Documentation

Possibly narrow to region between BEG and END.

If configuration contains non-nil :unnarrowed property, do not narrow.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-capture.el.gz
(defun org-capture-narrow (beg end)
  "Possibly narrow to region between BEG and END.
If configuration contains non-nil :unnarrowed property, do not narrow."
  (unless (org-capture-get :unnarrowed)
    (narrow-to-region beg end)))