mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
* srcprop.c (scm_source_property): Bugfix: Use SCM_NECONSP instead
of SCM_NCONSP. (Thanks to Greg Badros.)
This commit is contained in:
parent
73d6b4df01
commit
09a5681038
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ scm_source_property (obj, key)
|
|||
if (SCM_MEMOIZEDP (obj))
|
||||
obj = SCM_MEMOIZED_EXP (obj);
|
||||
#ifndef SCM_RECKLESS
|
||||
else if (SCM_NCONSP (obj))
|
||||
else if (SCM_NECONSP (obj))
|
||||
scm_wrong_type_arg (s_source_property, 1, obj);
|
||||
#endif
|
||||
p = scm_hashq_ref (scm_source_whash, obj, SCM_EOL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue