mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 20:30:28 +02:00
Lots of fixes to make guile (at some time) compile with strict typing.
This commit is contained in:
parent
abeed82198
commit
54778cd312
41 changed files with 251 additions and 173 deletions
|
@ -85,7 +85,7 @@ static SCM module_prefix;
|
|||
static SCM
|
||||
scm_module_full_name (SCM name)
|
||||
{
|
||||
if (SCM_CAR (name) == scm_sym_app)
|
||||
if (SCM_EQ_P (SCM_CAR (name), scm_sym_app))
|
||||
return name;
|
||||
else
|
||||
return scm_append (SCM_LIST2 (module_prefix, name));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue