aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 868c0148d30..71ecdbf2cc0 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -809,8 +809,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
809 { 809 {
810 Lisp_Object handler = POP; 810 Lisp_Object handler = POP;
811 /* Support for a function here is new in 24.4. */ 811 /* Support for a function here is new in 24.4. */
812 record_unwind_protect ((NILP (Ffunctionp (handler)) 812 record_unwind_protect (FUNCTIONP (handler) ? bcall0 : unwind_body,
813 ? unwind_body : bcall0),
814 handler); 813 handler);
815 NEXT; 814 NEXT;
816 } 815 }