mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-19 19:20:23 +02:00
Updated the C code base so that it compiles with Guile 1.7.2.
* src/*.[ch]: Introduced changes so that it compiles with Guile 1.7.2. git-archimport-id: lcourtes@laas.fr--2004-libre/guile-vm--revival--0.6--patch-1
This commit is contained in:
parent
7a0d0cee1f
commit
f9e8c09d42
10 changed files with 25 additions and 17 deletions
|
@ -45,7 +45,7 @@
|
|||
#define ENV_OBARRAY_SIZE 31
|
||||
|
||||
|
||||
scm_bits_t scm_tc16_env;
|
||||
scm_t_bits scm_tc16_env;
|
||||
|
||||
SCM
|
||||
scm_c_make_env (void)
|
||||
|
@ -236,7 +236,8 @@ scm_init_envs (void)
|
|||
load_env = scm_eval_closure_lookup (scm_standard_eval_closure (mod),
|
||||
scm_str2symbol ("load-env"),
|
||||
SCM_BOOL_T);
|
||||
load_env = SCM_VARVCELL (load_env);
|
||||
load_env = scm_variable_ref (load_env);
|
||||
/* Was: SCM_VARVCELL (load_env); */
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue