Function: internal--with-restriction
internal--with-restriction is a byte-compiled function defined in
subr.el.gz.
Signature
(internal--with-restriction START END BODY &optional LABEL)
Documentation
Helper function for with-restriction, which see.
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun internal--with-restriction (start end body &optional label)
"Helper function for `with-restriction', which see."
(save-restriction
(if label
(internal--labeled-narrow-to-region start end label)
(narrow-to-region start end))
(funcall body)))