diff options
author | Gregory Heytings <gregory@heytings.org> | 2023-02-13 11:44:37 +0100 |
---|---|---|
committer | Gregory Heytings <gregory@heytings.org> | 2023-02-13 11:44:37 +0100 |
commit | b948d0d7efe4c73a34485238d6a4e1bb5f0cac9e (patch) | |
tree | 3c1fc837f7094c21d1d35f1e66c657020908ea7f /lisp/emacs-lisp | |
parent | cc30422825a5acf460d026bfe912b327b70dedcf (diff) | |
parent | dcb2379a463678bdadd05ee39d61e7da84c71c5e (diff) | |
download | emacs-b948d0d7efe4c73a34485238d6a4e1bb5f0cac9e.tar.gz emacs-b948d0d7efe4c73a34485238d6a4e1bb5f0cac9e.tar.bz2 emacs-b948d0d7efe4c73a34485238d6a4e1bb5f0cac9e.zip |
Merge branch 'scratch/fix-locked-narrowing'
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 5df1205869c..c6cda6b588a 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -4900,7 +4900,7 @@ binding slots have been popped." (defun byte-compile-save-restriction (form) (byte-compile-out 'byte-save-restriction 0) (byte-compile-body-do-effect (cdr form)) - (byte-compile-out 'byte-unbind 1)) + (byte-compile-out 'byte-unbind 2)) (defun byte-compile-save-current-buffer (form) (byte-compile-out 'byte-save-current-buffer 0) |