aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 03443ed54ab..75f9f1d0ac7 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -808,7 +808,7 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
808 } 808 }
809 809
810 Lisp_Object val; 810 Lisp_Object val;
811 if (SUBRP (call_fun) && !SUBR_NATIVE_COMPILED_DYNP (call_fun)) 811 if (SUBRP (call_fun) && !NATIVE_COMP_FUNCTION_DYNP (call_fun))
812 val = funcall_subr (XSUBR (call_fun), call_nargs, call_args); 812 val = funcall_subr (XSUBR (call_fun), call_nargs, call_args);
813 else 813 else
814 val = funcall_general (original_fun, call_nargs, call_args); 814 val = funcall_general (original_fun, call_nargs, call_args);