diff options
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c index 7d32daf0e4e..f2e6ba85214 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -2954,8 +2954,8 @@ funcall_lambda (Lisp_Object fun, ptrdiff_t nargs, | |||
| 2954 | and constants vector yet, fetch them from the file. */ | 2954 | and constants vector yet, fetch them from the file. */ |
| 2955 | if (CONSP (AREF (fun, COMPILED_BYTECODE))) | 2955 | if (CONSP (AREF (fun, COMPILED_BYTECODE))) |
| 2956 | Ffetch_bytecode (fun); | 2956 | Ffetch_bytecode (fun); |
| 2957 | return jit_byte_code (fun, syms_left, | 2957 | return exec_byte_code (fun, syms_left, |
| 2958 | nargs, arg_vector); | 2958 | nargs, arg_vector); |
| 2959 | } | 2959 | } |
| 2960 | lexenv = Qnil; | 2960 | lexenv = Qnil; |
| 2961 | } | 2961 | } |
| @@ -3029,7 +3029,7 @@ funcall_lambda (Lisp_Object fun, ptrdiff_t nargs, | |||
| 3029 | and constants vector yet, fetch them from the file. */ | 3029 | and constants vector yet, fetch them from the file. */ |
| 3030 | if (CONSP (AREF (fun, COMPILED_BYTECODE))) | 3030 | if (CONSP (AREF (fun, COMPILED_BYTECODE))) |
| 3031 | Ffetch_bytecode (fun); | 3031 | Ffetch_bytecode (fun); |
| 3032 | val = jit_byte_code (fun, Qnil, 0, 0); | 3032 | val = exec_byte_code (fun, Qnil, 0, 0); |
| 3033 | } | 3033 | } |
| 3034 | 3034 | ||
| 3035 | return unbind_to (count, val); | 3035 | return unbind_to (count, val); |