Function: internal--without-restriction

internal--without-restriction is a byte-compiled function defined in subr.el.gz.

Signature

(internal--without-restriction BODY &optional LABEL)

Documentation

Helper function for without-restriction, which see.

Source Code

;; Defined in /usr/src/emacs/lisp/subr.el.gz
(defun internal--without-restriction (body &optional label)
  "Helper function for `without-restriction', which see."
  (save-restriction
    (if label
        (internal--labeled-widen label)
      (widen))
    (funcall body)))