aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/subr.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 0b397b7bebf..20722c52948 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -4004,7 +4004,9 @@ are lifted.
4004(defun internal--without-restriction (body &optional label) 4004(defun internal--without-restriction (body &optional label)
4005 "Helper function for `without-restriction', which see." 4005 "Helper function for `without-restriction', which see."
4006 (save-restriction 4006 (save-restriction
4007 (if label (internal--unlabel-restriction label)) 4007 (if label
4008 (internal--labeled-widen label)
4009 (widen))
4008 (widen) 4010 (widen)
4009 (funcall body))) 4011 (funcall body)))
4010 4012