summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h
index c90f901ebca..21709b12598 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -3546,7 +3546,7 @@ struct handler
sys_jmp_buf jmp;
EMACS_INT f_lisp_eval_depth;
specpdl_ref pdlcount;
- Lisp_Object *act_rec;
+ struct bc_frame *act_rec;
int poll_suppress_count;
int interrupt_input_blocked;
};
@@ -4861,14 +4861,14 @@ extern void init_bc_thread (struct bc_thread_state *bc);
extern void free_bc_thread (struct bc_thread_state *bc);
extern void mark_bytecode (struct bc_thread_state *bc);
-INLINE Lisp_Object *
+INLINE struct bc_frame *
get_act_rec (struct thread_state *th)
{
return th->bc.fp;
}
INLINE void
-set_act_rec (struct thread_state *th, Lisp_Object *act_rec)
+set_act_rec (struct thread_state *th, struct bc_frame *act_rec)
{
th->bc.fp = act_rec;
}