aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 2b71fe243cb..0310e165919 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1187,7 +1187,7 @@ usage: (unwind-protect BODYFORM UNWINDFORMS...) */)
1187 Lisp_Object val; 1187 Lisp_Object val;
1188 int count = SPECPDL_INDEX (); 1188 int count = SPECPDL_INDEX ();
1189 1189
1190 record_unwind_protect (0, Fcdr (args)); 1190 record_unwind_protect (Fprogn, Fcdr (args));
1191 val = Feval (Fcar (args)); 1191 val = Feval (Fcar (args));
1192 return unbind_to (count, val); 1192 return unbind_to (count, val);
1193} 1193}