aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
authorGregory Heytings2023-02-13 11:44:37 +0100
committerGregory Heytings2023-02-13 11:44:37 +0100
commitb948d0d7efe4c73a34485238d6a4e1bb5f0cac9e (patch)
tree3c1fc837f7094c21d1d35f1e66c657020908ea7f /src/bytecode.c
parentcc30422825a5acf460d026bfe912b327b70dedcf (diff)
parentdcb2379a463678bdadd05ee39d61e7da84c71c5e (diff)
downloademacs-b948d0d7efe4c73a34485238d6a4e1bb5f0cac9e.tar.gz
emacs-b948d0d7efe4c73a34485238d6a4e1bb5f0cac9e.zip
Merge branch 'scratch/fix-locked-narrowing'
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 124348e5b35..8e214560f30 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -942,6 +942,8 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
942 CASE (Bsave_restriction): 942 CASE (Bsave_restriction):
943 record_unwind_protect (save_restriction_restore, 943 record_unwind_protect (save_restriction_restore,
944 save_restriction_save ()); 944 save_restriction_save ());
945 record_unwind_protect (narrowing_locks_restore,
946 narrowing_locks_save ());
945 NEXT; 947 NEXT;
946 948
947 CASE (Bcatch): /* Obsolete since 25. */ 949 CASE (Bcatch): /* Obsolete since 25. */