mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-18 17:50:29 +02:00
Use new vector elements API or simple vector API, as appropriate.
Removed SCM_HAVE_ARRAYS ifdefery. Replaced all uses of SCM_HASHTABLE_BUCKETS with SCM_HASHTABLE_BUCKET.
This commit is contained in:
parent
f60539dba4
commit
4057a3e05a
29 changed files with 372 additions and 363 deletions
|
@ -577,7 +577,7 @@ scm_module_reverse_lookup (SCM module, SCM variable)
|
|||
n = SCM_HASHTABLE_N_BUCKETS (obarray);
|
||||
for (i = 0; i < n; ++i)
|
||||
{
|
||||
SCM ls = SCM_HASHTABLE_BUCKETS (obarray)[i], handle;
|
||||
SCM ls = SCM_HASHTABLE_BUCKET (obarray, i), handle;
|
||||
while (!scm_is_null (ls))
|
||||
{
|
||||
handle = SCM_CAR (ls);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue