mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
Fixed some SCM/scm_bits_t mixups and initialization problems.
This commit is contained in:
parent
c8045e8dbd
commit
230d095fc5
3 changed files with 23 additions and 11 deletions
|
@ -177,8 +177,8 @@ SCM_DEFINE (scm_source_properties, "source-properties", 1, 0, 0,
|
|||
else if (SCM_NCONSP (obj))
|
||||
SCM_WRONG_TYPE_ARG (1, obj);
|
||||
#endif
|
||||
p = scm_hashq_ref (scm_source_whash, obj, (SCM) NULL);
|
||||
if (p != (SCM) NULL && SRCPROPSP (p))
|
||||
p = scm_hashq_ref (scm_source_whash, obj, SCM_BOOL_F);
|
||||
if (SRCPROPSP (p))
|
||||
return scm_srcprops_to_plist (p);
|
||||
return SCM_EOL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue