mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-04 16:30:48 -08:00
Remove unused field in cl_env
This commit is contained in:
parent
1813aa8e6c
commit
400b22aac5
2 changed files with 0 additions and 8 deletions
|
|
@ -71,11 +71,6 @@ ecl_init_env(struct cl_env_struct *env)
|
|||
env->stack_size = 0;
|
||||
cl_stack_set_size(16*LISP_PAGESIZE);
|
||||
|
||||
env->funcall_frame.t = t_frame;
|
||||
env->funcall_frame.stack = 0;
|
||||
env->funcall_frame.bottom =
|
||||
env->funcall_frame.top = env->values;
|
||||
|
||||
#if !defined(ECL_CMU_FORMAT)
|
||||
env->print_pretty = FALSE;
|
||||
env->queue = cl_alloc_atomic(ECL_PPRINT_QUEUE_SIZE * sizeof(short));
|
||||
|
|
|
|||
|
|
@ -63,9 +63,6 @@ struct cl_env_struct {
|
|||
cl_index nvalues;
|
||||
cl_object values[ECL_MULTIPLE_VALUES_LIMIT];
|
||||
|
||||
/* Stack frame used by cl_funcall() */
|
||||
struct ecl_stack_frame funcall_frame;
|
||||
|
||||
/* Private variables used by different parts of ECL: */
|
||||
/* ... the reader ... */
|
||||
cl_object string_pool;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue